|
@@ -1,56 +0,0 @@
|
|
|
-/* eslint no-param-reassign: 0 */
|
|
|
-
|
|
|
-const state = {
|
|
|
- activeJobs: [],
|
|
|
- removedJobIds: []
|
|
|
-};
|
|
|
-
|
|
|
-const getters = {};
|
|
|
-
|
|
|
-const actions = {
|
|
|
- setJob: ({ commit }, job) => commit("setJob", job),
|
|
|
- setJobs: ({ commit }, jobs) => commit("setJobs", jobs),
|
|
|
- removeJob: ({ commit }, job) => commit("removeJob", job)
|
|
|
-};
|
|
|
-
|
|
|
-const mutations = {
|
|
|
- setJob(state, { id, name, status, message }) {
|
|
|
- if (state.removedJobIds.indexOf(id) === -1)
|
|
|
- if (!state.activeJobs.find(activeJob => activeJob.id === id))
|
|
|
- state.activeJobs.push({
|
|
|
- id,
|
|
|
- name,
|
|
|
- status,
|
|
|
- message
|
|
|
- });
|
|
|
- else
|
|
|
- state.activeJobs.forEach((activeJob, index) => {
|
|
|
- if (activeJob.id === id) {
|
|
|
- state.activeJobs[index] = {
|
|
|
- ...state.activeJobs[index],
|
|
|
- status,
|
|
|
- message
|
|
|
- };
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
- setJobs(state, jobs) {
|
|
|
- state.activeJobs = jobs;
|
|
|
- },
|
|
|
- removeJob(state, jobId) {
|
|
|
- state.activeJobs.forEach((activeJob, index) => {
|
|
|
- if (activeJob.id === jobId) {
|
|
|
- state.activeJobs.splice(index, 1);
|
|
|
- state.removedJobIds.push(jobId);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-export default {
|
|
|
- namespaced: true,
|
|
|
- state,
|
|
|
- getters,
|
|
|
- actions,
|
|
|
- mutations
|
|
|
-};
|