mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 14:37:41 +00:00
feat(store): add antonline store (#1042)
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
import {Store} from './store';
|
||||
|
||||
export const AntOnline: Store = {
|
||||
labels: {
|
||||
inStock: {
|
||||
container: '.uk-button',
|
||||
text: ['Add to Cart']
|
||||
},
|
||||
maxPrice: {
|
||||
container: '.cPrice',
|
||||
euroFormat: false
|
||||
},
|
||||
outOfStock: {
|
||||
container: '.priceView-price .priceView-hero-price span',
|
||||
text: ['Sold Out']
|
||||
}
|
||||
},
|
||||
links: [
|
||||
{
|
||||
brand: 'sony',
|
||||
model: 'ps5 digital',
|
||||
series: 'sonyps5de',
|
||||
url:
|
||||
'https://www.antonline.com/Sony/Electronics/Gaming_Devices/Gaming_Consoles/1409507'
|
||||
},
|
||||
{
|
||||
brand: 'microsoft',
|
||||
model: 'xbox series x',
|
||||
series: 'xboxsx',
|
||||
url:
|
||||
'https://www.antonline.com/Microsoft/Electronics/Gaming_Devices/Gaming_Consoles/1414487'
|
||||
},
|
||||
{
|
||||
brand: 'microsoft',
|
||||
model: 'xbox series s',
|
||||
series: 'xboxss',
|
||||
url:
|
||||
'https://www.antonline.com/Microsoft/Electronics/Gaming_Devices/Gaming_Consoles/1409527'
|
||||
}
|
||||
],
|
||||
name: 'antonline'
|
||||
};
|
||||
@@ -14,6 +14,7 @@ import {Amd} from './amd';
|
||||
import {AmdCa} from './amd-ca';
|
||||
import {AmdDe} from './amd-de';
|
||||
import {AmdIt} from './amd-it';
|
||||
import {AntOnline} from './antonline';
|
||||
import {Aria} from './aria';
|
||||
import {Arlt} from './arlt';
|
||||
import {Asus} from './asus';
|
||||
@@ -91,6 +92,7 @@ export const storeList = new Map([
|
||||
[AmdCa.name, AmdCa],
|
||||
[AmdDe.name, AmdDe],
|
||||
[AmdIt.name, AmdIt],
|
||||
[AntOnline.name, AntOnline],
|
||||
[Aria.name, Aria],
|
||||
[Arlt.name, Arlt],
|
||||
[Asus.name, Asus],
|
||||
|
||||
Reference in New Issue
Block a user