view client/src/morphtool/Morphtool.vue @ 1217:ba8cd80d68b6

made more use of bootstrap classes instead of custom css
author Markus Kottlaender <markus@intevation.de>
date Mon, 19 Nov 2018 15:20:22 +0100
parents 9d93968db2cd
children c14353e2cdb9
line wrap: on
line source

<template>
    <div class="mb-3 ml-auto rounded position-relative">
        <div v-if="selectedBottleneck && surveys && !selectedSurvey" class="ui-element bg-white rounded p-3 shadow">
            <h4 class="text-center mx-4">{{ selectedBottleneck }}</h4>
            <hr>
            <div
                @click="$store.dispatch('fairwayprofile/clearSelection');"
                class="ui-element d-flex morphtoolminus position-absolute"
            >
                <i class="fa fa-close p-2"></i>
            </div>
            <div>
                <div
                    v-for="survey of surveys"
                    :key="survey.data_info"
                    class="my-1"
                    @click.prevent="$store.commit('bottlenecks/setSelectedSurvey', survey)"
                >
                    <a href="#" @click.prevent>{{ survey.date_info }}</a>
                </div>
            </div>
        </div>
        <div v-if="selectedSurvey && !showSplitscreen" class="ui-element shadow morphtool rounded position-relative bg-white my-auto">
            <div class="d-flex flex-row justify-content-between">
                <h6 class="my-auto px-2">
                    {{ selectedBottleneck }}
                    ({{ selectedSurvey.date_info }})
                </h6>
                <i class="fa fa-angle-up py-2 px-2 border-left" @click="$store.commit('application/showSplitscreen', true)" v-if="Object.keys(currentProfile).length"></i>
                <i class="fa fa-close text-danger py-2 px-2 border-left" @click="$store.dispatch('fairwayprofile/clearSelection');"></i>
            </div>
        </div>
    </div>
</template>

<style scoped lang="sass">
.morphtool
  height: $icon-width
  z-index: 2

.morphtoolminus
  top: 0
  right: 0
  height: $icon-width
  width: $icon-height
  z-index: 2
</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>
 */
import { mapState, mapGetters } from "vuex";

export default {
  name: "morphtool",
  computed: {
    ...mapGetters("map", ["getLayerByName"]),
    ...mapState("map", ["openLayersMap", "cutTool"]),
    ...mapState("application", ["showSplitscreen"]),
    ...mapState("fairwayprofile", ["currentProfile"]),
    ...mapState("bottlenecks", [
      "selectedBottleneck",
      "surveys",
      "selectedSurvey"
    ])
  }
};
</script>