| Current Path : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/resources/js/store/modules/ |
| Current File : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/resources/js/store/modules/timeSlot.js |
import axios from "axios";
import appService from "../../services/appService";
export const timeSlot = {
namespaced: true,
state: {
lists: [],
page: {},
pagination: [],
show: {},
temp: {
temp_id: null,
isEditing: false,
},
},
getters: {
lists: function (state) {
return state.lists;
},
pagination: function (state) {
return state.pagination;
},
page: function (state) {
return state.page;
},
show: function (state) {
return state.show;
},
temp: function (state) {
return state.temp;
},
},
actions: {
lists: function (context, payload) {
return new Promise((resolve, reject) => {
let url = "admin/setting/time-slot";
if (payload) {
url = url + appService.requestHandler(payload);
}
axios
.get(url)
.then((res) => {
if (
typeof payload.vuex === "undefined" ||
payload.vuex === true
) {
context.commit("lists", res.data.data);
context.commit("page", res.data.meta);
context.commit("pagination", res.data);
}
resolve(res);
})
.catch((err) => {
reject(err);
});
});
},
save: function (context, payload) {
return new Promise((resolve, reject) => {
let method = axios.post;
let url = "/admin/setting/time-slot";
if (this.state["timeSlot"].temp.isEditing) {
method = axios.post;
url = `/admin/setting/time-slot/${this.state["timeSlot"].temp.temp_id}`;
}
method(url, payload.form)
.then((res) => {
context
.dispatch("lists", payload.search)
.then()
.catch();
context.commit("reset");
resolve(res);
})
.catch((err) => {
reject(err);
});
});
},
destroy: function (context, payload) {
return new Promise((resolve, reject) => {
axios
.delete(`admin/setting/time-slot/${payload.id}`)
.then((res) => {
context
.dispatch("lists", payload.search)
.then()
.catch();
resolve(res);
})
.catch((err) => {
reject(err);
});
});
},
reset: function (context) {
context.commit("reset");
},
},
mutations: {
lists: function (state, payload) {
state.lists = payload;
},
pagination: function (state, payload) {
state.pagination = payload;
},
page: function (state, payload) {
if (typeof payload !== "undefined" && payload !== null) {
state.page = {
from: payload.from,
to: payload.to,
total: payload.total,
};
}
},
show: function (state, payload) {
state.show = payload;
},
temp: function (state, payload) {
state.temp.temp_id = payload;
state.temp.isEditing = true;
},
reset: function (state) {
state.temp.temp_id = null;
state.temp.isEditing = false;
},
},
};