mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 09:57:38 +00:00
f87053cb02
feat: add browser opening to test:notification feat: add c8 and mocha for testing feat: update Docker and ci style: update editorconfig
97 lines
2.4 KiB
TypeScript
97 lines
2.4 KiB
TypeScript
import {Store} from './store';
|
|
|
|
export const AmdUk: Store = {
|
|
currency: '£',
|
|
labels: {
|
|
inStock: [
|
|
{
|
|
container: '.btn-shopping-cart',
|
|
text: ['add to cart'],
|
|
},
|
|
{
|
|
container: '.btn-radeon',
|
|
text: ['add to cart'],
|
|
},
|
|
],
|
|
maxPrice: {
|
|
container: '.product-page-description h4',
|
|
euroFormat: false,
|
|
},
|
|
outOfStock: [
|
|
{
|
|
container: '.product-out-of-stock',
|
|
text: ['out of stock'],
|
|
},
|
|
{
|
|
container: '.btn-radeon',
|
|
text: ['sold out'],
|
|
},
|
|
],
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'test:model',
|
|
series: 'test:series',
|
|
url: 'https://www.amd.com/en/direct-buy/5450881400/gb',
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
cartUrl:
|
|
'https://www.amd.com/en/direct-buy/5450881400/gb?add-to-cart=true',
|
|
model: '5950x',
|
|
series: 'ryzen5950',
|
|
url: 'https://www.amd.com/en/direct-buy/5450881400/gb',
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
cartUrl:
|
|
'https://www.amd.com/en/direct-buy/5450881500/gb?add-to-cart=true',
|
|
model: '5900x',
|
|
series: 'ryzen5900',
|
|
url: 'https://www.amd.com/en/direct-buy/5450881500/gb',
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
cartUrl:
|
|
'https://www.amd.com/en/direct-buy/5450881600/gb?add-to-cart=true',
|
|
model: '5800x',
|
|
series: 'ryzen5800',
|
|
url: 'https://www.amd.com/en/direct-buy/5450881600/gb',
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
cartUrl:
|
|
'https://www.amd.com/en/direct-buy/5450881700/gb?add-to-cart=true',
|
|
model: '5600x',
|
|
series: 'ryzen5600',
|
|
url: 'https://www.amd.com/en/direct-buy/5450881700/gb',
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
cartUrl:
|
|
'https://www.amd.com/en/direct-buy/5458374000/gb?add-to-cart=true',
|
|
model: 'amd reference',
|
|
series: 'rx6800',
|
|
url: 'https://www.amd.com/en/direct-buy/5458374000/gb',
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
cartUrl:
|
|
'https://www.amd.com/en/direct-buy/5458374100/gb?add-to-cart=true',
|
|
model: 'amd reference',
|
|
series: 'rx6800xt',
|
|
url: 'https://www.amd.com/en/direct-buy/5458374100/gb',
|
|
},
|
|
{
|
|
brand: 'amd',
|
|
cartUrl:
|
|
'https://www.amd.com/en/direct-buy/5458374200/gb?add-to-cart=true',
|
|
model: 'amd reference',
|
|
series: 'rx6900xt',
|
|
url: 'https://www.amd.com/en/direct-buy/5458374200/gb',
|
|
},
|
|
],
|
|
name: 'amd-uk',
|
|
};
|