Skip to content

Commit

Permalink
feat: add asus-de store and asus 3080 tuf/oc to amazon-de (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddseL committed Oct 3, 2020
1 parent 0c810d6 commit b4d8733
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/store/model/amazon-de.ts
Expand Up @@ -86,6 +86,12 @@ export const AmazonDe: Store = {
brand: 'asus',
model: 'tuf',
series: '3080',
url: 'https://www.amazon.de/dp/B08HN37VQK'
},
{
brand: 'asus',
model: 'tuf oc',
series: '3080',
url: 'https://www.amazon.de/dp/B08HN4DSTC'
},
{
Expand Down
68 changes: 68 additions & 0 deletions src/store/model/asus-de.ts
@@ -0,0 +1,68 @@
import {Store} from './store';

export const AsusDe: Store = {
labels: {
inStock: {
container: '.buybox--button',
text: ['in den warenkorb']
}
},
links: [
{
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url: 'https://webshop.asus.com/de/komponenten/grafikkarten/nvidia-serie/2766/asus-rog-strix-rtx2060s-o8g-evo-v2-gaming'
},
{
brand: 'asus',
model: 'tuf oc',
series: '3080',
url: 'https://webshop.asus.com/de/komponenten/grafikkarten/nvidia-serie/2825/asus-tuf-rtx3080-o10g-gaming'
},
{
brand: 'asus',
model: 'tuf',
series: '3080',
url: 'https://webshop.asus.com/de/komponenten/grafikkarten/nvidia-serie/2824/asus-tuf-rtx3080-10g-gaming'
},
{
brand: 'asus',
model: 'rog strix',
series: '3080',
url: 'https://webshop.asus.com/de/komponenten/grafikkarten/nvidia-serie/2828/asus-rog-strix-rtx3080-10g-gaming'
},
{
brand: 'asus',
model: 'rog strix oc',
series: '3080',
url: 'https://webshop.asus.com/de/komponenten/grafikkarten/nvidia-serie/2829/asus-rog-strix-rtx3080-o10g-gaming'
},
{
brand: 'asus',
model: 'tuf oc',
series: '3090',
url: 'https://webshop.asus.com/de/komponenten/grafikkarten/nvidia-serie/2823/asus-tuf-rtx3090-o24g-gaming'
},
{
brand: 'asus',
model: 'tuf',
series: '3090',
url: 'https://webshop.asus.com/de/komponenten/grafikkarten/nvidia-serie/2822/asus-tuf-rtx3090-24g-gaming'
},
{
brand: 'asus',
model: 'rog strix',
series: '3090',
url: 'https://webshop.asus.com/de/komponenten/grafikkarten/nvidia-serie/2826/asus-rog-strix-rtx3090-24g-gaming'
},
{
brand: 'asus',
model: 'rog strix oc',
series: '3090',
url: 'https://webshop.asus.com/de/komponenten/grafikkarten/nvidia-serie/2827/asus-rog-strix-rtx3090-o24g-gaming'
}
],
name: 'asus-de'
};

2 changes: 2 additions & 0 deletions src/store/model/index.ts
Expand Up @@ -4,6 +4,7 @@ import {AmazonCa} from './amazon-ca';
import {AmazonDe} from './amazon-de';
import {AmazonNl} from './amazon-nl';
import {Asus} from './asus';
import {AsusDe} from './asus-de';
import {BAndH} from './bandh';
import {BestBuy} from './bestbuy';
import {BestBuyCa} from './bestbuy-ca';
Expand All @@ -29,6 +30,7 @@ const masterList = new Map([
[AmazonDe.name, AmazonDe],
[AmazonNl.name, AmazonNl],
[Asus.name, Asus],
[AsusDe.name, AsusDe],
[BAndH.name, BAndH],
[BestBuy.name, BestBuy],
[BestBuyCa.name, BestBuyCa],
Expand Down

0 comments on commit b4d8733

Please sign in to comment.