view client/src/components/importschedule/importtypes/Distancemarksvirtual.vue @ 2455:54c9fe587fe6

Subdivide SQL function to prepare for improved error handling The context of an error (e.g. the function in which it occured) can be inferred by the database client. Not doing all in one statement will render the context more meaningful.
author Tom Gottfried <tom@intevation.de>
date Fri, 01 Mar 2019 18:38:02 +0100
parents 88376de7efbd
children 6c5364ff0abb
line wrap: on
line source

<template>
  <div>
    <div class="d-flex flex-row">
      <div class="flex-column mt-3 mr-3 w-100">
        <div class="flex-row text-left">
          <small class="text-muted"> <translate>URL</translate> </small>
        </div>
        <div class="w-100">
          <input
            @input="urlChanged"
            class="url form-control"
            type="url"
            :value="url"
          />
        </div>
      </div>
    </div>
    <div v-if="!url" class="d-flex flex-row">
      <small
        ><translate class="text-danger">Please enter a URL</translate></small
      >
    </div>
    <div class="d-flex flex-row">
      <div class="flex-column mt-3 mr-3 w-50">
        <div class="flex-row text-left">
          <small class="text-muted"> <translate>Username</translate> </small>
        </div>
        <div class="w-100">
          <input
            @input="usernameChanged"
            class="username form-control"
            type="text"
            :value="username"
          />
        </div>
        <div v-if="!username" class="d-flex flex-row">
          <small
            ><translate class="text-danger"
              >Please enter a Username</translate
            ></small
          >
        </div>
      </div>
      <div class="flex-column mt-3 w-50">
        <div class="flex-row text-left">
          <small class="text-muted"> <translate>Password</translate> </small>
        </div>
        <div class="w-100 d-flex flex-row">
          <input
            @input="passwordChanged"
            class="pasword form-control"
            :type="showPassword"
            :value="password"
          />
          <span
            class="input-group-text ml-2"
            @click="passwordVisible = !passwordVisible"
          >
            <font-awesome-icon
              :icon="passwordVisible ? 'eye-slash' : 'eye'"
            ></font-awesome-icon>
          </span>
        </div>
        <div v-if="!password" class="d-flex flex-row">
          <small
            ><translate class="text-danger"
              >Please enter a Password</translate
            ></small
          >
        </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>
 */
export default {
  name: "distancemarksvirtual",
  props: ["url", "username", "password"],
  data() {
    return {
      passwordVisible: false
    };
  },
  computed: {
    showPassword() {
      if (this.passwordVisible) return "text";
      return "password";
    }
  },
  methods: {
    urlChanged(e) {
      this.$emit("urlChanged", e.target.value);
    },
    usernameChanged(e) {
      this.$emit("usernameChanged", e.target.value);
    },
    passwordChanged(e) {
      this.$emit("passwordChanged", e.target.value);
    }
  }
};
</script>

<style></style>