forked from jef/streetmerchant
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(store): Add AO and BT (UK) (jef#2089)
- Loading branch information
1 parent
39dc1d0
commit d5656d6
Showing
4 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import {Store} from './store'; | ||
|
||
export const AO: Store = { | ||
currency: '£', | ||
labels: { | ||
outOfStock: { | ||
container: 'section.centred-heading-copy strong', | ||
text: ['currently unavailable'], | ||
}, | ||
}, | ||
links: [ | ||
{ | ||
brand: 'sony', | ||
model: 'ps5 console', | ||
series: 'sonyps5c', | ||
url: 'https://ao.com/brands/playstation', | ||
}, | ||
{ | ||
brand: 'sony', | ||
model: 'ps5 digital', | ||
series: 'sonyps5de', | ||
url: 'https://ao.com/brands/playstation', | ||
}, | ||
], | ||
name: 'ao', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import {Store} from './store'; | ||
|
||
export const BT: Store = { | ||
currency: '£', | ||
labels: { | ||
outOfStock: { | ||
container: '#cms-component-content-panel-200124986 p', | ||
text: ["We've sold out of our current allocation of PlayStation 5"], | ||
}, | ||
}, | ||
links: [ | ||
{ | ||
brand: 'sony', | ||
model: 'ps5 console', | ||
series: 'sonyps5c', | ||
url: 'https://shop.bt.com/mini-sites/gaming', | ||
}, | ||
{ | ||
brand: 'sony', | ||
model: 'ps5 digital', | ||
series: 'sonyps5de', | ||
url: 'https://shop.bt.com/mini-sites/gaming', | ||
}, | ||
], | ||
name: 'bt', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters