-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(store): add amd-nl store (#2072)
- Loading branch information
TheCodeAssassin
authored
Apr 14, 2021
1 parent
bc59da1
commit 49c9e8c
Showing
2 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import {Store} from './store'; | ||
|
||
export const AmdNl: Store = { | ||
currency: '€', | ||
labels: { | ||
inStock: { | ||
container: '.btn-shopping-cart', | ||
text: ['add to cart'], | ||
}, | ||
maxPrice: { | ||
container: '.product-page-description h4', | ||
euroFormat: true, | ||
}, | ||
outOfStock: { | ||
container: '.btn-radeon', | ||
text: ['out of stock'], | ||
}, | ||
}, | ||
links: [ | ||
{ | ||
brand: 'test:brand', | ||
model: 'test:model', | ||
series: 'test:series', | ||
url: 'https://www.amd.com/en/direct-buy/5450881400/nl', | ||
}, | ||
{ | ||
brand: 'amd', | ||
cartUrl: | ||
'https://www.amd.com/en/direct-buy/5450881400/nl?add-to-cart=true', | ||
model: '5950x', | ||
series: 'ryzen5950', | ||
url: 'https://www.amd.com/en/direct-buy/5450881400/nl', | ||
}, | ||
{ | ||
brand: 'amd', | ||
cartUrl: | ||
'https://www.amd.com/en/direct-buy/5450881500/nl?add-to-cart=true', | ||
model: '5900x', | ||
series: 'ryzen5900', | ||
url: 'https://www.amd.com/en/direct-buy/5450881500/nl', | ||
}, | ||
{ | ||
brand: 'amd', | ||
cartUrl: | ||
'https://www.amd.com/en/direct-buy/5450881600/nl?add-to-cart=true', | ||
model: '5800x', | ||
series: 'ryzen5800', | ||
url: 'https://www.amd.com/en/direct-buy/5450881600/nl', | ||
}, | ||
{ | ||
brand: 'amd', | ||
cartUrl: | ||
'https://www.amd.com/en/direct-buy/5450881700/nl?add-to-cart=true', | ||
model: '5600x', | ||
series: 'ryzen5600', | ||
url: 'https://www.amd.com/en/direct-buy/5450881700/nl', | ||
}, | ||
{ | ||
brand: 'amd', | ||
cartUrl: | ||
'https://www.amd.com/en/direct-buy/5458374000/nl?add-to-cart=true', | ||
model: 'amd reference', | ||
series: 'rx6800', | ||
url: 'https://www.amd.com/en/direct-buy/5458374000/nl', | ||
}, | ||
{ | ||
brand: 'amd', | ||
cartUrl: | ||
'https://www.amd.com/en/direct-buy/5458374100/nl?add-to-cart=true', | ||
model: 'amd reference', | ||
series: 'rx6800xt', | ||
url: 'https://www.amd.com/en/direct-buy/5458374100/nl', | ||
}, | ||
{ | ||
brand: 'amd', | ||
cartUrl: | ||
'https://www.amd.com/en/direct-buy/5458374200/nl?add-to-cart=true', | ||
model: 'amd reference', | ||
series: 'rx6900xt', | ||
url: 'https://www.amd.com/en/direct-buy/5458374200/nl', | ||
}, | ||
], | ||
name: 'amd-nl', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters