mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 04:07:36 +00:00
151 lines
4.0 KiB
TypeScript
151 lines
4.0 KiB
TypeScript
import {Store} from './store';
|
|
import {getProductLinksBuilder} from './helpers/card';
|
|
|
|
export const Scan: Store = {
|
|
disableAdBlocker: true,
|
|
labels: {
|
|
captcha: [
|
|
{
|
|
container: '#challenge-form',
|
|
text: ['hcaptcha_submit']
|
|
}
|
|
],
|
|
inStock: {
|
|
container: '.buyPanel .priceAvailability',
|
|
text: ['add to basket', 'in stock']
|
|
},
|
|
maxPrice: {
|
|
container: '.buyPanel .price',
|
|
euroFormat: false // Note: Scan uses non-euroFromat as price seperator
|
|
},
|
|
outOfStock: {
|
|
container: '.buyPanel .priceAvailability',
|
|
text: ['pre order']
|
|
}
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'test:model',
|
|
series: 'test:series',
|
|
url:
|
|
'https://www.scan.co.uk/products/msi-geforce-rtx-2060-ventus-xs-oc-6gb-gddr6-vr-ready-graphics-card-1920-core-1710mhz-boost'
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 console',
|
|
series: 'sonyps5c',
|
|
url: 'https://www.scan.co.uk/products/playstation-5-console'
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 digital',
|
|
series: 'sonyps5de',
|
|
url: 'https://www.scan.co.uk/products/playstation-5-digital-edition'
|
|
},
|
|
{
|
|
brand: 'powercolor',
|
|
model: 'amd reference',
|
|
series: 'rx6800',
|
|
url:
|
|
'https://www.scan.co.uk/products/powercolor-radeon-rx-6800-16gb-gddr6-ray-tracing-graphics-card-7nm-rdna2-3840-streams'
|
|
},
|
|
{
|
|
brand: 'sapphire',
|
|
model: 'amd reference',
|
|
series: 'rx6800',
|
|
url:
|
|
'https://www.scan.co.uk/products/sapphire-radeon-rx-6800-16gb-gddr6-ray-tracing-graphics-card-7nm-rdna2-3840-streams-1815mhz-gpu'
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'amd reference',
|
|
series: 'rx6800',
|
|
url:
|
|
'https://www.scan.co.uk/products/asus-radeon-rx-6800-16gb-gddr6-ray-tracing-graphics-card-7nm-rdna2-3840-streams-1815mhz-gpu-2105mhz'
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'amd reference',
|
|
series: 'rx6800',
|
|
url:
|
|
'https://www.scan.co.uk/products/msi-radeon-rx-6800-16gb-gddr6-ray-tracing-graphics-card-7nm-rdna2-3840-streams-1700mhz-gpu'
|
|
},
|
|
{
|
|
brand: 'powercolor',
|
|
model: 'amd reference',
|
|
series: 'rx6800xt',
|
|
url:
|
|
'https://www.scan.co.uk/products/powercolor-radeon-rx-6800-xt-16gb-gddr6-ray-tracing-graphics-card-7nm-rdna2-4608-streams'
|
|
},
|
|
{
|
|
brand: 'sapphire',
|
|
model: 'amd reference',
|
|
series: 'rx6800xt',
|
|
url:
|
|
'https://www.scan.co.uk/products/sapphire-radeon-rx-6800-xt-16gb-gddr6-ray-tracing-graphics-card-7nm-rdna2-4608-streams-2015mhz'
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
model: '5600x',
|
|
series: 'ryzen5600',
|
|
url:
|
|
'https://www.scan.co.uk/products/amd-ryzen-5-5600x-am4-zen-3-6-core-12-thread-37ghz-46ghz-turbo-35mb-cache-pcie-40-65w-cpu'
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
model: '5800x',
|
|
series: 'ryzen5800',
|
|
url:
|
|
'https://www.scan.co.uk/products/amd-ryzen-7-5800x-am4-zen-3-8-core-16-thread-38ghz-47ghz-turbo-36mb-cache-pcie-40-105w-cpu'
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
model: '5900x',
|
|
series: 'ryzen5900',
|
|
url:
|
|
'https://www.scan.co.uk/products/amd-ryzen-9-5900x-am4-zen-3-12-core-24-thread-37ghz-48ghz-turbo-70mb-cache-pcie-40-105w-cpu'
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
model: '5950x',
|
|
series: 'ryzen5950',
|
|
url:
|
|
'https://www.scan.co.uk/products/amd-ryzen-9-5950x-am4-zen-3-16-core-32-thread-34ghz-49ghz-turbo-72mb-cache-pcie-40-105w-cpu'
|
|
}
|
|
],
|
|
linksBuilder: {
|
|
builder: getProductLinksBuilder({
|
|
productsSelector: 'div.productList ul.productColumns li.product',
|
|
sitePrefix: 'https://www.scan.co.uk',
|
|
titleSelector: '.details .description',
|
|
urlSelector: 'a[href]'
|
|
}),
|
|
ttl: 300000,
|
|
urls: [
|
|
{
|
|
series: '3060ti',
|
|
url:
|
|
'https://www.scan.co.uk/shop/computer-hardware/gpu-nvidia/geforce-rtx-3060-ti-graphics-cards'
|
|
},
|
|
{
|
|
series: '3070',
|
|
url:
|
|
'https://www.scan.co.uk/shop/computer-hardware/gpu-nvidia/nvidia-geforce-rtx-3070-graphics-cards'
|
|
},
|
|
{
|
|
series: '3080',
|
|
url:
|
|
'https://www.scan.co.uk/shop/computer-hardware/gpu-nvidia/nvidia-geforce-rtx-3080-graphics-cards'
|
|
},
|
|
{
|
|
series: '3090',
|
|
url:
|
|
'https://www.scan.co.uk/shop/computer-hardware/gpu-nvidia/nvidia-geforce-rtx-3090-graphics-cards'
|
|
}
|
|
]
|
|
},
|
|
name: 'scan',
|
|
waitUntil: 'domcontentloaded'
|
|
};
|