summaryrefslogtreecommitdiff
path: root/iridescence/src/components/ProductDetail.vue
blob: 6aeb68c89d941aeb959ad837b3c94f509c5d31e4 (plain) (blame)
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
<template>
  <div id="productDetail">
    <div v-if="product" class="modal is-active">
      <div @click="clearDetailId" class="modal-background"></div>
      <div class="modal-content">
        <div class="card">
          <div class="card-image">
            <figure class="image ">
              <a target="_blank" :href="fullsize">
                <img
                  :src="base"
                  :alt="product.name"
                  title="Click for fullsize"
                />
              </a>
            </figure>
          </div>

          <div class="card-content">
            <div class="columns">
              <div class="column">
                <p class="title">
                  {{ product.name }}
                </p>
                <nav class="breadcrumb">
                  <ul>
                    <li v-for="category in categories" :key="category">
                      {{ category }}
                    </li>
                  </ul>
                </nav>
                <p>
                  {{ product.description }}
                </p>
              </div>
              <div class="column is-one-third">
                <p class="subtitle">{{ dollars }}</p>
                <p class="subtitle">{{ stock }}</p>
                <div v-if="inCart" class="field has-addons">
                  <p class="control is-expanded">
                    <a
                      class="button is-static is-fullwidth is-rounded is-medium"
                    >
                      {{ inCart }} in cart
                    </a>
                  </p>
                  <div class="control">
                    <a
                      @click="incrementCartQuantity(-1)"
                      class="button is-info is-medium"
                    >
                      <span
                        class="iconify-inline"
                        data-icon="mdi-cart-minus"
                      ></span>
                    </a>
                  </div>
                  <div class="control">
                    <a
                      @click="incrementCartQuantity(1)"
                      class="button is-info is-rounded is-medium"
                    >
                      <span
                        class="iconify-inline"
                        data-icon="mdi-cart-plus"
                      ></span>
                    </a>
                  </div>
                </div>
                <button
                  v-else
                  @click="incrementCartQuantity(1)"
                  class="button is-success is-fullwidth is-rounded is-medium"
                >
                  <span
                    class="iconify-inline"
                    data-icon="mdi-cart-arrow-down"
                  ></span>
                </button>
              </div>
            </div>
          </div>
        </div>
      </div>
      <div @click="clearDetailId" class="modal-close is-large"></div>
    </div>
  </div>
</template>

<script>
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.state.productDetailId
      );
    },
    stock() {
      if (this.product.quantity == 0) {
        return "Made to order";
      } else {
        return [this.product.quantity, "in stock"].join(" ");
      }
    },
    dollars() {
      return "$ " + (this.product.cents / 100).toFixed(2);
    },
    base() {
      return [process.env.VUE_APP_IMAGE_ROOT, this.product.photo_base].join(
        "/"
      );
    },
    fullsize() {
      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 });
    }
  }
};
</script>