From 2e7da5ab02ffa8b07fede7f6cd7e5dbbd90fac5f Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Mon, 23 Nov 2020 17:29:58 -0500 Subject: finished up product detail functionality, started checkout and cart views --- iridescence/src/components/ProductDetail.vue | 75 +++++++++++++++++++++++----- 1 file changed, 62 insertions(+), 13 deletions(-) (limited to 'iridescence/src/components/ProductDetail.vue') diff --git a/iridescence/src/components/ProductDetail.vue b/iridescence/src/components/ProductDetail.vue index 9802d84..430d78b 100644 --- a/iridescence/src/components/ProductDetail.vue +++ b/iridescence/src/components/ProductDetail.vue @@ -17,18 +17,56 @@
-
-

- {{ product.name }} -

-

- {{ dollars }} -

-

{{ stock }}

-
- -
- {{ product.description }} +
+
+

+ {{ product.name }} +

+ +

+ {{ product.description }} +

+
+
+

{{ dollars }}

+

{{ stock }}

+ + +
@@ -42,9 +80,12 @@ export default { name: "ProductDetail", computed: { + inCart() { + return this.$store.state.cart[this.product.id]; + }, product() { return this.$store.getters.products.find( - p => p.id == this.$store.getters.productDetailId + p => p.id == this.$store.state.productDetailId ); }, stock() { @@ -66,11 +107,19 @@ export default { return [process.env.VUE_APP_IMAGE_ROOT, this.product.photo_fullsize].join( "/" ); + }, + categories() { + let categories = this.product.category.split("/"); + categories.splice(0, 1, "All"); + return categories; } }, methods: { clearDetailId() { this.$store.commit("productDetailId", 0); + }, + incrementCartQuantity(by) { + this.$store.commit("cartItem", { id: this.product.id, by }); } } }; -- cgit v1.2.3