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
|
import Vue from "vue";
import Vuex from "vuex";
import Dichroism from "@/api/dichroism.js";
Vue.use(Vuex);
let dichroism = new Dichroism();
export default new Vuex.Store({
state: {
searchTerm: "",
products: [],
busy: false,
compare: () => 0
},
getters: {
busy(state) {
return state.busy;
},
products(state) {
return state.products
.filter(item => {
return JSON.stringify(item)
.toLowerCase()
.includes(state.searchTerm.toLowerCase());
})
.sort(state.compare);
}
},
mutations: {
toggleBusy(state) {
state.busy = !state.busy;
},
compare(state, compare) {
state.compare = compare;
},
searchTerm(state, term) {
state.searchTerm = term;
},
setProducts(state, products) {
if (products) {
state.products = products;
}
}
},
actions: {
async refreshProducts({ commit }) {
commit("toggleBusy");
const products = await dichroism.getProducts();
commit("setProducts", products);
commit("toggleBusy");
},
async updateProduct({ commit, dispatch }, product) {
commit("toggleBusy");
await dichroism.updateProduct(product);
dispatch("refreshProducts");
commit("toggleBusy");
},
async createProduct({ commit, dispatch }, product) {
commit("toggleBusy");
await dichroism.createProduct(product);
dispatch("refreshProducts");
commit("toggleBusy");
},
async createPhotoSet({ commit }, file) {
commit("toggleBusy");
const photoSet = await dichroism.createPhoto(file);
commit("toggleBusy");
return photoSet;
}
},
modules: {}
});
|