mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 02:57:34 +00:00
feat(store): add Gamestop DE (#1046)
This commit is contained in:
@@ -181,6 +181,7 @@ environment variables are **optional**._
|
|||||||
| Galaxus (DE) | `galaxus`|
|
| Galaxus (DE) | `galaxus`|
|
||||||
| Game (UK) | `game`|
|
| Game (UK) | `game`|
|
||||||
| Gamestop | `gamestop`|
|
| Gamestop | `gamestop`|
|
||||||
|
| Gamestop (DE) | `gamestop-de`|
|
||||||
| Kabum (BR) | `kabum`|
|
| Kabum (BR) | `kabum`|
|
||||||
| Mediamarkt (DE) | `mediamarkt`|
|
| Mediamarkt (DE) | `mediamarkt`|
|
||||||
| MemoryExpress (CA) | `memoryexpress`|
|
| MemoryExpress (CA) | `memoryexpress`|
|
||||||
|
|||||||
@@ -0,0 +1,40 @@
|
|||||||
|
import {Store} from './store';
|
||||||
|
|
||||||
|
export const GamestopDE: Store = {
|
||||||
|
labels: {
|
||||||
|
inStock: [
|
||||||
|
{
|
||||||
|
container: '#btnAddToCart',
|
||||||
|
text: ['In den Warenkorb']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
container: '#btnAddToCart',
|
||||||
|
text: ['Vorbestellen']
|
||||||
|
}
|
||||||
|
],
|
||||||
|
maxPrice: {
|
||||||
|
container: '.buySection .prodPriceCont',
|
||||||
|
euroFormat: true
|
||||||
|
},
|
||||||
|
outOfStock: {
|
||||||
|
container: '.megaButton',
|
||||||
|
text: ['Nicht verfügbar']
|
||||||
|
}
|
||||||
|
},
|
||||||
|
links: [
|
||||||
|
{
|
||||||
|
brand: 'sony',
|
||||||
|
model: 'ps5 console',
|
||||||
|
series: 'sonyps5c',
|
||||||
|
url: 'https://www.gamestop.de/PS5/Games/58665'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'sony',
|
||||||
|
model: 'ps5 digital',
|
||||||
|
series: 'sonyps5de',
|
||||||
|
url: 'https://www.gamestop.de/PS5/Games/60315'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
name: 'gamestop-de',
|
||||||
|
successStatusCodes: [[0, 399], 404]
|
||||||
|
};
|
||||||
@@ -41,6 +41,7 @@ import {EvgaEu} from './evga-eu';
|
|||||||
import {Galaxus} from './galaxus';
|
import {Galaxus} from './galaxus';
|
||||||
import {Game} from './game';
|
import {Game} from './game';
|
||||||
import {Gamestop} from './gamestop';
|
import {Gamestop} from './gamestop';
|
||||||
|
import {GamestopDE} from './gamestop-de';
|
||||||
import {Kabum} from './kabum';
|
import {Kabum} from './kabum';
|
||||||
import {Mediamarkt} from './mediamarkt';
|
import {Mediamarkt} from './mediamarkt';
|
||||||
import {MemoryExpress} from './memoryexpress';
|
import {MemoryExpress} from './memoryexpress';
|
||||||
@@ -116,6 +117,7 @@ export const storeList = new Map([
|
|||||||
[Galaxus.name, Galaxus],
|
[Galaxus.name, Galaxus],
|
||||||
[Game.name, Game],
|
[Game.name, Game],
|
||||||
[Gamestop.name, Gamestop],
|
[Gamestop.name, Gamestop],
|
||||||
|
[GamestopDE.name, GamestopDE],
|
||||||
[Kabum.name, Kabum],
|
[Kabum.name, Kabum],
|
||||||
[Mediamarkt.name, Mediamarkt],
|
[Mediamarkt.name, Mediamarkt],
|
||||||
[MemoryExpress.name, MemoryExpress],
|
[MemoryExpress.name, MemoryExpress],
|
||||||
|
|||||||
Reference in New Issue
Block a user