changeset 1378:68bf92edafe1

removed old file
author Markus Kottlaender <markus@intevation.de>
date Tue, 27 Nov 2018 14:14:12 +0100
parents fa7d647f8d77
children da44c669c9f5
files client/src/components/map/fairway/Surveys.vue
diffstat 1 files changed, 0 insertions(+), 56 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/map/fairway/Surveys.vue	Tue Nov 27 13:29:10 2018 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,56 +0,0 @@
-<template>
-  <div
-    class="box expanded ui-element rounded bg-white ml-auto mr-3 mb-3 text-nowrap"
-    v-if="selectedBottleneck && surveys && !selectedSurvey"
-  >
-    <div style="width: 15rem">
-      <h6 class="mb-0 py-2 px-3 border-bottom d-flex align-items-center">
-        {{ selectedBottleneck }}
-        <font-awesome-icon
-          icon="times"
-          class="ml-auto text-muted"
-          @click="$store.dispatch('fairwayprofile/clearSelection')"
-        ></font-awesome-icon>
-      </h6>
-      <div class="p-3">
-        <div
-          v-for="(survey, i) of surveys"
-          :key="survey.data_info"
-          :class="{ 'mt-1': i }"
-          @click.prevent="$store.commit('bottlenecks/setSelectedSurvey', survey)"
-        >
-          <a href="#" @click.prevent>{{ survey.date_info }}</a>
-        </div>
-      </div>
-    </div>
-  </div>
-</template>
-
-<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: "surveys",
-  computed: {
-    ...mapState("bottlenecks", [
-      "selectedBottleneck",
-      "surveys",
-      "selectedSurvey"
-    ])
-  }
-};
-</script>