Before any necessary adjustments
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const state = () => ({ | |
// Items | |
items: [], | |
itemCount: null, | |
itemsRemaining: true, | |
}); | |
export const mutations = { | |
// Items | |
ADD_ITEM(state, item) { | |
state.items.push(item); | |
}, | |
ADD_NEW_ITEM(state, item) { | |
state.items.unshift(item); | |
}, | |
ADJUST_ITEMS_REMAINING(state, count) { | |
state.itemsRemaining = count; | |
}, | |
DELETE_ITEM(state, payload) { | |
const item = state.items.find(item => item._id === payload._id); | |
state.items.splice(state.items.indexOf(item), 1); | |
}, | |
EDIT_ITEM(state, payload) { | |
const item = state.items.find(item => item._id === payload._id); | |
state.items.splice(state.items.indexOf(item), 1, payload); | |
}, | |
SEARCH_ITEMS(state, items) { | |
state.items = items; | |
}, | |
SET_ITEMS(state, items) { | |
state.items = items; | |
}, | |
SET_ITEMS_COUNT(state, itemCount) { | |
state.itemCount = itemCount; | |
}, | |
}; | |
export const actions = { | |
// Items | |
async addItem({ commit, dispatch, state }, payload) { | |
dispatch("triggerBusyState"); | |
try { | |
let data = { | |
name: payload.name, | |
media: payload.media, | |
content: payload.content, | |
sourceCategory: payload.sourceCategory, | |
sourceIdentifier: payload.sourceIdentifier | |
}; | |
const newItem = await fetch("/.netlify/functions/add-item", { | |
method: "POST", | |
body: JSON.stringify(data) | |
}).then(res => res.json()); | |
commit("ADD_NEW_ITEM", newItem); | |
dispatch("stopBusyState"); | |
return newItem; | |
} catch (err) { | |
console.log(err); | |
} | |
dispatch("stopBusyState"); | |
}, | |
async deleteItem({ commit, dispatch, state }, payload) { | |
dispatch("triggerBusyState"); | |
try { | |
let data = { | |
ID: payload.ID, | |
media: payload.media | |
}; | |
const deletedItem = await fetch("/.netlify/functions/delete-item", { | |
method: "PUT", | |
body: JSON.stringify(data) | |
}).then(res => res.json()); | |
commit("DELETE_ITEM", deletedItem); | |
dispatch("stopBusyState"); | |
return deletedItem; | |
} catch (err) { | |
console.log(err); | |
} | |
dispatch("stopBusyState"); | |
}, | |
async editItem({ commit, dispatch, state }, payload) { | |
dispatch("triggerBusyState"); | |
try { | |
let data = { | |
ID: payload.ID, | |
name: payload.name, | |
content: payload.content | |
}; | |
const editedItem = await fetch("/.netlify/functions/edit-item", { | |
method: "POST", | |
body: JSON.stringify(data) | |
}).then(res => res.json()); | |
if (editedItem.matchedCount && editedItem.modifiedCount) { | |
dispatch("REFRESH_ITEM", payload.ID); | |
} else { | |
// Error | |
} | |
commit("endBusyState"); | |
return editedItem; | |
} catch (err) { | |
console.log(err); | |
} | |
commit("endBusyState"); | |
}, | |
async getAdditionalItems({ commit, dispatch }, payload) { | |
dispatch("triggerBusyState"); | |
let data = { | |
skip: payload | |
}; | |
try { | |
const response = await fetch("/.netlify/functions/all-items", { | |
method: "POST", | |
body: JSON.stringify(data) | |
}).then(res => res.json()); | |
const items = response[0]; | |
if (items.length > 0) { | |
items.forEach(item => { | |
commit("ADD_ITEM", item); | |
}); | |
} else { | |
commit("ADJUST_ITEMS_REMAINING", false); | |
} | |
} catch (err) { | |
console.log(err); | |
} | |
dispatch("stopBusyState"); | |
}, | |
async getItems({ commit, dispatch }, payload) { | |
dispatch("triggerBusyState"); | |
let data = { | |
skip: payload | |
}; | |
try { | |
const response = await fetch("/.netlify/functions/all-items", { | |
method: "POST", | |
body: JSON.stringify(data) | |
}).then(res => res.json()); | |
commit("SET_ITEMS", response[0]); | |
commit("SET_ITEMS_COUNT", response[1]); | |
if (response[0].length < 1) { | |
commit("ADJUST_ITEMS_REMAINING", false); | |
} | |
} catch (err) { | |
console.log(err); | |
} | |
dispatch("stopBusyState"); | |
}, | |
async refreshItem({ commit }, id) { | |
try { | |
const refreshedItem = await fetch("/.netlify/functions/refresh-item", { | |
method: "POST", | |
body: JSON.stringify(id) | |
}).then(res => res.json()); | |
commit("EDIT_ITEM", refreshedItem); | |
} catch (err) { | |
console.log(err); | |
} | |
}, | |
async searchItems({ commit, dispatch }, payload) { | |
dispatch("triggerBusyState"); | |
try { | |
let data = { | |
searchTerms: payload | |
}; | |
let items = await fetch("/.netlify/functions/find-items", { | |
method: "POST", | |
body: JSON.stringify(data) | |
}).then(res => res.json()); | |
commit("SEARCH_ITEMS", items); | |
} catch (err) { | |
console.log(err); | |
} | |
dispatch("stopBusyState"); | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment