Files
streetmerchant/src/store/model/smythstoys.ts
T
Jef LeCompte 5bbdfa2abc fix(smythstoys): add out of stock label
Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
2020-12-02 17:47:06 -05:00

43 lines
1.0 KiB
TypeScript

import {Store} from './store';
export const SmythsToys: Store = {
labels: {
inStock: {
container: '#addToCartButton',
text: ['add to basket']
},
maxPrice: {
container: '.price_tag',
euroFormat: false
},
outOfStock: {
container: '.instoreMessage',
text: ['out of stock']
}
},
links: [
{
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url:
'https://www.smythstoys.com/uk/en-gb/video-games-and-tablets/video-games/call-of-duty-video-games/call-of-duty-black-ops-cold-war/call-of-duty-black-ops-cold-war-ps5/p/191951'
},
{
brand: 'sony',
model: 'ps5 console',
series: 'sonyps5c',
url:
'https://www.smythstoys.com/uk/en-gb/video-games-and-tablets/playstation-5/playstation-5-consoles/playstation-5-console/p/191259'
},
{
brand: 'sony',
model: 'ps5 digital',
series: 'sonyps5de',
url:
'https://www.smythstoys.com/uk/en-gb/video-games-and-tablets/playstation-5/playstation-5-consoles/playstation-5-digital-edition-console/p/191430'
}
],
name: 'smythstoys'
};