annotate client/src/components/toolbar/Toolbar.vue @ 3140:91556825d95c

client: implement geting templates from backend for waterlevel diagram
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 02 May 2019 12:59:52 +0200
parents 18ab67c7241a
children 4f4905b57fcf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
1 <template>
2534
bb5286acfee2 client: reduced spacings between and inside boxes and more compact main menu
Markus Kottlaender <markus@intevation.de>
parents: 2355
diff changeset
2 <div class="ml-1">
1480
9b81ac91a43e fix: linting
Thomas Junk <thomas.junk@intevation.de>
parents: 1449
diff changeset
3 <div
9b81ac91a43e fix: linting
Thomas Junk <thomas.junk@intevation.de>
parents: 1449
diff changeset
4 :class="
9b81ac91a43e fix: linting
Thomas Junk <thomas.junk@intevation.de>
parents: 1449
diff changeset
5 'rounded-top toolbar toolbar-' +
9b81ac91a43e fix: linting
Thomas Junk <thomas.junk@intevation.de>
parents: 1449
diff changeset
6 (expandToolbar ? 'expanded' : 'collapsed')
9b81ac91a43e fix: linting
Thomas Junk <thomas.junk@intevation.de>
parents: 1449
diff changeset
7 "
9b81ac91a43e fix: linting
Thomas Junk <thomas.junk@intevation.de>
parents: 1449
diff changeset
8 >
2940
601797a85a86 client: toolbar: merged pointer class into toolbar-button class
Markus Kottlaender <markus@intevation.de>
parents: 2919
diff changeset
9 <Identify />
601797a85a86 client: toolbar: merged pointer class into toolbar-button class
Markus Kottlaender <markus@intevation.de>
parents: 2919
diff changeset
10 <Layers />
601797a85a86 client: toolbar: merged pointer class into toolbar-button class
Markus Kottlaender <markus@intevation.de>
parents: 2919
diff changeset
11 <Profiles />
601797a85a86 client: toolbar: merged pointer class into toolbar-button class
Markus Kottlaender <markus@intevation.de>
parents: 2919
diff changeset
12 <Gauges />
601797a85a86 client: toolbar: merged pointer class into toolbar-button class
Markus Kottlaender <markus@intevation.de>
parents: 2919
diff changeset
13 <Linetool />
601797a85a86 client: toolbar: merged pointer class into toolbar-button class
Markus Kottlaender <markus@intevation.de>
parents: 2919
diff changeset
14 <Polygontool />
601797a85a86 client: toolbar: merged pointer class into toolbar-button class
Markus Kottlaender <markus@intevation.de>
parents: 2919
diff changeset
15 <Pdftool />
1436
59c9dbb26bb0 moved toolbar toggle button to bottom
Markus Kottlaender <markus@intevation.de>
parents: 1435
diff changeset
16 </div>
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
17 <div
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
18 @click="$store.commit('application/expandToolbar', !expandToolbar)"
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
19 class="toolbar-button toolbar-toggle rounded-bottom bg-info text-white"
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
20 >
1480
9b81ac91a43e fix: linting
Thomas Junk <thomas.junk@intevation.de>
parents: 1449
diff changeset
21 <font-awesome-icon
2154
a08e0f532304 staging: improve UI
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
22 class="pointer"
1480
9b81ac91a43e fix: linting
Thomas Junk <thomas.junk@intevation.de>
parents: 1449
diff changeset
23 :icon="expandToolbar ? 'angle-up' : 'angle-down'"
2919
6c5364ff0abb client: removed a lot of unnecessary closing tags
Markus Kottlaender <markus@intevation.de>
parents: 2596
diff changeset
24 />
1436
59c9dbb26bb0 moved toolbar toggle button to bottom
Markus Kottlaender <markus@intevation.de>
parents: 1435
diff changeset
25 </div>
1419
24b7f71c4406 made toolbar toggler a bit smaller and stay in one position
Markus Kottlaender <markus@intevation.de>
parents: 1414
diff changeset
26 </div>
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
27 </template>
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
28
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
29 <style lang="scss">
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
30 // not scoped to affect nested components
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
31 // doen't work when put in application/assets/application.sass... why??? o_O
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
32 .toolbar {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
33 box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.2);
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
34 overflow: hidden;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
35 transition: max-height 0.4s;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
36 margin-bottom: auto;
2940
601797a85a86 client: toolbar: merged pointer class into toolbar-button class
Markus Kottlaender <markus@intevation.de>
parents: 2919
diff changeset
37 cursor: pointer;
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
38 }
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
39
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
40 .toolbar-collapsed {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
41 max-height: 6rem;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
42 }
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
43
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
44 .toolbar-expanded {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
45 max-height: 100%;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
46 }
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
47
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
48 .toolbar-button {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
49 opacity: 0.96;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
50 color: #666;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
51 height: 2rem;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
52 width: 2rem;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
53 align-items: center;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
54 justify-content: center;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
55 display: flex;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
56 background: #fff;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
57 border-bottom: 1px solid #dee2e6;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
58 z-index: 2;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
59 pointer-events: auto;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
60 position: relative;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
61 overflow: hidden;
3028
188fb0133e50 client: panes: moved pane controls to toolbar
Markus Kottlaender <markus@intevation.de>
parents: 3006
diff changeset
62 &.disabled {
188fb0133e50 client: panes: moved pane controls to toolbar
Markus Kottlaender <markus@intevation.de>
parents: 3006
diff changeset
63 color: #ccc;
188fb0133e50 client: panes: moved pane controls to toolbar
Markus Kottlaender <markus@intevation.de>
parents: 3006
diff changeset
64 cursor: default;
188fb0133e50 client: panes: moved pane controls to toolbar
Markus Kottlaender <markus@intevation.de>
parents: 3006
diff changeset
65 }
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
66 }
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
67
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
68 .toolbar-button:last-child {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
69 border-bottom: none;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
70 }
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
71
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
72 .toolbar-button .inverted {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
73 color: #17a2b8;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
74 }
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
75
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
76 .toolbar-button .grey {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
77 color: #ddd;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
78 }
1419
24b7f71c4406 made toolbar toggler a bit smaller and stay in one position
Markus Kottlaender <markus@intevation.de>
parents: 1414
diff changeset
79
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
80 .toolbar-button .indicator {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
81 color: #fff;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
82 background: #17a2b8;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
83 position: absolute;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
84 bottom: -14px;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
85 left: -14px;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
86 padding: 2px 4px 1px;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
87 font-size: 11px;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
88 line-height: 11px;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
89 border-top-right-radius: 0.25rem;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
90 transition: bottom 0.3s, left 0.3s;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
91 }
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
92
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
93 .toolbar-button .indicator.show {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
94 left: 0;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
95 bottom: 0;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
96 }
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
97
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
98 .toolbar-toggle {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
99 height: 1.2rem;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
100 border-bottom: none;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1436
diff changeset
101 }
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
102 </style>
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
103
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
104 <script>
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
105 /* This is Free Software under GNU Affero General Public License v >= 3.0
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
106 * without warranty, see README.md and license for details.
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
107 *
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
108 * SPDX-License-Identifier: AGPL-3.0-or-later
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
109 * License-Filename: LICENSES/AGPL-3.0.txt
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
110 *
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
111 * Copyright (C) 2018 by via donau
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
112 * – Österreichische Wasserstraßen-Gesellschaft mbH
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
113 * Software engineering by Intevation GmbH
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
114 *
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
115 * Author(s):
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
116 * Markus Kottländer <markus.kottlaender@intevation.de>
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
117 */
3062
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
118 import { mapState } from "vuex";
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
119
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
120 export default {
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
121 name: "toolbar",
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
122 components: {
2985
1b8bb4f89227 client: removed .js and .vue extention from imports
Markus Kottlaender <markus@intevation.de>
parents: 2957
diff changeset
123 Identify: () => import("./Identify"),
1b8bb4f89227 client: removed .js and .vue extention from imports
Markus Kottlaender <markus@intevation.de>
parents: 2957
diff changeset
124 Layers: () => import("./Layers"),
1b8bb4f89227 client: removed .js and .vue extention from imports
Markus Kottlaender <markus@intevation.de>
parents: 2957
diff changeset
125 Linetool: () => import("./Linetool"),
1b8bb4f89227 client: removed .js and .vue extention from imports
Markus Kottlaender <markus@intevation.de>
parents: 2957
diff changeset
126 Polygontool: () => import("./Polygontool"),
1b8bb4f89227 client: removed .js and .vue extention from imports
Markus Kottlaender <markus@intevation.de>
parents: 2957
diff changeset
127 Profiles: () => import("./Profiles"),
1b8bb4f89227 client: removed .js and .vue extention from imports
Markus Kottlaender <markus@intevation.de>
parents: 2957
diff changeset
128 Gauges: () => import("./Gauges"),
1b8bb4f89227 client: removed .js and .vue extention from imports
Markus Kottlaender <markus@intevation.de>
parents: 2957
diff changeset
129 Pdftool: () => import("./Pdftool")
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
130 },
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
131 computed: {
3062
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
132 ...mapState("map", ["openLayersMaps"]),
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
133 ...mapState("application", ["expandToolbar"])
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
134 },
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
135 mounted() {
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
136 window.addEventListener("keydown", e => {
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
137 // Escape
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
138 if (e.keyCode === 27) {
3062
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
139 this.$store.commit("map/lineToolEnabled", false);
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
140 this.$store.commit("map/polygonToolEnabled", false);
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
141 this.$store.commit("map/cutToolEnabled", false);
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
142 this.$store.commit("map/setCurrentMeasurement", null);
3062
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
143 this.openLayersMaps.forEach(m => {
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
144 m.getLayer("DRAWTOOL")
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
145 .getSource()
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
146 .clear();
87e0422cffa7 client: draw/cut tools work now with multiple maps
Markus Kottlaender <markus@intevation.de>
parents: 3051
diff changeset
147 });
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
148 }
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
149 });
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
150 }
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
151 };
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
152 </script>