summaryrefslogtreecommitdiff
path: root/iridescence/src/components/admin/ProductEditCard.vue
blob: db4ab77430a2f15f0e16666ecc6efe70ee4bab29 (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
<template>
  <div id="productEditCard">
    <nav class="panel">
      <p class="panel-heading">{{ oldProduct.id }}: {{ oldProduct.name }}</p>
      <div class="panel-block">
        <input class="input" type="text" v-model="newProduct.name" />
      </div>
      <a class="panel-block">
        mojs
      </a>
      <div class="panel-block" v-if="productChanged">
        <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.oldProduct.id,
        name: this.oldProduct.name,
        quantity: this.oldProduct.quantity,
        cents: this.oldProduct.cents,
        imgPath: this.oldProduct.imgPath,
        description: this.oldProduct.description,
        categories: this.oldProduct.categories
      }
    };
  },
  props: {
    oldProduct: {
      type: Object,
      required: true
    }
  },
  computed: {
    productChanged() {
      return (
        this.newProduct.id != this.oldProduct.id ||
        this.newProduct.name != this.oldProduct.name ||
        this.newProduct.quantity != this.oldProduct.quantity ||
        this.newProduct.cents != this.oldProduct.cents ||
        this.newProduct.imgPath != this.oldProduct.imgPath ||
        this.newProduct.description != this.oldProduct.description ||
        this.newProduct.categories != this.oldProduct.categories
      );
    }
  },
  methods: {
    saveProduct() {
      this.$store.dispatch("updateProduct", this.newProduct);
    }
  }
};
</script>