view client/src/store/imports.js @ 1311:d5eda9f79610

staging: display visual feedback for now due missing backendcall
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 23 Nov 2018 13:52:34 +0100
parents d675e6439aa5
children eda98694e678 ca33ad696594
line wrap: on
line source

/*
 * This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 */

import { HTTP } from "../lib/http";

/* eslint-disable no-unused-vars */
/* eslint-disable no-unreachable */
const STATES = {
  NEEDSAPPROVAL: "NEEDSAPPROVAL",
  APPROVED: "APPROVED",
  REJECTED: "REJECTED"
};

// initial state
const init = () => {
  return {
    imports: [],
    staging: []
  };
};

export default {
  init,
  namespaced: true,
  state: init(),
  mutations: {
    setImports: (state, imports) => {
      state.imports = imports;
    },
    setStaging: (state, staging) => {
      state.staging = staging;
    },

    toggleApproval: (state, change) => {
      throw "Not implemented!";
      const { id, newState } = change;
      const stagedResult = this.state.staging.find(e => {
        return e.id === id;
      });
      if (stagedResult.status === newState) {
        stagedResult.status = this.$options.STATES.NEEDSAPPROVAL;
      } else {
        stagedResult.status = newState;
      }
    }
  },
  actions: {
    getImports({ commit }) {
      return new Promise((resolve, reject) => {
        HTTP.get("/imports", {
          headers: { "X-Gemma-Auth": localStorage.getItem("token") }
        })
          .then(response => {
            commit("setImports", response.data.imports);
            resolve(response);
          })
          .catch(error => {
            reject(error);
          });
      });
    },
    getStaging({ commit }) {
      return new Promise((resolve, reject) => {
        HTTP.get("/imports?states=pending", {
          headers: { "X-Gemma-Auth": localStorage.getItem("token") }
        })
          .then(response => {
            commit("setStaging", response.data.imports);
            resolve(response);
          })
          .catch(error => {
            reject(error);
          });
      });
    },
    setStaging({ commit }, results) {
      return new Promise((resolve, reject) => {
        throw "Not implemented!";
        HTTP.get("/imports?states=pending", {
          headers: { "X-Gemma-Auth": localStorage.getItem("token") }
        })
          .then(response => {
            commit("setStaging", response.data.imports);
            resolve(response);
          })
          .catch(error => {
            reject(error);
          });
      });
    }
  }
};