Skip to content

Commit

Permalink
feat(store): add EVGA EU
Browse files Browse the repository at this point in the history
  • Loading branch information
moretti committed Sep 21, 2020
1 parent 12d25eb commit faaaed4
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ Here is a list of variables that you can use to customize your newly copied `.en
| Best Buy | `bestbuy`|
| B&H | `bandh`|
| EVGA | `evga`|
| eu.EVGA.com | `evga-eu`|
| Micro Center | `microcenter`|
| Newegg | `newegg`|
| Newegg.ca | `newegg-ca`|
Expand Down
35 changes: 35 additions & 0 deletions src/store/model/evga-eu.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
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']
},
name: 'evga-eu'
};

2 changes: 2 additions & 0 deletions src/store/model/index.ts
Original file line number Diff line number Diff line change
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 @@ -22,6 +23,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 faaaed4

Please sign in to comment.