mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 02:57:34 +00:00
feat(store): add evga eu (#172)
Co-authored-by: fuckingrobot <fuckingrobot@users.noreply.github.com> Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
@@ -103,14 +103,15 @@ Here is a list of variables that you can use to customize your newly copied `.en
|
||||
|:---:|:---:|
|
||||
| Adorama | `adorama`|
|
||||
| Amazon | `amazon`|
|
||||
| Amazon.ca | `amazon-ca`|
|
||||
| Amazon (CA) | `amazon-ca`|
|
||||
| ASUS | `asus` |
|
||||
| Best Buy | `bestbuy`|
|
||||
| B&H | `bandh`|
|
||||
| EVGA | `evga`|
|
||||
| EVGA (EU) | `evga-eu`|
|
||||
| Micro Center | `microcenter`|
|
||||
| Newegg | `newegg`|
|
||||
| Newegg.ca | `newegg-ca`|
|
||||
| Newegg (CA) | `newegg-ca`|
|
||||
| Nvidia | `nvidia`|
|
||||
| Office Depot | `officedepot`|
|
||||
| Zotac | `zotac`|
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
import {Store} from './store';
|
||||
|
||||
export const EvgaEu: Store = {
|
||||
links: [
|
||||
{
|
||||
brand: 'evga',
|
||||
model: 'xc3 black',
|
||||
series: '3080',
|
||||
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3881-KR'
|
||||
},
|
||||
{
|
||||
brand: 'evga',
|
||||
model: 'ftw3',
|
||||
series: '3080',
|
||||
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3895-KR'
|
||||
},
|
||||
{
|
||||
brand: 'evga',
|
||||
model: 'xc3',
|
||||
series: '3080',
|
||||
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3883-KR'
|
||||
},
|
||||
{
|
||||
brand: 'evga',
|
||||
model: 'xc3 ultra',
|
||||
series: '3080',
|
||||
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3885-KR'
|
||||
}
|
||||
],
|
||||
labels: {
|
||||
outOfStock: ['tbd', 'out of stock', 'error reaching the evga website', 'oops! something broke.']
|
||||
},
|
||||
name: 'evga-eu'
|
||||
};
|
||||
@@ -7,6 +7,7 @@ import {BestBuy} from './bestbuy';
|
||||
import {BAndH} from './bandh';
|
||||
import {Config} from '../../config';
|
||||
import {Evga} from './evga';
|
||||
import {EvgaEu} from './evga-eu';
|
||||
import {MicroCenter} from './microcenter';
|
||||
import {NewEgg} from './newegg';
|
||||
import {NewEggCa} from './newegg-ca';
|
||||
@@ -23,6 +24,7 @@ const masterList = new Map([
|
||||
[BestBuy.name, BestBuy],
|
||||
[BAndH.name, BAndH],
|
||||
[Evga.name, Evga],
|
||||
[EvgaEu.name, EvgaEu],
|
||||
[MicroCenter.name, MicroCenter],
|
||||
[NewEgg.name, NewEgg],
|
||||
[NewEggCa.name, NewEggCa],
|
||||
|
||||
Reference in New Issue
Block a user