summaryrefslogblamecommitdiff
path: root/iridescence/src/store/index.js
blob: 78ee20b559cde23e2dd695a7ed8963e437b0ed43 (plain) (tree)
1
2
3
4
5
6
7
8
9

                        
                                           


              
                                
 
                               
          
                   
                 
                
                                 

            


                        
                     






                                                      


              


                               


                              
                             
                              

                                  


                                  


            

                                       
                                                     

                                      
      
                                                        
                           

                                             
                           
      
                                                        
                           

                                             






                                                         
     
    

             
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: (_, b) => b.featured
  },
  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: {}
});