mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 02:57:34 +00:00
feat(store): add expert (#1105)
This commit is contained in:
@@ -183,6 +183,7 @@ environment variables are **optional**._
|
|||||||
| Euronics (DE) | `euronics-de`|
|
| Euronics (DE) | `euronics-de`|
|
||||||
| EVGA | `evga`|
|
| EVGA | `evga`|
|
||||||
| EVGA (EU) | `evga-eu`|
|
| EVGA (EU) | `evga-eu`|
|
||||||
|
| Expert | `expert`|
|
||||||
| Galaxus (DE) | `galaxus`|
|
| Galaxus (DE) | `galaxus`|
|
||||||
| Game (UK) | `game`|
|
| Game (UK) | `game`|
|
||||||
| Gamestop | `gamestop`|
|
| Gamestop | `gamestop`|
|
||||||
|
|||||||
@@ -0,0 +1,55 @@
|
|||||||
|
import {Store} from './store';
|
||||||
|
|
||||||
|
export const Expert: Store = {
|
||||||
|
labels: {
|
||||||
|
inStock: [
|
||||||
|
{
|
||||||
|
container: 'span.widget-ArticleStatus-buttonText',
|
||||||
|
text: ['In den Warenkorb']
|
||||||
|
}
|
||||||
|
],
|
||||||
|
maxPrice: {
|
||||||
|
container: '.widget-Container-subContent .widget-ArticlePrice-price',
|
||||||
|
euroFormat: true
|
||||||
|
},
|
||||||
|
outOfStock: [
|
||||||
|
{
|
||||||
|
container:
|
||||||
|
'span[style="font-size: 14pt;"] > span[style="color: #ff5e19;"]',
|
||||||
|
text: ['Das von Ihnen ausgewählte Produkt ist ausverkauft']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
container: 'span.widget-ArticleStatus-statusPointText',
|
||||||
|
text: ['Artikel ist derzeit nicht verfügbar']
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
links: [
|
||||||
|
{
|
||||||
|
brand: 'test:brand',
|
||||||
|
model: 'test:model',
|
||||||
|
series: 'test:series',
|
||||||
|
url: 'https://www.expert.de/shop/11364114744-ps4-pro-1tb-jet-black.html'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'sony',
|
||||||
|
model: 'ps5 console',
|
||||||
|
series: 'sonyps5c',
|
||||||
|
url: 'https://www.expert.de/shop/11364129744-playstation-r-5.html'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'sony',
|
||||||
|
model: 'ps5 digital',
|
||||||
|
series: 'sonyps5de',
|
||||||
|
url:
|
||||||
|
'https://www.expert.de/shop/11364133744-playstation-r-5-digital-edition.html'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'microsoft',
|
||||||
|
model: 'xbox series s',
|
||||||
|
series: 'xboxss',
|
||||||
|
url: 'https://www.expert.de/shop/11350018530-xbox-series-s.html'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
name: 'expert'
|
||||||
|
};
|
||||||
@@ -41,6 +41,7 @@ import {Euronics} from './euronics';
|
|||||||
import {EuronicsDE} from './euronics-de';
|
import {EuronicsDE} from './euronics-de';
|
||||||
import {Evga} from './evga';
|
import {Evga} from './evga';
|
||||||
import {EvgaEu} from './evga-eu';
|
import {EvgaEu} from './evga-eu';
|
||||||
|
import {Expert} from './expert';
|
||||||
import {Galaxus} from './galaxus';
|
import {Galaxus} from './galaxus';
|
||||||
import {Game} from './game';
|
import {Game} from './game';
|
||||||
import {Gamestop} from './gamestop';
|
import {Gamestop} from './gamestop';
|
||||||
@@ -120,6 +121,7 @@ export const storeList = new Map([
|
|||||||
[EuronicsDE.name, EuronicsDE],
|
[EuronicsDE.name, EuronicsDE],
|
||||||
[Evga.name, Evga],
|
[Evga.name, Evga],
|
||||||
[EvgaEu.name, EvgaEu],
|
[EvgaEu.name, EvgaEu],
|
||||||
|
[Expert.name, Expert],
|
||||||
[Galaxus.name, Galaxus],
|
[Galaxus.name, Galaxus],
|
||||||
[Game.name, Game],
|
[Game.name, Game],
|
||||||
[Gamestop.name, Gamestop],
|
[Gamestop.name, Gamestop],
|
||||||
|
|||||||
Reference in New Issue
Block a user