view client/src/components/toolbar/AvailableFairwayDepth.vue @ 5736:55892008ec96 default tip

Fixed a bunch of corner cases in WG import.
author Sascha Wilde <wilde@sha-bang.de>
date Wed, 29 May 2024 19:02:42 +0200
parents 91a3f6835f3d
children
line wrap: on
line source

<template>
  <div
    class="toolbar-button"
    v-tooltip.right="label"
    @click="$store.commit('application/showFairwayDepth', !showFairwayDepth)"
  >
    <font-awesome-icon
      icon="chart-line"
      :class="{ 'text-info': showFairwayDepth }"
    />
  </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>
 * Thomas Junk <thomas.junk@intevation.de>
 */
import { mapState } from "vuex";

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