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:
Paolo Moretti
2020-09-23 01:19:55 +02:00
committed by GitHub
parent 8e7d267549
commit 605bdd7ca7
3 changed files with 39 additions and 2 deletions
+3 -2
View File
@@ -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`|
+34
View File
@@ -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'
};
+2
View File
@@ -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],