view client/src/components/importconfiguration/types/ApprovedGaugeMeasurement.vue @ 5629:84d01a536bec 729-node-js-newer-version

Transformed scss and sass styles into css
author Luisa Beerboom <lbeerboom@intevation.de>
date Thu, 11 May 2023 13:23:52 +0200
parents 6b054b91d9b2
children
line wrap: on
line source

<template>
  <div>
    <div class="d-flex px-2">
      <div :key="1" class="flex-column mr-4">
        <div class="flex-row text-left">
          <small class="text-muted">
            <translate>Email Notification</translate>
          </small>
        </div>
        <div class="flex-flex-row text-left">
          <toggle-button
            v-model="eMailNotification"
            class="mt-2"
            :speed="100"
            :labels="{
              checked: this.$options.on,
              unchecked: this.$options.off
            }"
            :width="60"
            :height="30"
          />
        </div>
      </div>
      <div class="d-flex flex-column text-left w-25">
        <label class="text-nowrap" for="originator">
          <small class="text-muted"
            >{{ $options.ORIGINATOR }} / {{ $options.FROM }}</small
          >
        </label>
        <input
          type="text"
          v-model="originator"
          class="form-control form-control-sm"
          id="originator"
        />
        <span class="text-left text-danger">
          <small v-if="!originator">
            <translate>Please enter an originator</translate>
          </small>
        </span>
      </div>
    </div>
    <div class="mt-4 flex-column px-2 w-100">
      <div class="custom-file">
        <input
          accept=".csv"
          type="file"
          @change="fileSelected"
          class="custom-file-input"
          id="uploadFile"
        />
        <label class="pointer custom-file-label" for="uploadFile">
          {{ uploadLabel }}
        </label>
      </div>
    </div>
    <div class="d-flex w-100 mt-3 border-top justify-content-between p-2">
      <button :key="1" @click="back()" class="btn btn-sm btn-warning">
        Back
      </button>
      <button
        :key="2"
        type="submit"
        @click="submit"
        class="btn btn-sm btn-info"
      >
        <translate>Submit</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 { HTTP } from "@/lib/http";
import { displayError, displayInfo } from "@/lib/errors";
import app from "@/main";

export default {
  name: "importapprovedgaugemeasurements",
  data() {
    return {
      disableUploadButton: false,
      uploadLabel: this.$gettext("choose file to upload"),
      uploadFile: null,
      originator: "viadonau",
      eMailNotification: false
    };
  },
  computed: {
    importGaugmeasurmentLabel() {
      return this.$gettext("Import approved gaugemeasurements");
    }
  },
  methods: {
    back() {
      this.uploadLabel = this.$gettext("choose file to upload");
      this.uploadFile = null;
      this.originator = "viadonau";
      this.$store.commit("importschedule/setListMode");
    },
    fileSelected(e) {
      const files = e.target.files || e.dataTransfer.files;
      if (!files) return;
      this.uploadLabel = files[0].name;
      this.uploadFile = files[0];
    },
    submit() {
      if (!this.originator || !this.uploadFile) return;
      let formData = new FormData();
      formData.append("agm", this.uploadFile);
      formData.append("originator", this.originator);
      if (this.eMailNotification) {
        formData.append("send-email", this.eMailNotification);
      }
      HTTP.post("/imports/agm", formData, {
        headers: {
          "X-Gemma-Auth": localStorage.getItem("token"),
          "Content-Type": "multipart/form-data"
        }
      })
        .then(() => {
          displayInfo({
            title: this.$gettext("Import"),
            message: this.$gettext(
              "Starting import of Approved Gauge Measurements"
            )
          });
          this.back();
        })
        .catch(error => {
          let message = "Backend not reachable";
          if (error.response) {
            const { status, data } = error.response;
            message = `${status}: ${data.message || data}`;
          }
          displayError({
            title: this.$gettext("Backend Error"),
            message: message
          });
        });
    }
  },
  ORIGINATOR: app.$gettext("originator"),
  FROM: app.$gettext("from"),
  on: "on",
  off: "off"
};
</script>

<style scoped></style>