diff --git a/README.md b/README.md index a428a537f1..3509cbef0a 100644 --- a/README.md +++ b/README.md @@ -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`| diff --git a/src/store/model/evga-eu.ts b/src/store/model/evga-eu.ts new file mode 100644 index 0000000000..a52604d002 --- /dev/null +++ b/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' +}; diff --git a/src/store/model/index.ts b/src/store/model/index.ts index dd2c13c154..786673b33f 100644 --- a/src/store/model/index.ts +++ b/src/store/model/index.ts @@ -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],