view client/src/components/importschedule/Fairwaydimensions.vue @ 1992:29f02d0043a9 importschedulerefac

split imports out
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 23 Jan 2019 16:50:33 +0100
parents
children
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 v-model="url" class="form-control" type="url" />
        </div>
      </div>
      <div v-if="false" class="flex-column mt-3 text-left">
        <div class="d-flex flex-row">
          <small class="text-muted mr-2"
            ><translate>Insecure</translate>
          </small>
        </div>
        <div class="d-flex flex-row">
          <toggle-button
            v-model="insecure"
            class="mt-2"
            :speed="100"
            :color="{
              checked: '#FF0000',
              unchecked: '#E9ECEF',
              disabled: '#CCCCCC'
            }"
            :labels="{
              checked: this.$options.on,
              unchecked: this.$options.off
            }"
            :width="60"
            :height="30"
          />
        </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>Featuretype</translate> </small>
        </div>
        <div class="w-100">
          <input v-model="featureType" class="form-control" type="text" />
        </div>
        <div v-if="!featureType" class="d-flex flex-row">
          <small
            ><translate class="text-danger"
              >Please enter a Featuretype</translate
            ></small
          >
        </div>
      </div>
      <div class="flex-column mt-3 w-50">
        <div class="flex-row text-left">
          <small class="text-muted"> <translate>SortBy</translate> </small>
        </div>
        <div class="w-100">
          <input v-model="sortBy" class="form-control" type="text" />
        </div>
        <div v-if="!sortBy" class="d-flex flex-row">
          <small
            ><translate class="text-danger"
              >Please enter SortBy</translate
            ></small
          >
        </div>
      </div>
    </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>LOS</translate> </small>
        </div>
        <div class="w-100">
          <select v-model="LOS" class="form-control">
            <option value="1">1</option>
            <option value="2">2</option>
            <option value="3">3</option>
          </select>
        </div>
        <div v-if="!LOS" class="d-flex flex-row">
          <small
            ><translate class="text-danger"
              >Please enter a level of service</translate
            ></small
          >
        </div>
      </div>
      <div class="flex-column mt-3 w-50">
        <div class="flex-row text-left">
          <small class="text-muted"> <translate>Depth</translate> </small>
        </div>
        <div class="d-flex flex-row">
          <input v-model="depth" class="form-control" type="number" />
          <div class="ml-2 my-auto">cm</div>
        </div>
        <div v-if="!depth" class="d-flex flex-row">
          <small
            ><translate class="text-danger"
              >Please enter a depth</translate
            ></small
          >
        </div>
      </div>
    </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>MinWidth</translate> </small>
        </div>
        <div class="d-flex flex-row">
          <input v-model="minWidth" class="form-control" type="number" />
          <div class="ml-2 my-auto">&nbsp;m</div>
        </div>
        <div v-if="!minWidth" class="d-flex flex-row">
          <small
            ><translate class="text-danger"
              >Please enter a minimum width</translate
            ></small
          >
        </div>
      </div>
      <div class="flex-column mt-3 w-50">
        <div class="flex-row text-left">
          <small class="text-muted"> <translate>MaxWidth</translate> </small>
        </div>
        <div class="d-flex flex-row">
          <input v-model="maxWidth" class="form-control" type="number" />
          <div class="ml-2 my-auto">&nbsp;m</div>
        </div>
        <div v-if="!maxWidth" class="d-flex flex-row">
          <small
            ><translate class="text-danger"
              >Please enter a maximum width</translate
            ></small
          >
        </div>
      </div>
    </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>Source orgranization</translate>
          </small>
        </div>
        <div class="w-100">
          <input
            v-model="sourceOrganization"
            class="form-control"
            type="text"
          />
        </div>
        <div v-if="!sourceOrganization" class="d-flex flex-row">
          <small
            ><translate class="text-danger"
              >Please enter a source orgranization</translate
            ></small
          >
        </div>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  name: "fairwaydimensions"
};
</script>

<style></style>