mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 07:37:39 +00:00
chore(store): add amd-it store and RX 6800 XT (#974)
This commit is contained in:
@@ -148,6 +148,7 @@ environment variables are **optional**._
|
|||||||
| Amazon (UK) | `amazon-uk`|
|
| Amazon (UK) | `amazon-uk`|
|
||||||
| AMD | `amd`|
|
| AMD | `amd`|
|
||||||
| AMD (DE) | `amd-de`|
|
| AMD (DE) | `amd-de`|
|
||||||
|
| AMD (IT) | `amd-it`|
|
||||||
| Aria PC (UK) | `aria`|
|
| Aria PC (UK) | `aria`|
|
||||||
| ARLT (DE) | `arlt`|
|
| ARLT (DE) | `arlt`|
|
||||||
| ASUS | `asus` |
|
| ASUS | `asus` |
|
||||||
@@ -244,7 +245,7 @@ environment variables are **optional**._
|
|||||||
|
|
||||||
| Brand | Model |
|
| Brand | Model |
|
||||||
|:---:|---|
|
|:---:|---|
|
||||||
| `amd` | `5600x`, `5800x`, `5900x`, `5950x` |
|
| `amd` | `5600x`, `5800x`, `5900x`, `5950x`, `amd reference` |
|
||||||
| `asus` | `dual`, `dual oc`, `strix`, `strix oc`, `tuf`, `tuf oc` |
|
| `asus` | `dual`, `dual oc`, `strix`, `strix oc`, `tuf`, `tuf oc` |
|
||||||
| `corsair` | `750 platinum`, `600 platinum` |
|
| `corsair` | `750 platinum`, `600 platinum` |
|
||||||
| `evga` | `ftw3`, `ftw3 ultra`, `xc3`, `xc3 black`, `xc3 ultra` |
|
| `evga` | `ftw3`, `ftw3 ultra`, `xc3`, `xc3 black`, `xc3 ultra` |
|
||||||
|
|||||||
@@ -0,0 +1,63 @@
|
|||||||
|
import {Store} from './store';
|
||||||
|
|
||||||
|
export const AmdIt: Store = {
|
||||||
|
labels: {
|
||||||
|
inStock: {
|
||||||
|
container: '.btn-shopping-cart',
|
||||||
|
text: ['add to cart']
|
||||||
|
},
|
||||||
|
maxPrice: {
|
||||||
|
container: '.product-page-description h4',
|
||||||
|
euroFormat: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
links: [
|
||||||
|
{
|
||||||
|
brand: 'test:brand',
|
||||||
|
model: 'test:model',
|
||||||
|
series: 'test:series',
|
||||||
|
url: 'https://www.amd.com/en/direct-buy/5450881400/it'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'amd',
|
||||||
|
cartUrl:
|
||||||
|
'https://www.amd.com/en/direct-buy/5450881400/it?add-to-cart=true',
|
||||||
|
model: '5950x',
|
||||||
|
series: 'ryzen5950',
|
||||||
|
url: 'https://www.amd.com/en/direct-buy/5450881400/it'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'amd',
|
||||||
|
cartUrl:
|
||||||
|
'https://www.amd.com/en/direct-buy/5450881500/it?add-to-cart=true',
|
||||||
|
model: '5900x',
|
||||||
|
series: 'ryzen5900',
|
||||||
|
url: 'https://www.amd.com/en/direct-buy/5450881500/it'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'amd',
|
||||||
|
cartUrl:
|
||||||
|
'https://www.amd.com/en/direct-buy/5450881600/it?add-to-cart=true',
|
||||||
|
model: '5800x',
|
||||||
|
series: 'ryzen5800',
|
||||||
|
url: 'https://www.amd.com/en/direct-buy/5450881600/it'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'amd',
|
||||||
|
cartUrl:
|
||||||
|
'https://www.amd.com/en/direct-buy/5450881700/it?add-to-cart=true',
|
||||||
|
model: '5600x',
|
||||||
|
series: 'ryzen5600',
|
||||||
|
url: 'https://www.amd.com/en/direct-buy/5450881700/it'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'amd',
|
||||||
|
cartUrl:
|
||||||
|
'https://www.amd.com/en/direct-buy/5458374100/it?add-to-cart=true',
|
||||||
|
model: 'amd reference',
|
||||||
|
series: 'rx6800xt',
|
||||||
|
url: 'https://www.amd.com/en/direct-buy/5458374100/it'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
name: 'amd-it'
|
||||||
|
};
|
||||||
@@ -12,6 +12,7 @@ import {AmazonNl} from './amazon-nl';
|
|||||||
import {AmazonUk} from './amazon-uk';
|
import {AmazonUk} from './amazon-uk';
|
||||||
import {Amd} from './amd';
|
import {Amd} from './amd';
|
||||||
import {AmdDe} from './amd-de';
|
import {AmdDe} from './amd-de';
|
||||||
|
import {AmdIt} from './amd-it';
|
||||||
import {Aria} from './aria';
|
import {Aria} from './aria';
|
||||||
import {Arlt} from './arlt';
|
import {Arlt} from './arlt';
|
||||||
import {Asus} from './asus';
|
import {Asus} from './asus';
|
||||||
@@ -83,6 +84,7 @@ export const storeList = new Map([
|
|||||||
[AmazonIt.name, AmazonIt],
|
[AmazonIt.name, AmazonIt],
|
||||||
[Amd.name, Amd],
|
[Amd.name, Amd],
|
||||||
[AmdDe.name, AmdDe],
|
[AmdDe.name, AmdDe],
|
||||||
|
[AmdIt.name, AmdIt],
|
||||||
[Aria.name, Aria],
|
[Aria.name, Aria],
|
||||||
[Arlt.name, Arlt],
|
[Arlt.name, Arlt],
|
||||||
[Asus.name, Asus],
|
[Asus.name, Asus],
|
||||||
|
|||||||
Reference in New Issue
Block a user