view client/src/components/map/fairway/Infobar.vue @ 1372:553aadd97087

new cross profile workflow (WIP) Needs fixing of some bugs and not so nice looks.
author Markus Kottlaender <markus@intevation.de>
date Tue, 27 Nov 2018 12:59:26 +0100
parents ca33ad696594
children 6b100f639178
line wrap: on
line source

<template>
  <div
    v-if="Object.keys(currentProfile).length && !showSplitscreen"
    class="ui-element shadow-xs infobar rounded bg-white ml-auto mb-3 mr-3"
  >
    <div class="d-flex flex-row justify-content-between">
      <h6 class="my-auto px-2">
        {{ selectedBottleneck }}
        ({{ selectedSurvey.date_info }})
      </h6>
      <span
        class="p-2 border-left d-flex align-items-center"
        @click="$store.commit('application/showSplitscreen', true)"
      >
        <font-awesome-icon icon="angle-up"></font-awesome-icon>
      </span>
      <span
        class="p-2 border-left d-flex align-items-center"
        @click="$store.dispatch('fairwayprofile/clearSelection')"
      >
        <font-awesome-icon icon="times"></font-awesome-icon>
      </span>
    </div>
  </div>
</template>

<style lang="sass" scoped>
.infobar
  height: $icon-height + 0.2rem
  z-index: 2
  border-top: solid 3px $color-info
  svg path
    fill: #666
</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):
 * Markus Kottländer <markus.kottlaender@intevation.de>
 */
import { mapState } from "vuex";

export default {
  name: "infobar",
  computed: {
    ...mapState("application", ["showSplitscreen"]),
    ...mapState("fairwayprofile", ["currentProfile"]),
    ...mapState("bottlenecks", ["selectedBottleneck", "selectedSurvey"])
  }
};
</script>