view client/src/components/toolbar/Statistics.vue @ 3212:f87fd173f750

client: waterlevel diagrams: fixed tooltip bug Bug was caused by selecting elements by css class instead of id (when multiple diagrams are displayed).
author Markus Kottlaender <markus@intevation.de>
date Thu, 09 May 2019 10:34:09 +0200
parents 4f4905b57fcf
children 2dab20bed284
line wrap: on
line source

<template>
  <div class="toolbar-button" v-tooltip.right="label">
    <font-awesome-icon
      @click="$store.commit('application/showStatistics', !showStatistics)"
      icon="chart-line"
      :class="{ 'text-info': showStatistics }"
    />
  </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", ["showStatistics"]),
    label() {
      return this.$gettext("Statistics");
    }
  }
};
</script>