annotate client/src/components/importoverview/SoundingResultDetail.vue @ 5267:aca4bf7af270

client: remove mapState from import statement
author Fadi Abbud <fadi.abbud@intevation.de>
date Wed, 10 Jun 2020 16:33:10 +0200
parents 8c0f2377ff47
children 3b842e951317
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2602
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
1 <template>
2608
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
2 <div>
4407
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
3 <a v-if="isSR" @click="zoomTo()" class="text-info pointer">
2685
39a05f8c34e6 import_overview: Refactoring of detailed information.
Thomas Junk <thomas.junk@intevation.de>
parents: 2608
diff changeset
4 {{ details.summary.bottleneck }}
2608
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
5 </a>
4407
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
6 <div class="d-flex flex-column" v-if="isDSR">
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
7 <span>
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
8 <translate>Bottleneck: </translate>
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
9 {{ details.summary["bottleneck-id"] }}
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
10 </span>
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
11 <span>
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
12 <translate>Survey from: </translate>
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
13 {{ details.summary["date-info"] | surveyDate }}
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
14 </span>
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
15 </div>
2608
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
16 </div>
2602
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
17 </template>
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
18
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
19 <script>
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
20 /* This is Free Software under GNU Affero General Public License v >= 3.0
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
21 * without warranty, see README.md and license for details.
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
22 *
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
23 * SPDX-License-Identifier: AGPL-3.0-or-later
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
24 * License-Filename: LICENSES/AGPL-3.0.txt
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
25 *
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
26 * Copyright (C) 2018 by via donau
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
27 * – Österreichische Wasserstraßen-Gesellschaft mbH
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
28 * Software engineering by Intevation GmbH
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
29 *
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
30 * Author(s):
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
31 * Thomas Junk <thomas.junk@intevation.de>
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
32 */
2732
0ab7985ef008 import_review: fixed flakey display of logs
Thomas Junk <thomas.junk@intevation.de>
parents: 2717
diff changeset
33 import { mapState } from "vuex";
0ab7985ef008 import_review: fixed flakey display of logs
Thomas Junk <thomas.junk@intevation.de>
parents: 2717
diff changeset
34
2602
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
35 export default {
2608
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
36 name: "soundingresultdetails",
2732
0ab7985ef008 import_review: fixed flakey display of logs
Thomas Junk <thomas.junk@intevation.de>
parents: 2717
diff changeset
37 props: ["entry"],
2717
5b990f612420 import_review: rename overview to review. More space for logs
Thomas Junk <thomas.junk@intevation.de>
parents: 2685
diff changeset
38 mounted() {
5b990f612420 import_review: rename overview to review. More space for logs
Thomas Junk <thomas.junk@intevation.de>
parents: 2685
diff changeset
39 this.$store.commit("imports/hideAdditionalInfo");
5b990f612420 import_review: rename overview to review. More space for logs
Thomas Junk <thomas.junk@intevation.de>
parents: 2685
diff changeset
40 },
2732
0ab7985ef008 import_review: fixed flakey display of logs
Thomas Junk <thomas.junk@intevation.de>
parents: 2717
diff changeset
41 computed: {
4407
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
42 ...mapState("imports", ["showAdditional", "details"]),
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
43 isSR() {
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
44 return this.entry.kind.toUpperCase() === "SR";
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
45 },
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
46 isDSR() {
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
47 return this.entry.kind.toUpperCase() === "DSR";
8c0f2377ff47 import_overview: DSR review details added
Thomas Junk <thomas.junk@intevation.de>
parents: 3044
diff changeset
48 }
2732
0ab7985ef008 import_review: fixed flakey display of logs
Thomas Junk <thomas.junk@intevation.de>
parents: 2717
diff changeset
49 },
2608
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
50 methods: {
3017
9a408a8b74b8 client: inlined some functions that were used only once
Markus Kottlaender <markus@intevation.de>
parents: 2927
diff changeset
51 zoomTo() {
9a408a8b74b8 client: inlined some functions that were used only once
Markus Kottlaender <markus@intevation.de>
parents: 2927
diff changeset
52 const { lat, lon, bottleneck, date } = this.details.summary;
3044
c71373594719 client: map: prepared store to hold multiple map objects
Markus Kottlaender <markus@intevation.de>
parents: 3017
diff changeset
53 this.$store.dispatch("map/moveMap", {
3017
9a408a8b74b8 client: inlined some functions that were used only once
Markus Kottlaender <markus@intevation.de>
parents: 2927
diff changeset
54 coordinates: [lat, lon],
2608
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
55 zoom: 17,
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
56 preventZoomOut: true
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
57 });
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
58 this.$store
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
59 .dispatch("bottlenecks/setSelectedBottleneck", bottleneck)
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
60 .then(() => {
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
61 this.$store.commit("bottlenecks/setSelectedSurveyByDate", date);
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
62 });
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
63 }
13377f2a5c42 overview2: agm details prototype implemented
Thomas Junk <thomas.junk@intevation.de>
parents: 2602
diff changeset
64 }
2602
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
65 };
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
66 </script>
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
67
5d0e5159190f overview2: detail components for unified log
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
68 <style></style>