summaryrefslogtreecommitdiff
path: root/iridescence/src/components/admin/ProductEditCard.vue
blob: e7fef5e9a93b863a7f0872f751e18d460e896a1c (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
<template>
  <div id="productEditCard">
    <nav class="panel">
      <p class="panel-heading">
        {{ currentProduct.id }}: {{ currentProduct.name }}
      </p>
      <div class="panel-block">
        <input
          class="input"
          type="text"
          placeholder="product name"
          v-model="newProduct.name"
        />
      </div>
      <a class="panel-block">
        mojs
      </a>
      <div class="panel-block" v-if="newProductChanged">
        <button
          class="button is-link is-outlined is-fullwidth"
          @click="saveProduct"
        >
          Save
        </button>
      </div>
    </nav>
  </div>
</template>

<script>
export default {
  name: "ProductEditCard",
  data: function() {
    return {
      newProduct: {
        id: this.currentProduct.id,
        name: this.currentProduct.name,
        quantity: this.currentProduct.quantity,
        cents: this.currentProduct.cents,
        imgPath: this.currentProduct.imgPath,
        description: this.currentProduct.description,
        featured: this.currentProduct.featured,
        categories: this.currentProduct.categories.slice(0)
      }
    };
  },
  props: {
    currentProduct: {
      type: Object,
      required: true
    }
  },
  watch: {
    currentProduct() {
      this.newProduct.id = this.currentProduct.id;
      this.newProduct.name = this.currentProduct.name;
      this.newProduct.quantity = this.currentProduct.quantity;
      this.newProduct.cents = this.currentProduct.cents;
      this.newProduct.imgPath = this.currentProduct.imgPath;
      this.newProduct.description = this.currentProduct.description;
      this.newProduct.featured = this.currentProduct.featured;
      this.newProduct.categories = this.currentProduct.categories.slice(0);
    }
  },
  computed: {
    newProductChanged() {
      // TODO: check categories!
      return (
        this.newProduct.id != this.currentProduct.id ||
        this.newProduct.name != this.currentProduct.name ||
        this.newProduct.quantity != this.currentProduct.quantity ||
        this.newProduct.cents != this.currentProduct.cents ||
        this.newProduct.imgPath != this.currentProduct.imgPath ||
        this.newProduct.description != this.currentProduct.description ||
        this.newProduct.featured != this.currentProduct.featured
      );
    }
  },
  methods: {
    saveProduct() {
      this.$store.dispatch("updateProduct", this.newProduct);
    }
  }
};
</script>