Cart.vue
8.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
<script setup lang="ts">
import type { CartItem, CheckoutData } from './types'
import emptyCartImg from '@images/pages/empty-cart.png'
interface Props {
currentStep?: number
checkoutData: CheckoutData
}
interface Emit {
(e: 'update:currentStep', value: number): void
(e: 'update:checkout-data', value: CheckoutData): void
}
const props = defineProps<Props>()
const emit = defineEmits<Emit>()
const checkoutCartDataLocal = ref(props.checkoutData)
// remove item from cart
const removeItem = (item: CartItem) => {
checkoutCartDataLocal.value.cartItems = checkoutCartDataLocal.value.cartItems.filter(i => i.id !== item.id)
}
// cart total
const totalCost = computed(() => {
return checkoutCartDataLocal.value.cartItems.reduce((acc, item) => {
return acc + item.price * item.quantity
}, 0)
})
const updateCartData = () => {
checkoutCartDataLocal.value.orderAmount = totalCost.value
emit('update:checkout-data', checkoutCartDataLocal.value)
}
const nextStep = () => {
updateCartData()
emit('update:currentStep', props.currentStep ? props.currentStep + 1 : 1)
}
watch(() => props.currentStep, updateCartData)
</script>
<template>
<VRow v-if="checkoutCartDataLocal">
<VCol
cols="12"
md="8"
>
<!-- 👉 Offers alert -->
<VAlert
color="success"
variant="tonal"
icon="ri-percent-line"
closable
>
<VAlertTitle class="text-success mb-1">
Available Offers
</VAlertTitle>
<p class="mb-0">
- 0% Instant Discount on Bank of America Corp Bank Debit and Credit cards
</p>
<p class="mb-0">
- 50% Cashback Voucher of up to $60 on first ever PayPal transaction. TCA
</p>
</VAlert>
<h5 class="text-h5 my-4">
My Shopping Bag ({{ checkoutCartDataLocal.cartItems.length }} Items)
</h5>
<!-- 👉 Cart items -->
<div
v-if="checkoutCartDataLocal.cartItems.length"
class="border rounded"
>
<template
v-for="(item, index) in checkoutCartDataLocal.cartItems"
:key="item.name"
>
<div
class="d-flex align-center gap-3 pa-5 position-relative flex-column flex-sm-row"
:class="index ? 'border-t' : ''"
>
<IconBtn
size="x-small"
class="checkout-item-remove-btn"
color="disabled"
@click="removeItem(item)"
>
<VIcon
size="18"
icon="ri-close-line"
/>
</IconBtn>
<div>
<VImg
width="140"
:src="item.image"
/>
</div>
<div
class="d-flex w-100"
:class="(($vuetify.display.width <= 1280 && $vuetify.display.width >= 960) || $vuetify.display.width <= 700) ? 'flex-column' : 'flex-row'"
>
<div>
<h6 class="text-h6 mb-2">
{{ item.name }}
</h6>
<div class="d-flex align-center text-no-wrap gap-2 text-base">
<span class="text-disabled">Sold by:</span>
<span class="text-primary">{{ item.seller }}</span>
<VChip
:color="item.inStock ? 'success' : 'error'"
size="small"
>
{{ item.inStock ? 'In Stock' : 'Out of Stock' }}
</VChip>
</div>
<div class="my-2">
<VRating
:model-value="item.rating"
size="24"
/>
</div>
<VTextField
v-model="item.quantity"
type="number"
density="compact"
style="inline-size: 7.5rem;"
/>
</div>
<VSpacer />
<div
class="d-flex flex-column mt-5"
:class="(($vuetify.display.width <= 1280 && $vuetify.display.width >= 960) || $vuetify.display.width <= 700) ? 'text-start' : 'text-end'"
>
<p class="text-base">
<span class="text-primary">${{ item.price }}</span>
<span>/</span>
<span class="text-decoration-line-through">${{ item.discountPrice }}</span>
</p>
<div>
<VBtn
size="small"
variant="outlined"
>
move to wishlist
</VBtn>
</div>
</div>
</div>
</div>
</template>
</div>
<!-- 👉 Empty Cart -->
<div v-else>
<VImg :src="emptyCartImg" />
</div>
<!-- 👉 Add more from wishlist -->
<div
class="d-flex align-center justify-space-between border rounded px-5 text-base mt-4"
style="padding-block:7px"
>
<a
href="javascript:void(0)"
class="font-weight-medium"
>Add more products from wishlist</a>
<VIcon
icon="ri-arrow-right-line"
class="flip-in-rtl"
size="16"
color="primary"
/>
</div>
</VCol>
<VCol
cols="12"
md="4"
>
<VCard
flat
variant="outlined"
>
<!-- 👉 payment offer -->
<VCardText>
<h6 class="text-h6 mb-4">
Offer
</h6>
<div class="d-flex align-center gap-4">
<VTextField
v-model="checkoutCartDataLocal.promoCode"
placeholder="Enter Promo Code"
density="compact"
/>
<VBtn
variant="outlined"
@click="updateCartData"
>
Apply
</VBtn>
</div>
<!-- 👉 Gift wrap banner -->
<div class="bg-var-theme-background rounded pa-5 mt-4">
<h6 class="text-h6">
Buying gift for a loved one?
</h6>
<p class="my-2 text-body-1">
Gift wrap and personalized message on card, Only for $2.
</p>
<a
href="javascript:void(0)"
class="font-weight-medium d-inline-block"
>Add a gift wrap</a>
</div>
</VCardText>
<VDivider />
<!-- 👉 Price details -->
<VCardText>
<h6 class="text-h6 mb-4">
Price Details
</h6>
<div class="text-sm text-high-emphasis">
<div class="d-flex justify-space-between mb-2">
<div class="text-body-1 text-high-emphasis">
Bag Total
</div>
<div class="text-body-1">
${{ totalCost }}.00
</div>
</div>
<div class="d-flex justify-space-between mb-2">
<div class="text-body-1 text-high-emphasis">
Coupon Discount
</div>
<a
href="javascript:void(0)"
class="text-base d-inline-block"
>Apply Coupon</a>
</div>
<div class="d-flex justify-space-between mb-2">
<div class="text-body-1 text-high-emphasis">
Order Total
</div>
<div class="text-body-1">
${{ totalCost }}.00
</div>
</div>
<div class="d-flex justify-space-between">
<div class="text-body-1 text-high-emphasis">
Delivery Charges
</div>
<div class="d-flex gap-x-2">
<div class="text-decoration-line-through text-body-1 text-disabled">
$5.00
</div>
<VChip
size="small"
color="success"
>
Free
</VChip>
</div>
</div>
</div>
</VCardText>
<VDivider />
<VCardText class="d-flex justify-space-between py-4">
<h6 class="text-h6">
Total
</h6>
<h6 class="text-h6">
${{ totalCost }}.00
</h6>
</VCardText>
</VCard>
<VBtn
block
class="mt-4"
@click="nextStep"
>
Place Order
</VBtn>
</VCol>
</VRow>
</template>
<style lang="scss">
.checkout-item-remove-btn {
position: absolute;
inset-block-start: 10px;
inset-inline-end: 10px;
}
</style>