view client/src/components/toolbar/Gauges.vue @ 3553:869505c5087b

client: fairway profile: close compare view with ESC key also added a notice at the top of the screen that indicates when ESC key can be used to either cancel drawing (line, polygon, crosscut) or to close the compare split view for two sounding results
author Markus Kottlaender <markus@intevation.de>
date Fri, 31 May 2019 14:32:24 +0200
parents c0162cbb5775
children
line wrap: on
line source

<template>
  <div
    @click="$store.commit('application/showGauges', !showGauges)"
    class="toolbar-button"
    v-tooltip.right="label"
  >
    <font-awesome-icon
      icon="ruler-vertical"
      :class="{ 'text-info': showGauges }"
    />
  </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):
 * Markus Kottländer <markus.kottlaender@intevation.de>
 */
import { mapState } from "vuex";

export default {
  computed: {
    ...mapState("application", ["showGauges"]),
    label() {
      return this.$gettext("Gauges");
    }
  }
};
</script>