view client/src/store/imports.js @ 1257:d1114305a311

fixed Layers box style (to fit isoline legend)
author Markus Kottlaender <markus@intevation.de>
date Wed, 21 Nov 2018 12:38:39 +0100
parents 3035ddd3d1a8
children bc55ffaeb639
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 "../application/lib/http";

const Imports = {
  namespaced: true,
  state: {
    imports: {}
  },
  mutations: {
    setImports: (state, imports) => {
      state.imports = imports;
    }
  },
  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);
          });
      });
    }
  }
};

export default Imports;