view client/src/components/ImportStretches.vue @ 1977:53c1383dfee3

define stretch: edit function prefills fields
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 23 Jan 2019 11:59:18 +0100
parents 9b9f1d164f26
children c8e2f6838eaf
line wrap: on
line source

<template>
  <div class="d-flex flex-column mb-3">
    <h6 class="mb-0 py-2 px-3 border-bottom d-flex align-items-center">
      <font-awesome-icon icon="road" class="mr-2"></font-awesome-icon>
      <translate>Define stretches</translate>
    </h6>
    <div v-if="!edit" class="mb-3 mr-3 ml-3 text-left">
      <table v-if="stretches.length > 0" class="table">
        <thead>
          <tr>
            <th class="header"><translate>Name</translate></th>
            <th class="header"><translate>Datum</translate></th>
            <th class="header"><translate>Source organization</translate></th>
            <th class="tools">&nbsp;</th>
            <th class="tools">&nbsp;</th>
          </tr>
        </thead>
        <tbody>
          <tr class="small" v-for="(stretch, index) in stretches" :key="index">
            <td class="">
              <a @click="moveMapToStretch(index)" href="#">{{
                stretch.properties.name
              }}</a>
            </td>
            <td class="">
              {{ formatSurveyDate(stretch.properties["date_info"]) }}
            </td>
            <td>{{ stretch.properties["source_organization"] }}</td>
            <td>
              <font-awesome-icon
                @click="editStretch(index)"
                icon="pencil-alt"
                fixed-width
              ></font-awesome-icon>
            </td>
            <td>
              <font-awesome-icon
                @click="deleteStretch(index)"
                icon="trash"
                fixed-width
              ></font-awesome-icon>
            </td>
          </tr>
        </tbody>
      </table>
      <div class="mt-3" v-if="stretches.length == 0">
        <translate>No results.</translate>
      </div>
    </div>
    <div v-if="edit">
      <div class="ml-3 mr-3">
        <div class="d-flex flex-row justify-content-between">
          <div class="mt-2 w-50 mr-2 text-left">
            <small class="text-muted"> <translate>ID</translate> </small>
            <input
              id="id"
              type="text"
              class="form-control"
              placeholder="AT_Section_12"
              aria-label="id"
              v-model="id"
            />
            <span class="text-left text-danger">
              <small v-if="idError && !id">
                <translate>Please enter an id</translate>
              </small>
            </span>
          </div>
          <div class="mt-2 w-50 ml-2 text-left">
            <div>
              <small class="text-muted">
                <translate>Countrycode</translate>
              </small>
              <input
                id="countryCode"
                type="text"
                class="form-control"
                placeholder="AT"
                aria-label="id"
                v-model="countryCode"
              />
              <span class="text-left text-danger">
                <small v-if="countryCodeError && !countryCode">
                  <translate>Please enter a countrycode </translate>
                </small>
              </span>
            </div>
            <div class="w-50 ml-2"></div>
          </div>
        </div>
        <div class="d-flex flex-column  justify-content-between">
          <div class="mt-2 text-left">
            <small class="text-muted"> <translate>Start rhm</translate> </small>
            <div class="d-flex flex-row">
              <input
                id="startrhm"
                type="text"
                class="form-control"
                placeholder="e.g. ATXXX00001000000019900"
                aria-label="startrhm"
                v-model="startrhm"
              />
              <span class="input-group-text">
                <font-awesome-icon
                  @click="togglePipette('start')"
                  :class="{ 'text-info': pipetteStart }"
                  icon="bullseye"
                ></font-awesome-icon>
              </span>
            </div>
            <span class="text-left text-danger">
              <small v-if="startrhmError && !startrhm">
                <translate>Please enter a start point</translate>
              </small>
            </span>
          </div>
          <div class="mt-2 text-left">
            <small class="text-muted"> <translate>End rhm</translate> </small>
            <div class="d-flex flex-row">
              <input
                id="endrhm"
                type="text"
                class="form-control"
                placeholder="e.g. ATXXX00001000000019900"
                aria-label="endrhm"
                v-model="endrhm"
              />
              <span class="input-group-text">
                <font-awesome-icon
                  @click="togglePipette('end')"
                  :class="{ 'text-info': pipetteEnd }"
                  icon="bullseye"
                ></font-awesome-icon>
              </span>
            </div>
            <span class="text-left text-danger">
              <small v-if="endrhmError && !endrhm">
                <translate>Please enter an end point</translate>
              </small>
            </span>
          </div>
          <span class="text-left text-danger">
            <small v-if="!pointsValid">
              <translate>Startpoint is not before endpoint.</translate>
            </small>
          </span>
        </div>
        <div class="d-flex flex-row justify-content-between">
          <div class="mt-2  mr-2 w-50  text-left">
            <small class="text-muted">
              <translate>Object name</translate>
            </small>
            <input
              id="objbn"
              type="text"
              class="form-control"
              placeholder=""
              aria-label="objbn"
              v-model="objbn"
            />
            <span class="text-left text-danger">
              <small v-if="objbnError && !objbn">
                <translate>Please enter an objectname</translate>
              </small>
            </span>
          </div>
          <div class="mt-2  ml-2 w-50  text-left">
            <small class="text-muted">
              <translate>National Object name</translate>
            </small>
            <input
              id="nobjbn"
              type="text"
              class="form-control"
              placeholder=""
              aria-label="nobjbn"
              v-model="nobjbn"
            />
            <span class="text-left text-danger">
              <small v-if="nobjbnError && !nobjbn">
                <translate>Please enter an objectname</translate>
              </small>
            </span>
          </div>
        </div>
        <div class="d-flex flex-row justify-content-between">
          <div class="mt-2 mr-2 w-50 text-left">
            <small class="text-muted"> <translate>Date info</translate> </small>
            <input
              id="date_info"
              type="date"
              class="form-control"
              placeholder="date_info"
              aria-label="date_info"
              v-model="date_info"
            />
            <span class="text-left text-danger">
              <small v-if="date_infoError && !date_info">
                <translate>Please enter a date</translate>
              </small>
            </span>
          </div>
          <div class="mt-2 ml-2 w-50 text-left">
            <small class="text-muted"> <translate>Source</translate> </small>
            <input
              id="source"
              type="text"
              class="form-control"
              placeholder="source"
              aria-label="source"
              v-model="source"
            />
            <span class="text-left text-danger">
              <small v-if="sourceError && !source">
                <translate>Please enter a source</translate>
              </small>
            </span>
          </div>
        </div>
      </div>
      <div class="text-right mt-2 mr-3 mb-3">
        <button @click="edit = false" class="btn btn-warning mr-2">Back</button>
        <button
          @click="save"
          type="submit"
          class="shadow-sm btn btn-info submit-button"
        >
          <translate>Submit</translate>
        </button>
      </div>
    </div>
    <div class="text-right mr-3">
      <button v-if="!edit" @click="startEdit()" class="btn btn-info">
        <translate>New stretch</translate>
      </button>
    </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>
 */
import { mapState, mapGetters } from "vuex";
import { displayError, displayInfo } from "@/lib/errors.js";
import { formatSurveyDate } from "@/lib/date.js";
import center from "@turf/center";

export default {
  name: "importstretches",
  data() {
    return {
      edit: false,
      id: "",
      funktion: "",
      startrhm: "",
      endrhm: "",
      objbn: "",
      nobjbn: "",
      countryCode: "",
      date_info: new Date().toISOString().split("T")[0],
      source: "",
      pipetteStart: false,
      pipetteEnd: false,
      idError: false,
      funktionError: false,
      startrhmError: false,
      endrhmError: false,
      objbnError: false,
      nobjbnError: false,
      date_infoError: false,
      sourceError: false,
      countryCodeError: false
    };
  },
  mounted() {
    this.edit = false;
    this.loadStretches();
  },
  methods: {
    editStretch(index) {
      const properties = this.stretches[index].properties;
      this.date_info = properties.date_info.split("T")[0];
      this.id = properties.name;
      this.nobjbn = properties.nobjnam;
      this.objbn = properties.objnam;
      this.countryCode = properties.countries;
      this.source = properties["source_organization"];
      this.edit = true;
      this.startrhm = this.sanitizeRHM(properties.lower);
      this.endrhm = this.sanitizeRHM(properties.upper);
    },
    deleteStretch(index) {
      displayInfo({
        title: this.$gettext("Not implemented"),
        message: this.$gettext("Deleting " + this.stretches[index].id)
      });
    },
    moveMapToStretch(index) {
      const { coordinates } = center(this.stretches[index]).geometry;
      this.$store.commit("map/moveMap", {
        coordinates: coordinates,
        zoom: 17,
        preventZoomOut: true
      });
    },
    formatSurveyDate(d) {
      return formatSurveyDate(d);
    },
    loadStretches() {
      this.$store.dispatch("imports/loadStretches").catch(error => {
        const { status, data } = error.response;
        displayError({
          title: this.$gettext("Backend Error"),
          message: `${status}: ${data.message || data}`
        });
      });
    },
    clean() {
      this.id = "";
      this.funktion = "";
      this.startrhm = "";
      this.endrhm = "";
      this.objbn = "";
      this.nobjbn = "";
      this.countryCode = "";
      this.date_info = new Date().toISOString().split("T")[0];
      this.source = "";
      this.pipetteStart = false;
      this.pipetteEnd = false;
      this.idError = false;
      this.funktionError = false;
      this.startrhmError = false;
      this.endrhmError = false;
      this.objbnError = false;
      this.nobjbnError = false;
      this.date_infoError = false;
      this.sourceError = false;
      this.countryCodeError = false;
    },
    startEdit() {
      this.clean();
      this.edit = true;
    },
    togglePipette(t) {
      if (t === "start") {
        this.pipetteStart = !this.pipetteStart;
        this.pipetteEnd = false;
      } else {
        this.pipetteEnd = !this.pipetteEnd;
        this.pipetteStart = false;
      }
    },
    validate() {
      const fields = [
        "id",
        "funktion",
        "startrhm",
        "endrhm",
        "objbn",
        "nobjbn",
        "countryCode",
        "date_info",
        "source"
      ];
      fields.forEach(field => {
        if (!this[field]) {
          this[field + "Error"] = true;
        } else {
          this[field + "Error"] = false;
        }
      });
    },
    save() {
      this.validate();
      if (!this.pointsValid) return;
      if (
        !this.id ||
        !this.startrhm ||
        !this.endrhm ||
        !this.source ||
        !this.date_info ||
        !this.objbn ||
        !this.nobjbn ||
        !this.countryCode
      )
        return;
      const data = {
        name: this.id,
        from: this.startrhm,
        to: this.endrhm,
        "source-organization": this.source,
        "date-info": this.date_info,
        objnam: this.objbn,
        nobjnam: this.nobjbn,
        countries: this.countryCode.split(",").map(x => {
          return x.trim();
        })
      };
      this.$store
        .dispatch("imports/saveStretch", data)
        .then(() => {
          displayInfo({
            title: this.$gettext("Import"),
            message: this.$gettext("Starting import of stretch")
          });
          this.clean();
          this.edit = false;
          this.loadStretches();
        })
        .catch(error => {
          console.log(error);
          const { status, data } = error.response;
          displayError({
            title: this.$gettext("Backend Error"),
            message: `${status}: ${data.message || data}`
          });
        });
    },
    sanitizeRHM(rhm) {
      return rhm.replace(/,|\(|\)/g, "");
    }
  },
  watch: {
    identifiedFeatures() {
      const filterDistanceMarks = x => {
        return /^distance_marks/.test(x["id_"]);
      };
      console.log(this.identifiedFeatures);
      const distanceMark = this.identifiedFeatures.filter(filterDistanceMarks);
      if (distanceMark.length > 0) {
        const value = this.sanitizeRHM(distanceMark[0]["id_"].split(".")[1]);
        this.startrhm = this.pipetteStart ? value : this.startrhm;
        this.endrhm = this.pipetteEnd ? value : this.endrhm;
        this.pipetteStart = false;
        this.pipetteEnd = false;
      }
    }
  },
  computed: {
    ...mapState("map", ["identifiedFeatures", "currentMeasurement"]),
    ...mapGetters("user", ["isSysAdmin"]),
    ...mapState("imports", ["stretches"]),
    pointsValid() {
      if (!this.startrhm || !this.endrhm) return true;
      const start = this.startrhm.replace(/\D+/, "") * 1;
      const end = this.endrhm.replace(/\D+/, "") * 1;
      const result = start < end;
      return result;
    }
  }
};
</script>

<style lang="scss" scoped></style>