@viur/shop-components 0.0.1-dev.2 → 0.0.1-dev.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/package.json +8 -29
- package/src/components/cart/CartLeaf.vue +7 -0
- package/src/components/cart/CartNode.vue +17 -0
- package/src/components/cart/CartView.vue +725 -0
- package/src/components/cart/ConfirmView.vue +314 -0
- package/src/components/order/category/CategoryList.vue +12 -12
- package/src/components/order/category/CategoryView.vue +60 -20
- package/src/components/order/information/UserInfoMulti.vue +427 -0
- package/src/components/order/information/UserInformation.vue +332 -0
- package/src/components/order/information/adress/ShippingAdress.vue +143 -0
- package/src/components/order/item/ItemCard.vue +75 -89
- package/src/components/order/item/ItemView.vue +34 -34
- package/src/components/order/process/ExampleUsage.vue +111 -0
- package/src/components/order/process/OrderComplete.vue +41 -0
- package/src/components/order/process/OrderTabHeader.vue +7 -0
- package/src/components/order/process/OrderView.vue +210 -0
- package/src/router/index.js +14 -4
- package/src/stores/cart.js +82 -63
- package/src/App.vue +0 -30
- package/src/components/cart/BasketView.vue +0 -569
- package/src/index.html +0 -13
- package/src/index.js +0 -4
- package/src/main.js +0 -9
- package/src/shoelaceConfig.js +0 -54
- package/src/style.css +0 -79
- package/vite.config.js +0 -23
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="bind viur-shop-wrap">
|
|
3
|
+
<sl-tab-group
|
|
4
|
+
class="viur-shop-order-tab"
|
|
5
|
+
noScrollControls
|
|
6
|
+
@sl-tab-show="onTabChange"
|
|
7
|
+
ref="tabGroup"
|
|
8
|
+
>
|
|
9
|
+
<sl-tab
|
|
10
|
+
slot="nav"
|
|
11
|
+
:panel="tab"
|
|
12
|
+
v-for="(tab, index) in state.tabNames"
|
|
13
|
+
:key="tab"
|
|
14
|
+
:disabled="tabs[tab].disabled"
|
|
15
|
+
>
|
|
16
|
+
<div class="viur-shop-order-step">
|
|
17
|
+
<sl-icon
|
|
18
|
+
:name="tabs[tab].icon.name"
|
|
19
|
+
:library="tabs[tab].icon.library"
|
|
20
|
+
>
|
|
21
|
+
</sl-icon>
|
|
22
|
+
<div class="viur-shop-order-status-text">
|
|
23
|
+
{{ index + 1 }}. {{ tabs[tab].displayName }}
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
<sl-icon
|
|
27
|
+
name="chevron-right"
|
|
28
|
+
class="viur-shop-order-tab-check"
|
|
29
|
+
v-if="index < state.tabNames.length - 1"
|
|
30
|
+
></sl-icon>
|
|
31
|
+
</sl-tab>
|
|
32
|
+
|
|
33
|
+
<sl-tab-panel
|
|
34
|
+
:name="tab"
|
|
35
|
+
v-for="(tab, index) in state.tabNames"
|
|
36
|
+
:key="tab"
|
|
37
|
+
>
|
|
38
|
+
<component
|
|
39
|
+
:is="tabs[tab].component"
|
|
40
|
+
v-bind="tabs[tab].props ? tabs[tab].props : ''"
|
|
41
|
+
>
|
|
42
|
+
</component>
|
|
43
|
+
<div
|
|
44
|
+
class="viur-shop-form-footer"
|
|
45
|
+
:class="{ 'flex-end': state.isFirstTab(index) }"
|
|
46
|
+
v-if="index !== state.tabNames.length - 1"
|
|
47
|
+
>
|
|
48
|
+
<sl-button type="submit" v-show="index !== 0" @click="prevTab(state.tabNames[index-1])">
|
|
49
|
+
Zurück
|
|
50
|
+
</sl-button>
|
|
51
|
+
<!-- :disabled="!state.requiredFieldsFilled" -->
|
|
52
|
+
<sl-button type="submit" variant="primary" @click="nextTab(state.tabNames[index+1])">
|
|
53
|
+
Weiter
|
|
54
|
+
</sl-button>
|
|
55
|
+
</div>
|
|
56
|
+
</sl-tab-panel>
|
|
57
|
+
</sl-tab-group>
|
|
58
|
+
|
|
59
|
+
<div class="viur-shop-sidebar" id="order_sidebar"></div>
|
|
60
|
+
</div>
|
|
61
|
+
</template>
|
|
62
|
+
|
|
63
|
+
<script setup>
|
|
64
|
+
import { reactive, computed, ref } from "vue";
|
|
65
|
+
|
|
66
|
+
const props = defineProps({
|
|
67
|
+
tabs: {
|
|
68
|
+
type: Object,
|
|
69
|
+
required: true,
|
|
70
|
+
},
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
const emit = defineEmits(["tabChange"]);
|
|
74
|
+
|
|
75
|
+
const state = reactive({
|
|
76
|
+
tabNames: computed(() => sortTabs(props.tabs)),
|
|
77
|
+
isFirstTab: (index) => {
|
|
78
|
+
if (index === 0) {
|
|
79
|
+
return true;
|
|
80
|
+
}
|
|
81
|
+
return false;
|
|
82
|
+
},
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
const tabGroup = ref(null);
|
|
86
|
+
|
|
87
|
+
function sortTabs(tabs) {
|
|
88
|
+
let sortedArray = [];
|
|
89
|
+
let outputArray = [];
|
|
90
|
+
|
|
91
|
+
for (const tab in tabs) {
|
|
92
|
+
if (tabs[tab].position) {
|
|
93
|
+
sortedArray.push([tab, tabs[tab].position]);
|
|
94
|
+
} else {
|
|
95
|
+
sortedArray.push([tab, 0]);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
sortedArray.sort((a, b) => {
|
|
100
|
+
return a[1] - b[1];
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
sortedArray.forEach((tab) => {
|
|
104
|
+
outputArray.push(tab[0]);
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
return outputArray;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function onTabChange(e) {
|
|
111
|
+
emit("tabChange", e);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
function prevTab(tabName) {
|
|
116
|
+
tabGroup.value.show(tabName);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
function nextTab(tabName) {
|
|
120
|
+
tabGroup.value.show(tabName);
|
|
121
|
+
}
|
|
122
|
+
</script>
|
|
123
|
+
|
|
124
|
+
<style scoped>
|
|
125
|
+
.viur-shop-wrap {
|
|
126
|
+
flex-direction: row;
|
|
127
|
+
gap: var(--sl-spacing-x-large);
|
|
128
|
+
align-items: flex-start;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.viur-shop-sidebar {
|
|
132
|
+
display: flex;
|
|
133
|
+
flex-direction: column;
|
|
134
|
+
background-color: var(--sl-color-neutral-100);
|
|
135
|
+
min-width: 300px;
|
|
136
|
+
padding: var(--sl-spacing-medium);
|
|
137
|
+
position: sticky;
|
|
138
|
+
top: 0;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.viur-shop-order-tab {
|
|
142
|
+
sl-tab {
|
|
143
|
+
width: 25%;
|
|
144
|
+
|
|
145
|
+
&::part(base) {
|
|
146
|
+
width: 100%;
|
|
147
|
+
height: 100%;
|
|
148
|
+
display: flex;
|
|
149
|
+
justify-content: center;
|
|
150
|
+
align-items: center;
|
|
151
|
+
position: relative;
|
|
152
|
+
color: var(--sl-color-neutral-400);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
&[aria-selected="true"]::part(base) {
|
|
156
|
+
color: var(--ignt-color-primary) !important;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.viur-shop-order-step {
|
|
162
|
+
width: 100%;
|
|
163
|
+
height: 100%;
|
|
164
|
+
display: flex;
|
|
165
|
+
flex-direction: column;
|
|
166
|
+
justify-content: flex-start;
|
|
167
|
+
align-items: center;
|
|
168
|
+
|
|
169
|
+
@media (--ignt-mq-max-break-small) {
|
|
170
|
+
justify-content: center;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
sl-icon {
|
|
174
|
+
font-size: 2.5em;
|
|
175
|
+
margin-bottom: 10px;
|
|
176
|
+
|
|
177
|
+
@media (--ignt-mq-max-break-small) {
|
|
178
|
+
display: none;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.viur-shop-order-tab-check {
|
|
184
|
+
position: absolute;
|
|
185
|
+
right: -0.5em;
|
|
186
|
+
|
|
187
|
+
@media (--ignt-mq-max-break-small) {
|
|
188
|
+
font-size: 0.7em;
|
|
189
|
+
right: -0.35em;
|
|
190
|
+
top: calc(50% - 0.35em);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.viur-shop-order-status-text {
|
|
195
|
+
font-size: 0.8em;
|
|
196
|
+
color: inherit;
|
|
197
|
+
text-align: center;
|
|
198
|
+
margin-top: 0.6em;
|
|
199
|
+
white-space: initial;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.viur-shop-form-footer {
|
|
203
|
+
display: flex;
|
|
204
|
+
justify-content: space-between;
|
|
205
|
+
margin-top: var(--sl-spacing-large);
|
|
206
|
+
}
|
|
207
|
+
.flex-end {
|
|
208
|
+
justify-content: flex-end;
|
|
209
|
+
}
|
|
210
|
+
</style>
|
package/src/router/index.js
CHANGED
|
@@ -19,11 +19,21 @@ const default_routes = [
|
|
|
19
19
|
component: () => import("../components/order/item/ItemView.vue"),
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
|
-
path: "/shop/
|
|
23
|
-
name: "
|
|
24
|
-
component: () => import("../components/cart/
|
|
22
|
+
path: "/shop/cart/view",
|
|
23
|
+
name: "CartView",
|
|
24
|
+
component: () => import("../components/cart/CartView.vue"),
|
|
25
25
|
},
|
|
26
|
-
|
|
26
|
+
{
|
|
27
|
+
path: "/shop/order/",
|
|
28
|
+
name: "OrderView",
|
|
29
|
+
component: () => import("../components/order/process/ExampleUsage.vue"),
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
path: "/shop/order/confirm",
|
|
33
|
+
name: "ConfirmView",
|
|
34
|
+
component: () => import("../components/cart/ConfirmView.vue"),
|
|
35
|
+
},
|
|
36
|
+
];4
|
|
27
37
|
|
|
28
38
|
function createRouterInstance(routes, replace = false) {
|
|
29
39
|
let newRoutes = [];
|
package/src/stores/cart.js
CHANGED
|
@@ -1,98 +1,117 @@
|
|
|
1
1
|
import { reactive } from "vue";
|
|
2
|
-
import { Request } from "@viur/vue-utils";
|
|
2
|
+
import { Request, ListRequest } from "@viur/vue-utils";
|
|
3
3
|
import { defineStore } from "pinia";
|
|
4
4
|
import { ViURShopClient } from "@viur/viur-shop-client";
|
|
5
5
|
|
|
6
6
|
export const useCartStore = defineStore("cartstore", () => {
|
|
7
|
+
const shopClient = new ViURShopClient({
|
|
8
|
+
host_url:
|
|
9
|
+
window.location.origin === "http://localhost:8081"
|
|
10
|
+
? "http://localhost:8080"
|
|
11
|
+
: window.location.origin,
|
|
12
|
+
});
|
|
13
|
+
|
|
7
14
|
const state = reactive({
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
15
|
+
basketRootNode: {},
|
|
16
|
+
whishlistRootNodes: [],
|
|
17
|
+
children: {},
|
|
18
|
+
structure: { address: {}, cart: {} },
|
|
12
19
|
});
|
|
13
20
|
|
|
14
|
-
function init() {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
state.allCarts[cart.key] = cart;
|
|
20
|
-
getCartItems(cart.key).then(async (resp) => {
|
|
21
|
-
let data = await resp.json();
|
|
22
|
-
state.cartItems[cart.key] = data;
|
|
23
|
-
});
|
|
24
|
-
});
|
|
25
|
-
});
|
|
21
|
+
async function init() {
|
|
22
|
+
// ! initializes only children for cart of type basket
|
|
23
|
+
// ! for whishlists this has to be done in the component
|
|
24
|
+
await getRootNodes();
|
|
25
|
+
}
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
async function getChildren(parentKey) {
|
|
28
|
+
let resp = await shopClient.cart_list({ cart_key: parentKey });
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
console.log("cartStore basket article", data);
|
|
32
|
-
state.basketArticle = data;
|
|
33
|
-
});
|
|
30
|
+
return resp
|
|
31
|
+
}
|
|
34
32
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
33
|
+
async function getRootNodes() {
|
|
34
|
+
let resp = await shopClient.cart_list();
|
|
35
|
+
|
|
36
|
+
resp.forEach((rootNode) => {
|
|
37
|
+
if (rootNode.is_root_node) {
|
|
38
|
+
if (rootNode.cart_type === "basket") {
|
|
39
|
+
state.basketRootNode = rootNode;
|
|
40
|
+
} else {
|
|
41
|
+
state.whishlistRootNodes.push(rootNode);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
});
|
|
41
45
|
}
|
|
42
46
|
|
|
43
|
-
function
|
|
44
|
-
|
|
45
|
-
|
|
47
|
+
async function addToCart(articleKey, cartKey) {
|
|
48
|
+
let resp = await shopClient.article_add({
|
|
49
|
+
article_key: articleKey,
|
|
50
|
+
parent_cart_key: cartKey,
|
|
51
|
+
});
|
|
46
52
|
|
|
47
|
-
|
|
53
|
+
await updateCart(cartKey);
|
|
54
|
+
console.log("addToCart", resp); //TODO: Errorhandling as soon as shop module works again
|
|
48
55
|
}
|
|
49
56
|
|
|
50
|
-
function
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
57
|
+
async function getArticleView(articleKey, cartKey) {
|
|
58
|
+
let article = await shopClient.article_view({
|
|
59
|
+
article_key: articleKey,
|
|
60
|
+
parent_cart_key: cartKey,
|
|
55
61
|
});
|
|
62
|
+
|
|
63
|
+
console.log("getArticleView", article); // ? Talk about necessarity
|
|
56
64
|
}
|
|
57
65
|
|
|
58
|
-
function
|
|
59
|
-
|
|
60
|
-
|
|
66
|
+
async function removeItem(articleKey, cartKey) {
|
|
67
|
+
let resp = await shopClient.article_remove({
|
|
68
|
+
article_key: articleKey,
|
|
69
|
+
parent_cart_key: cartKey,
|
|
61
70
|
});
|
|
71
|
+
|
|
72
|
+
console.log("remove Resp", resp); //TODO: Errorhandling as soon as shop module works again
|
|
62
73
|
}
|
|
63
74
|
|
|
64
|
-
function
|
|
65
|
-
|
|
66
|
-
|
|
75
|
+
async function updateItem(articleKey, cartKey, quantity) {
|
|
76
|
+
let resp = await shopClient.article_update({
|
|
77
|
+
article_key: articleKey,
|
|
78
|
+
parent_cart_key: cartKey,
|
|
79
|
+
quantity: quantity,
|
|
80
|
+
quantity_mode: "replace",
|
|
67
81
|
});
|
|
82
|
+
|
|
83
|
+
if (quantity === 0) {
|
|
84
|
+
await updateCart(cartKey);
|
|
85
|
+
}
|
|
86
|
+
console.log("update Resp", resp); //TODO: Errorhandling as soon as shop module works again
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
async function updateCart(cartKey) {
|
|
90
|
+
await getChildren(cartKey);
|
|
68
91
|
}
|
|
69
92
|
|
|
70
|
-
function
|
|
71
|
-
|
|
72
|
-
|
|
93
|
+
async function getAdressStructure() {
|
|
94
|
+
let addSkel = await shopClient.address_structure();
|
|
95
|
+
state.structure.address = addSkel.addSkel;
|
|
96
|
+
|
|
97
|
+
console.log("adress add", state.structure.address);
|
|
98
|
+
|
|
99
|
+
// Request.getStructure("shop.address").then(async (resp) => {
|
|
73
100
|
// let data = await resp.json();
|
|
74
|
-
//
|
|
75
|
-
|
|
101
|
+
// state.structure.address = data.addSkel;
|
|
102
|
+
|
|
103
|
+
// console.log("adress add", state.structure.address);
|
|
76
104
|
// });
|
|
77
|
-
Request.securePost("/shop/api/article_add", {
|
|
78
|
-
dataObj: {
|
|
79
|
-
article_key: articleKey,
|
|
80
|
-
parent_cart_key: cartKey,
|
|
81
|
-
quantity: 1,
|
|
82
|
-
quantity_mode: "increase",
|
|
83
|
-
// skey: skey,
|
|
84
|
-
},
|
|
85
|
-
}).then(async (resp) => {
|
|
86
|
-
let data = await resp.json();
|
|
87
|
-
console.log("article add", data);
|
|
88
|
-
});
|
|
89
105
|
}
|
|
90
106
|
|
|
91
107
|
return {
|
|
92
108
|
state,
|
|
93
|
-
listCarts,
|
|
94
109
|
addToCart,
|
|
95
|
-
|
|
110
|
+
getArticleView,
|
|
111
|
+
removeItem,
|
|
112
|
+
updateItem,
|
|
96
113
|
init,
|
|
114
|
+
getAdressStructure,
|
|
115
|
+
getChildren,
|
|
97
116
|
};
|
|
98
117
|
});
|
package/src/App.vue
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
<script setup>
|
|
2
|
-
import HelloWorld from './components/HelloWorld.vue'
|
|
3
|
-
</script>
|
|
4
|
-
|
|
5
|
-
<template>
|
|
6
|
-
<div>
|
|
7
|
-
<a href="https://vitejs.dev" target="_blank">
|
|
8
|
-
<img src="/vite.svg" class="logo" alt="Vite logo" />
|
|
9
|
-
</a>
|
|
10
|
-
<a href="https://vuejs.org/" target="_blank">
|
|
11
|
-
<img src="./assets/vue.svg" class="logo vue" alt="Vue logo" />
|
|
12
|
-
</a>
|
|
13
|
-
</div>
|
|
14
|
-
<HelloWorld msg="Vite + Vue" />
|
|
15
|
-
</template>
|
|
16
|
-
|
|
17
|
-
<style scoped>
|
|
18
|
-
.logo {
|
|
19
|
-
height: 6em;
|
|
20
|
-
padding: 1.5em;
|
|
21
|
-
will-change: filter;
|
|
22
|
-
transition: filter 300ms;
|
|
23
|
-
}
|
|
24
|
-
.logo:hover {
|
|
25
|
-
filter: drop-shadow(0 0 2em #646cffaa);
|
|
26
|
-
}
|
|
27
|
-
.logo.vue:hover {
|
|
28
|
-
filter: drop-shadow(0 0 2em #42b883aa);
|
|
29
|
-
}
|
|
30
|
-
</style>
|