view client/src/components/importoverview/SoundingResultDetail.vue @ 4488:bff6c5c1db4f

client: pdf-gen: improve adding bottleneck info to pdf * Check if the bottleneck is in the current view to add its info to the exported pdf and the pdf filename, this avoid wrong filename and wrong info in pdf in case view has been changed to another location. * Set the bottleneck to print after moving to it in map.
author Fadi Abbud <fadi.abbud@intevation.de>
date Fri, 27 Sep 2019 11:15:02 +0200
parents 8c0f2377ff47
children 3b842e951317
line wrap: on
line source

<template>
  <div>
    <a v-if="isSR" @click="zoomTo()" class="text-info pointer">
      {{ details.summary.bottleneck }}
    </a>
    <div class="d-flex flex-column" v-if="isDSR">
      <span>
        <translate>Bottleneck: </translate>
        {{ details.summary["bottleneck-id"] }}
      </span>
      <span>
        <translate>Survey from: </translate>
        {{ details.summary["date-info"] | surveyDate }}
      </span>
    </div>
  </div>
</template>

<script>
/* 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 { mapState } from "vuex";

export default {
  name: "soundingresultdetails",
  props: ["entry"],
  mounted() {
    this.$store.commit("imports/hideAdditionalInfo");
  },
  computed: {
    ...mapState("imports", ["showAdditional", "details"]),
    isSR() {
      return this.entry.kind.toUpperCase() === "SR";
    },
    isDSR() {
      return this.entry.kind.toUpperCase() === "DSR";
    }
  },
  methods: {
    zoomTo() {
      const { lat, lon, bottleneck, date } = this.details.summary;
      this.$store.dispatch("map/moveMap", {
        coordinates: [lat, lon],
        zoom: 17,
        preventZoomOut: true
      });
      this.$store
        .dispatch("bottlenecks/setSelectedBottleneck", bottleneck)
        .then(() => {
          this.$store.commit("bottlenecks/setSelectedSurveyByDate", date);
        });
    }
  }
};
</script>

<style></style>