Skip to content

Commit

Permalink
feat(store): add evga eu (#172)
Browse files Browse the repository at this point in the history
Co-authored-by: fuckingrobot <fuckingrobot@users.noreply.github.com>
Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
  • Loading branch information
3 people committed Sep 22, 2020
1 parent 8e7d267 commit 605bdd7
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -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`|
Expand Down
34 changes: 34 additions & 0 deletions src/store/model/evga-eu.ts
@@ -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 changes: 2 additions & 0 deletions src/store/model/index.ts
Expand Up @@ -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';
Expand All @@ -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],
Expand Down

0 comments on commit 605bdd7

Please sign in to comment.