view client/src/components/map/fairway/Infobar.vue @ 1299:2738a6ae9ad8

fontawesome 4 -> 5 An icon was not displayed on a specific system/environment. No clue why... good moment to switch to version 5 of fontawesome
author Markus Kottlaender <markus@intevation.de>
date Fri, 23 Nov 2018 10:24:29 +0100
parents bc55ffaeb639
children 541a5488f0e7
line wrap: on
line source

<template>
    <div v-if="selectedSurvey && !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)"
                v-if="Object.keys(currentProfile).length"
            >
                <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
  z-index: 2
  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>