mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 04:07:36 +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`|
|
| Adorama | `adorama`|
|
||||||
| Amazon | `amazon`|
|
| Amazon | `amazon`|
|
||||||
| Amazon.ca | `amazon-ca`|
|
| Amazon (CA) | `amazon-ca`|
|
||||||
| ASUS | `asus` |
|
| ASUS | `asus` |
|
||||||
| Best Buy | `bestbuy`|
|
| Best Buy | `bestbuy`|
|
||||||
| B&H | `bandh`|
|
| B&H | `bandh`|
|
||||||
| EVGA | `evga`|
|
| EVGA | `evga`|
|
||||||
|
| EVGA (EU) | `evga-eu`|
|
||||||
| Micro Center | `microcenter`|
|
| Micro Center | `microcenter`|
|
||||||
| Newegg | `newegg`|
|
| Newegg | `newegg`|
|
||||||
| Newegg.ca | `newegg-ca`|
|
| Newegg (CA) | `newegg-ca`|
|
||||||
| Nvidia | `nvidia`|
|
| Nvidia | `nvidia`|
|
||||||
| Office Depot | `officedepot`|
|
| Office Depot | `officedepot`|
|
||||||
| Zotac | `zotac`|
|
| 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 {BAndH} from './bandh';
|
||||||
import {Config} from '../../config';
|
import {Config} from '../../config';
|
||||||
import {Evga} from './evga';
|
import {Evga} from './evga';
|
||||||
|
import {EvgaEu} from './evga-eu';
|
||||||
import {MicroCenter} from './microcenter';
|
import {MicroCenter} from './microcenter';
|
||||||
import {NewEgg} from './newegg';
|
import {NewEgg} from './newegg';
|
||||||
import {NewEggCa} from './newegg-ca';
|
import {NewEggCa} from './newegg-ca';
|
||||||
@@ -23,6 +24,7 @@ const masterList = new Map([
|
|||||||
[BestBuy.name, BestBuy],
|
[BestBuy.name, BestBuy],
|
||||||
[BAndH.name, BAndH],
|
[BAndH.name, BAndH],
|
||||||
[Evga.name, Evga],
|
[Evga.name, Evga],
|
||||||
|
[EvgaEu.name, EvgaEu],
|
||||||
[MicroCenter.name, MicroCenter],
|
[MicroCenter.name, MicroCenter],
|
||||||
[NewEgg.name, NewEgg],
|
[NewEgg.name, NewEgg],
|
||||||
[NewEggCa.name, NewEggCa],
|
[NewEggCa.name, NewEggCa],
|
||||||
|
|||||||
Reference in New Issue
Block a user