view client/src/components/fairway/Infobar.vue @ 1558:0ded4c56978e

refac: component filestructure. remove admin/map hierarchy
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 12 Dec 2018 09:22:20 +0100
parents client/src/components/map/fairway/Infobar.vue@9b81ac91a43e
children a08e0f532304
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 h-100">
      <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="scss" scoped>
.infobar {
  height: 2.2rem;
  z-index: 2;
}

.infobar 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>