comparison client/src/store.js @ 1142:dc3f0277628a

feat: Importqueue listing (Proof of concept) This is only a prototypical overview of importqueue data from backend. Uses GET to retrieve an overview of imports. Shows in separate tables. Further concept needs to be developed to progress..
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 12 Nov 2018 15:00:04 +0100
parents 8d12056d602a
children
comparison
equal deleted inserted replaced
1138:443fc80a315f 1142:dc3f0277628a
1 /* 1 /*
2 * This is Free Software under GNU Affero General Public License v >= 3.0 2 * This is Free Software under GNU Affero General Public License v >= 3.0
3 * without warranty, see README.md and license for details. 3 * without warranty, see README.md and license for details.
4 * 4 *
5 * SPDX-License-Identifier: AGPL-3.0-or-later 5 * SPDX-License-Identifier: AGPL-3.0-or-later
6 * License-Filename: LICENSES/AGPL-3.0.txt 6 * License-Filename: LICENSES/AGPL-3.0.txt
7 * 7 *
8 * Copyright (C) 2018 by via donau 8 * Copyright (C) 2018 by via donau
9 * – Österreichische Wasserstraßen-Gesellschaft mbH 9 * – Österreichische Wasserstraßen-Gesellschaft mbH
10 * Software engineering by Intevation GmbH 10 * Software engineering by Intevation GmbH
11 * 11 *
12 * Author(s): 12 * Author(s):
13 * Thomas Junk <thomas.junk@intevation.de> 13 * Thomas Junk <thomas.junk@intevation.de>
14 * Markus Kottländer <markus.kottlaender@intevation.de> 14 * Markus Kottländer <markus.kottlaender@intevation.de>
15 */ 15 */
16 16
20 import user from "./store/user"; 20 import user from "./store/user";
21 import usermanagement from "./store/usermanagement"; 21 import usermanagement from "./store/usermanagement";
22 import map from "./store/map"; 22 import map from "./store/map";
23 import fairwayprofile from "./store/fairway"; 23 import fairwayprofile from "./store/fairway";
24 import bottlenecks from "./store/bottlenecks"; 24 import bottlenecks from "./store/bottlenecks";
25 import imports from "./store/imports";
25 26
26 Vue.use(Vuex); 27 Vue.use(Vuex);
27 28
28 export default new Vuex.Store({ 29 export default new Vuex.Store({
29 modules: { 30 modules: {
30 application, 31 application,
31 fairwayprofile, 32 fairwayprofile,
33 imports,
32 bottlenecks, 34 bottlenecks,
33 map, 35 map,
34 user, 36 user,
35 usermanagement 37 usermanagement
36 } 38 }