mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 04:07:36 +00:00
feat(store): add spielegrotte (#1056)
This commit is contained in:
@@ -210,6 +210,7 @@ environment variables are **optional**._
|
||||
| Proshop (DK) | `proshop-dk`|
|
||||
| Saturn (DE) | `saturn`|
|
||||
| Scan (UK) | `scan`|
|
||||
| Spielegrotte | `spielegrotte`|
|
||||
| Target | `target`|
|
||||
| Unieuro (IT) | `unieuro`|
|
||||
| Very (UK) | `very`|
|
||||
|
||||
@@ -68,6 +68,7 @@ import {ProshopDE} from './proshop-de';
|
||||
import {ProshopDK} from './proshop-dk';
|
||||
import {Saturn} from './saturn';
|
||||
import {Scan} from './scan';
|
||||
import {Spielegrotte} from './spielegrotte';
|
||||
import {Store} from './store';
|
||||
import {Target} from './target';
|
||||
import {TopAchat} from './topachat';
|
||||
@@ -150,6 +151,7 @@ export const storeList = new Map([
|
||||
[ProshopDK.name, ProshopDK],
|
||||
[Saturn.name, Saturn],
|
||||
[Scan.name, Scan],
|
||||
[Spielegrotte.name, Spielegrotte],
|
||||
[Target.name, Target],
|
||||
[TopAchat.name, TopAchat],
|
||||
[Unieuro.name, Unieuro],
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
import {Store} from './store';
|
||||
|
||||
export const Spielegrotte: Store = {
|
||||
labels: {
|
||||
inStock: [
|
||||
{
|
||||
container:
|
||||
'html > body > table > tbody > tr > td > div > table > tbody > tr > td > center > table > tbody > tr > td > a.klein > img',
|
||||
text: ['']
|
||||
}
|
||||
],
|
||||
maxPrice: {
|
||||
container:
|
||||
'html > body > table > tbody > tr > td > div > table > tbody > tr > td > center > table > tbody > tr > td > font > b',
|
||||
euroFormat: true
|
||||
},
|
||||
outOfStock: {
|
||||
container:
|
||||
'html > body > table > tbody > tr > td > div > table > tbody > tr > td > center > font > b',
|
||||
text: ['Dieses Produkt ist leider neu nicht mehr verfügbar']
|
||||
}
|
||||
},
|
||||
links: [
|
||||
{
|
||||
brand: 'test:brand',
|
||||
model: 'test:model',
|
||||
series: 'test:series',
|
||||
url: 'https://www.spielegrotte.de/index.php?kat=100056&anr=54288'
|
||||
},
|
||||
{
|
||||
brand: 'sony',
|
||||
model: 'ps5 console',
|
||||
series: 'sonyps5c',
|
||||
url: 'https://www.spielegrotte.de/index.php?kat=100100&anr=56005'
|
||||
},
|
||||
{
|
||||
brand: 'sony',
|
||||
model: 'ps5 digital',
|
||||
series: 'sonyps5de',
|
||||
url: 'https://www.spielegrotte.de/index.php?kat=100100&anr=56006'
|
||||
}
|
||||
],
|
||||
name: 'spielegrotte'
|
||||
};
|
||||
Reference in New Issue
Block a user