mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 02:57:34 +00:00
feat(store): add Medimax (#1057)
This commit is contained in:
@@ -190,6 +190,7 @@ environment variables are **optional**._
|
|||||||
| Gamestop (DE) | `gamestop-de`|
|
| Gamestop (DE) | `gamestop-de`|
|
||||||
| Kabum (BR) | `kabum`|
|
| Kabum (BR) | `kabum`|
|
||||||
| Mediamarkt (DE) | `mediamarkt`|
|
| Mediamarkt (DE) | `mediamarkt`|
|
||||||
|
| Medimax | `medimax`|
|
||||||
| MemoryExpress (CA) | `memoryexpress`|
|
| MemoryExpress (CA) | `memoryexpress`|
|
||||||
| Micro Center | `microcenter`|
|
| Micro Center | `microcenter`|
|
||||||
| Mindfactory (DE) | `mindfactory` |
|
| Mindfactory (DE) | `mindfactory` |
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ import {Gamestop} from './gamestop';
|
|||||||
import {GamestopDE} from './gamestop-de';
|
import {GamestopDE} from './gamestop-de';
|
||||||
import {Kabum} from './kabum';
|
import {Kabum} from './kabum';
|
||||||
import {Mediamarkt} from './mediamarkt';
|
import {Mediamarkt} from './mediamarkt';
|
||||||
|
import {Medimax} from './medimax';
|
||||||
import {MemoryExpress} from './memoryexpress';
|
import {MemoryExpress} from './memoryexpress';
|
||||||
import {MicroCenter} from './microcenter';
|
import {MicroCenter} from './microcenter';
|
||||||
import {Mindfactory} from './mindfactory';
|
import {Mindfactory} from './mindfactory';
|
||||||
@@ -129,6 +130,7 @@ export const storeList = new Map([
|
|||||||
[GamestopDE.name, GamestopDE],
|
[GamestopDE.name, GamestopDE],
|
||||||
[Kabum.name, Kabum],
|
[Kabum.name, Kabum],
|
||||||
[Mediamarkt.name, Mediamarkt],
|
[Mediamarkt.name, Mediamarkt],
|
||||||
|
[Medimax.name, Medimax],
|
||||||
[MemoryExpress.name, MemoryExpress],
|
[MemoryExpress.name, MemoryExpress],
|
||||||
[MicroCenter.name, MicroCenter],
|
[MicroCenter.name, MicroCenter],
|
||||||
[Mindfactory.name, Mindfactory],
|
[Mindfactory.name, Mindfactory],
|
||||||
|
|||||||
@@ -0,0 +1,46 @@
|
|||||||
|
import {Store} from './store';
|
||||||
|
|
||||||
|
export const Medimax: Store = {
|
||||||
|
labels: {
|
||||||
|
inStock: [
|
||||||
|
{
|
||||||
|
container: '.product-cart-add-to-cart-button',
|
||||||
|
text: ['In den Warenkorb']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
container: '.stock-message',
|
||||||
|
text: ['Lieferung in']
|
||||||
|
}
|
||||||
|
],
|
||||||
|
maxPrice: {
|
||||||
|
container: '.priceOfProduct',
|
||||||
|
euroFormat: true
|
||||||
|
},
|
||||||
|
outOfStock: {
|
||||||
|
container: '.content .large',
|
||||||
|
text: ['Ihr MEDIMAX Team']
|
||||||
|
}
|
||||||
|
},
|
||||||
|
links: [
|
||||||
|
{
|
||||||
|
brand: 'test:brand',
|
||||||
|
model: 'test:model',
|
||||||
|
series: 'test:series',
|
||||||
|
url: 'https://www.medimax.de/p/1311642/drivesmart-51-lmt-d-ce'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'sony',
|
||||||
|
model: 'ps5 console',
|
||||||
|
series: 'sonyps5c',
|
||||||
|
url: 'https://www.medimax.de/p/1315336/play-station-5-825gb-ssd'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'sony',
|
||||||
|
model: 'ps5 digital',
|
||||||
|
series: 'sonyps5de',
|
||||||
|
url:
|
||||||
|
'https://www.medimax.de/p/1315337/play-station-5-digital-edition-825gb-ssd'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
name: 'medimax'
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user