view client/src/components/toolbar/Statistics.vue @ 3231:2dab20bed284

show_statistics: refac to fairwayavailability
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 10 May 2019 10:28:37 +0200
parents 4f4905b57fcf
children
line wrap: on
line source

<template>
  <div class="toolbar-button" v-tooltip.right="label">
    <font-awesome-icon
      @click="$store.commit('application/showFairwayDepth', !showFairwayDepth)"
      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>