view client/src/store/index.js @ 2384:c06b001dc26b

client: improved popup implementation For deleting users and templates there was a more or less quick n' dirty implementation of a confirmation dialog/popup. Since we need this kind of dialog in several more places I generalized the implementation a bit and made it more robust.
author Markus Kottlaender <markus@intevation.de>
date Mon, 25 Feb 2019 13:11:30 +0100
parents 431f97fd873b
children 1686ec185155
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>
 * Markus Kottländer <markus.kottlaender@intevation.de>
 */

import Vue from "vue";
import Vuex from "vuex";
import application from "./application";
import user from "./user";
import usermanagement from "./usermanagement";
import map from "./map";
import fairwayprofile from "./fairway";
import bottlenecks from "./bottlenecks";
import { imports } from "./imports";
import { importschedule } from "./importschedule";

Vue.use(Vuex);

export default new Vuex.Store({
  mutations: {
    reset() {
      this.replaceState({
        application: application.init(),
        fairwayprofile: fairwayprofile.init(),
        imports: imports.init(),
        importschedule: importschedule.init(),
        bottlenecks: bottlenecks.init(),
        map: map.init(),
        user: user.init(),
        usermanagement: usermanagement.init()
      });
    }
  },
  modules: {
    application,
    fairwayprofile,
    imports,
    importschedule,
    bottlenecks,
    map,
    user,
    usermanagement
  }
});