280 lines
12 KiB
Svelte
280 lines
12 KiB
Svelte
<script>
|
|
import { _ } from "svelte-i18n";
|
|
import { clickOutside } from "../base/outsideclick";
|
|
import { focusTrap } from "svelte-focus-trap";
|
|
import { RunnerOrganizationService } from "@odit/lfk-client-js";
|
|
import Toastify from "toastify-js";
|
|
export let modal_open;
|
|
export let current_organizations;
|
|
let name_input_dom;
|
|
function focus(el) {
|
|
el.focus();
|
|
}
|
|
$: name = "";
|
|
$: processed_last_submit = true;
|
|
$: isOrgnameValid = name.trim().length !== 0;
|
|
$: isAddress1Valid = address_input1_value.trim().length !== 0;
|
|
$: iszipcodevalid = address_zipcode_value.trim().length !== 0;
|
|
$: iscityvalid = address_city_value.trim().length !== 0;
|
|
$: createbtnenabled =
|
|
isOrgnameValid &&
|
|
((isAddress1Valid && iszipcodevalid && iscityvalid) ||
|
|
address_checked === false);
|
|
$: address_input1_value = "";
|
|
$: address_input2_value = "";
|
|
$: address_zipcode_value = "";
|
|
$: address_city_value = "";
|
|
$: address_checked = true;
|
|
|
|
let address_input1;
|
|
let address_input2;
|
|
let address_zipcode;
|
|
let address_city;
|
|
|
|
(() => {
|
|
document.onkeydown = (e) => {
|
|
e = e || window.event;
|
|
if (e.key === "Escape") {
|
|
modal_open = false;
|
|
}
|
|
if (e.keyCode === 13) {
|
|
if (createbtnenabled === true) {
|
|
createbtnenabled = false;
|
|
submit();
|
|
}
|
|
}
|
|
};
|
|
})();
|
|
function submit() {
|
|
if (processed_last_submit === true) {
|
|
processed_last_submit = false;
|
|
const toast = Toastify({
|
|
text: $_("organization-is-being-added"),
|
|
duration: -1,
|
|
}).showToast();
|
|
let address = {};
|
|
if (address_checked === true) {
|
|
address = {
|
|
address1: address_input1_value,
|
|
address2: address_input2_value || "",
|
|
postalcode: address_zipcode_value,
|
|
city: address_city_value,
|
|
country: "DE",
|
|
};
|
|
}
|
|
RunnerOrganizationService.runnerOrganizationControllerPost({
|
|
name,
|
|
address: address,
|
|
contact: undefined,
|
|
})
|
|
.then((result) => {
|
|
name = "";
|
|
modal_open = false;
|
|
Toastify({
|
|
text: $_("organization-added"),
|
|
duration: 500,
|
|
backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
|
|
}).showToast();
|
|
current_organizations = current_organizations.concat([result]);
|
|
})
|
|
.catch((err) => {})
|
|
.finally(() => {
|
|
processed_last_submit = true;
|
|
toast.hideToast();
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
|
|
{#if modal_open}
|
|
<div
|
|
class="fixed z-10 inset-0 overflow-y-auto"
|
|
use:focusTrap
|
|
use:clickOutside
|
|
on:click_outside={() => {
|
|
modal_open = false;
|
|
}}>
|
|
<div
|
|
class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
|
|
<div class="fixed inset-0 transition-opacity" aria-hidden="true">
|
|
<div
|
|
class="absolute inset-0 bg-gray-500 opacity-75"
|
|
data-id="modal_backdrop" />
|
|
</div>
|
|
<span
|
|
class="hidden sm:inline-block sm:align-middle sm:h-screen"
|
|
aria-hidden="true">​</span>
|
|
<div
|
|
class="inline-block align-bottom bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full"
|
|
role="dialog"
|
|
aria-modal="true"
|
|
aria-labelledby="modal-headline">
|
|
<div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
|
|
<div class="sm:flex sm:items-start">
|
|
<div
|
|
class="mx-auto flex-shrink-0 flex items-center justify-center h-12 w-12 rounded-full bg-blue-100 sm:mx-0 sm:h-10 sm:w-10">
|
|
<svg
|
|
class="h-6 w-6 text-blue-600"
|
|
fill="currentColor"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
height="24"><path
|
|
d="M17 19h2v-8h-6v8h2v-6h2v6zM3 19V4a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v5h2v10h1v2H2v-2h1zm4-8v2h2v-2H7zm0 4v2h2v-2H7zm0-8v2h2V7H7z" /></svg>
|
|
</div>
|
|
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
|
|
<h3 class="text-lg leading-6 font-medium text-gray-900">
|
|
{$_('create-a-new-organization')}
|
|
</h3>
|
|
<div class="mt-2 mb-6">
|
|
<p class="text-sm text-gray-500">
|
|
{$_('please-provide-the-required-information-to-add-a-new-organization')}
|
|
</p>
|
|
</div>
|
|
<div class="grid grid-cols-6 gap-6">
|
|
<div class="col-span-6">
|
|
<label
|
|
for="firstname"
|
|
class="block text-sm font-medium text-gray-700">{$_('name')}</label>
|
|
<input
|
|
use:focus
|
|
autocomplete="off"
|
|
placeholder={$_('name')}
|
|
class:border-red-500={!isOrgnameValid}
|
|
class:focus:border-red-500={!isOrgnameValid}
|
|
class:focus:ring-red-500={!isOrgnameValid}
|
|
bind:value={name}
|
|
bind:this={name_input_dom}
|
|
type="text"
|
|
name="firstname"
|
|
class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm rounded-l-md sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" />
|
|
{#if !isOrgnameValid}
|
|
<span
|
|
class="flex items-center font-medium tracking-wide text-red-500 text-xs mt-1 ml-1">
|
|
{$_('organization-name-is-required')}
|
|
</span>
|
|
{/if}
|
|
</div>
|
|
<div class="flex items-start">
|
|
<div class="flex items-center h-5">
|
|
<input
|
|
bind:checked={address_checked}
|
|
id="comments"
|
|
name="comments"
|
|
type="checkbox"
|
|
class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded" />
|
|
</div>
|
|
<div class="ml-3 text-sm">
|
|
<label
|
|
for="comments"
|
|
class="font-medium text-gray-700">{$_('address')}</label>
|
|
</div>
|
|
</div>
|
|
{#if address_checked === true}
|
|
<div class="col-span-6">
|
|
<label
|
|
for="address1"
|
|
class="block text-sm font-medium text-gray-700">{$_('address')}</label>
|
|
<input
|
|
autocomplete="off"
|
|
placeholder="{$_('address')}"
|
|
class:border-red-500={!isAddress1Valid}
|
|
class:focus:border-red-500={!isAddress1Valid}
|
|
class:focus:ring-red-500={!isAddress1Valid}
|
|
bind:value={address_input1_value}
|
|
bind:this={address_input1}
|
|
type="text"
|
|
name="address1"
|
|
class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm rounded-l-md sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" />
|
|
{#if !isAddress1Valid}
|
|
<span
|
|
class="flex items-center font-medium tracking-wide text-red-500 text-xs mt-1 ml-1">
|
|
{$_('address-is-required')}
|
|
</span>
|
|
{/if}
|
|
</div>
|
|
<div class="col-span-6">
|
|
<label
|
|
for="address2"
|
|
class="block text-sm font-medium text-gray-700">{$_('apartment-suite-etc')}</label>
|
|
<input
|
|
autocomplete="off"
|
|
placeholder="{$_('apartment-suite-etc')}"
|
|
bind:value={address_input2_value}
|
|
bind:this={address_input2}
|
|
type="text"
|
|
name="address2"
|
|
class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm rounded-l-md sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" />
|
|
</div>
|
|
<div class="col-span-6">
|
|
<label
|
|
for="zipcode"
|
|
class="block text-sm font-medium text-gray-700">{$_('zip-postal-code')}</label>
|
|
<input
|
|
autocomplete="off"
|
|
placeholder="{$_('zip-postal-code')}"
|
|
class:border-red-500={!iszipcodevalid}
|
|
class:focus:border-red-500={!iszipcodevalid}
|
|
class:focus:ring-red-500={!iszipcodevalid}
|
|
bind:value={address_zipcode_value}
|
|
bind:this={address_zipcode}
|
|
type="text"
|
|
name="zipcode"
|
|
class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm rounded-l-md sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" />
|
|
{#if !iszipcodevalid}
|
|
<span
|
|
class="flex items-center font-medium tracking-wide text-red-500 text-xs mt-1 ml-1">
|
|
{$_('valid-zipcode-postal-code-is-required')}
|
|
</span>
|
|
{/if}
|
|
</div>
|
|
<div class="col-span-6">
|
|
<label
|
|
for="city"
|
|
class="block text-sm font-medium text-gray-700">{$_('city')}</label>
|
|
<input
|
|
autocomplete="off"
|
|
placeholder="{$_('city')}"
|
|
class:border-red-500={!iscityvalid}
|
|
class:focus:border-red-500={!iscityvalid}
|
|
class:focus:ring-red-500={!iscityvalid}
|
|
bind:value={address_city_value}
|
|
bind:this={address_city}
|
|
type="text"
|
|
name="city"
|
|
class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm rounded-l-md sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" />
|
|
{#if !iscityvalid}
|
|
<span
|
|
class="flex items-center font-medium tracking-wide text-red-500 text-xs mt-1 ml-1">
|
|
{$_('valid-city-is-required')}
|
|
</span>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="bg-gray-50 px-4 py-3 sm:px-6 sm:flex sm:flex-row-reverse">
|
|
<button
|
|
disabled={!createbtnenabled}
|
|
class:opacity-50={!createbtnenabled}
|
|
on:click={submit}
|
|
type="button"
|
|
class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-600 text-base font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 sm:ml-3 sm:w-auto sm:text-sm">
|
|
{$_('create')}
|
|
</button>
|
|
<button
|
|
on:click={() => {
|
|
modal_open = false;
|
|
}}
|
|
type="button"
|
|
class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm">
|
|
{$_('cancel')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|