view client/src/components/App.vue @ 3204:1253fe15e3e3

client: identify: implemented popup when clicking the map and the intention is not clear... ...because multiple features were identified. In that case no dialog will be opened automatically but a popup with possible options is shown.
author Markus Kottlaender <markus@intevation.de>
date Wed, 08 May 2019 17:10:17 +0200
parents 77fc44ad05e3
children 9a02b770c2e6
line wrap: on
line source

<template>
  <div id="app" class="main">
    <div v-if="isAuthenticated" class="d-flex flex-column userinterface">
      <div class="boxes d-flex p-2">
        <div class="mr-auto d-flex">
          <Sidebar />
          <div :class="searchContainer">
            <Search v-if="isMapVisible" />
            <Contextbox v-if="isMapVisible" />
          </div>
        </div>
        <div class="ml-auto d-flex">
          <div class="d-flex flex-column align-items-end">
            <Profiles v-if="isMapVisible" />
            <Gauges v-if="isMapVisible" />
            <Pdftool v-if="isMapVisible" />
            <Statistics v-if="isMapVisible" />
          </div>
          <div class="d-flex flex-column align-items-end">
            <Identify v-if="isMapVisible" />
            <Layers v-if="isMapVisible" />
          </div>
          <Toolbar v-if="isMapVisible" />
        </div>
      </div>
      <MapPopup />
    </div>
    <router-view />
    <vue-snotify />
    <Popup />
  </div>
</template>

<style lang="sass" scoped>
#app
  height: 100%
  width: 100%
  font-family: "Avenir", Helvetica, Arial, sans-serif
  -webkit-font-smoothing: antialiased
  -moz-osx-font-smoothing: grayscale
  text-align: center
  color: #2c3e50

  .userinterface
    position: absolute
    top: 0
    left: 0
    right: 0
    bottom: 0
    z-index: 4
    pointer-events: none

    .boxes
      position: relative
      z-index: 10
</style>

<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>
 * Markus Kottländer <markus.kottlaender@intevation.de>
 */
import { mapState } from "vuex";

export default {
  name: "app",
  computed: {
    ...mapState("user", ["isAuthenticated"]),
    ...mapState("application", ["contextBoxContent", "showSearchbar"]),
    isMapVisible() {
      return /importconfiguration|importoverview|stretches|review|bottlenecks|mainview/.test(
        this.$route.name
      );
    },
    searchContainer() {
      return [
        "ml-2",
        {
          wide: this.showSearchbar
        }
      ];
    }
  },
  components: {
    Profiles: () => import("./fairway/Profiles"),
    Gauges: () => import("./gauge/Gauges"),
    Pdftool: () => import("./Pdftool"),
    Identify: () => import("./identify/Identify"),
    Layers: () => import("./layers/Layers"),
    Sidebar: () => import("./Sidebar"),
    Search: () => import("./Search"),
    Contextbox: () => import("./Contextbox"),
    Toolbar: () => import("./toolbar/Toolbar"),
    Popup: () => import("./Popup"),
    Statistics: () => import("./Statistics"),
    MapPopup: () => import("./map/MapPopup")
  }
};
</script>