Store Wallet List
The store-wallet-list
renders the virtual wallet that contains the user's credit and gift card information.
Configuration
- Import the
vtex.list
app to your theme's peer dependencies in themanifest.json
file as in the following example:
"peerDependencies": {
"vtex.list": "3.x"
}
- Add the
store-wallet-list
block to other theme block inside an authentication context, such as theflex-layout.col
. For example:
"store.home": {
"blocks": ["auth-condition#search-list"],
"parent": { "storeWrapper": "storeWrapper#home" }
},
"auth-condition#search-list": {
"props": {
"Then": "flex-layout.row#home-with-user",
"Else": "flex-layout.row#home-without-user"
}
},
"flex-layout.row#home-with-user": {
"children": ["flex-layout.col#home-with-user-col"],
"props": {
"blockClass": "home-with-user"
}
},
"flex-layout.col#home-with-user-col": {
"children": [
"flex-layout.row#user-list",
+ "store-wallet-list",
"flex-layout.row#search-list",
"flex-layout.row#advantages"
]
}