formatting, full migration to svelte-french-toast
This commit is contained in:
		@@ -8,9 +8,8 @@
 | 
			
		||||
    RunnerService,
 | 
			
		||||
  } from "@odit/lfk-client-js";
 | 
			
		||||
  import Select from "svelte-select";
 | 
			
		||||
  import Toastify from "toastify-js";
 | 
			
		||||
  import { is_promise } from "svelte/internal";
 | 
			
		||||
  import { createEventDispatcher } from "svelte";
 | 
			
		||||
  import toast from "svelte-french-toast";
 | 
			
		||||
  export let modal_open;
 | 
			
		||||
  const dispatch = createEventDispatcher();
 | 
			
		||||
  const getDonorLabel = (option) =>
 | 
			
		||||
@@ -18,9 +17,6 @@
 | 
			
		||||
  const filterDonors = (label, filterText, option) =>
 | 
			
		||||
    label.toLowerCase().includes(filterText.toLowerCase()) ||
 | 
			
		||||
    option.value.id.toString().startsWith(filterText.toLowerCase());
 | 
			
		||||
  function focus(el) {
 | 
			
		||||
    el.focus();
 | 
			
		||||
  }
 | 
			
		||||
  $: donor = 0;
 | 
			
		||||
  $: runner = 0;
 | 
			
		||||
  $: donors = [];
 | 
			
		||||
@@ -59,10 +55,7 @@
 | 
			
		||||
    if (processed_last_submit === true) {
 | 
			
		||||
      let amount_cent = Math.floor(amount_input * 100);
 | 
			
		||||
      processed_last_submit = false;
 | 
			
		||||
      const toast = Toastify({
 | 
			
		||||
        text: $_("adding-donation"),
 | 
			
		||||
        duration: -1,
 | 
			
		||||
      }).showToast();
 | 
			
		||||
      toast.loading($_("adding-donation"));
 | 
			
		||||
      if (is_fixed) {
 | 
			
		||||
        let postdata = {
 | 
			
		||||
          donor,
 | 
			
		||||
@@ -79,11 +72,8 @@
 | 
			
		||||
            amount_input = 0;
 | 
			
		||||
            modal_open = false;
 | 
			
		||||
            //
 | 
			
		||||
            Toastify({
 | 
			
		||||
              text: $_("donation_added"),
 | 
			
		||||
              duration: 500,
 | 
			
		||||
              backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
 | 
			
		||||
            }).showToast();
 | 
			
		||||
            toast.dismiss();
 | 
			
		||||
            toast.success($_("donation_added"));
 | 
			
		||||
            dispatch("created", { donations: [result] });
 | 
			
		||||
          })
 | 
			
		||||
          .catch((err) => {
 | 
			
		||||
@@ -91,8 +81,6 @@
 | 
			
		||||
          })
 | 
			
		||||
          .finally(() => {
 | 
			
		||||
            processed_last_submit = true;
 | 
			
		||||
            //
 | 
			
		||||
            toast.hideToast();
 | 
			
		||||
          });
 | 
			
		||||
      } else {
 | 
			
		||||
        let postdata = {
 | 
			
		||||
@@ -107,11 +95,7 @@
 | 
			
		||||
            amount_input = 0;
 | 
			
		||||
            modal_open = false;
 | 
			
		||||
            //
 | 
			
		||||
            Toastify({
 | 
			
		||||
              text: $_("donation_added"),
 | 
			
		||||
              duration: 500,
 | 
			
		||||
              backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
 | 
			
		||||
            }).showToast();
 | 
			
		||||
            toast.success($_("donation_added"));
 | 
			
		||||
            dispatch("created", { donations: [result] });
 | 
			
		||||
          })
 | 
			
		||||
          .catch((err) => {
 | 
			
		||||
@@ -119,8 +103,6 @@
 | 
			
		||||
          })
 | 
			
		||||
          .finally(() => {
 | 
			
		||||
            processed_last_submit = true;
 | 
			
		||||
            //
 | 
			
		||||
            toast.hideToast();
 | 
			
		||||
          });
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -1,18 +1,14 @@
 | 
			
		||||
<script>
 | 
			
		||||
  import { _ } from "svelte-i18n";
 | 
			
		||||
  import { clickOutside } from "../base/outsideclick";
 | 
			
		||||
 | 
			
		||||
  import { DonationService } from "@odit/lfk-client-js";
 | 
			
		||||
  import Toastify from "toastify-js";
 | 
			
		||||
  import { createEventDispatcher } from "svelte";
 | 
			
		||||
  import toast from "svelte-french-toast";
 | 
			
		||||
  export let payment_modal_open = false;
 | 
			
		||||
  export let original_data = {};
 | 
			
		||||
  export let paid_amount_input = 0;
 | 
			
		||||
  const dispatch = createEventDispatcher();
 | 
			
		||||
  $: processed_last_submit = true;
 | 
			
		||||
  function focus(el) {
 | 
			
		||||
    el.focus();
 | 
			
		||||
  }
 | 
			
		||||
  $: createbtnenabled =
 | 
			
		||||
    is_paid_amount_valid &&
 | 
			
		||||
    !(paid_amount_input * 100 == original_data.paidAmount);
 | 
			
		||||
@@ -34,10 +30,7 @@
 | 
			
		||||
  function submit() {
 | 
			
		||||
    if (processed_last_submit === true) {
 | 
			
		||||
      processed_last_submit = false;
 | 
			
		||||
      const toast = Toastify({
 | 
			
		||||
        text: $_("updating-donation"),
 | 
			
		||||
        duration: -1,
 | 
			
		||||
      }).showToast();
 | 
			
		||||
      toast.loading($_("updating-donation"));
 | 
			
		||||
      const editable = Object.assign({}, original_data);
 | 
			
		||||
      editable.donor = editable.donor.id;
 | 
			
		||||
      editable.paidAmount = paid_amount_input * 100;
 | 
			
		||||
@@ -50,11 +43,9 @@
 | 
			
		||||
          .then((result) => {
 | 
			
		||||
            payment_modal_open = false;
 | 
			
		||||
            //
 | 
			
		||||
            Toastify({
 | 
			
		||||
              text: $_("donation-updated"),
 | 
			
		||||
              duration: 500,
 | 
			
		||||
              backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
 | 
			
		||||
            }).showToast();
 | 
			
		||||
            toast.dismiss();
 | 
			
		||||
 | 
			
		||||
            toast.success($_("donation-updated"));
 | 
			
		||||
            dispatch("created", { donation: response });
 | 
			
		||||
          })
 | 
			
		||||
          .catch((err) => {
 | 
			
		||||
@@ -62,19 +53,14 @@
 | 
			
		||||
          })
 | 
			
		||||
          .finally(() => {
 | 
			
		||||
            processed_last_submit = true;
 | 
			
		||||
            //
 | 
			
		||||
            toast.hideToast();
 | 
			
		||||
          });
 | 
			
		||||
      } else {
 | 
			
		||||
        DonationService.donationControllerPutFixed(original_data.id, editable)
 | 
			
		||||
          .then((result) => {
 | 
			
		||||
            payment_modal_open = false;
 | 
			
		||||
            //
 | 
			
		||||
            Toastify({
 | 
			
		||||
              text: $_("donation-updated"),
 | 
			
		||||
              duration: 500,
 | 
			
		||||
              backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
 | 
			
		||||
            }).showToast();
 | 
			
		||||
            toast.dismiss();
 | 
			
		||||
            toast.success($_("donation-updated"));
 | 
			
		||||
            dispatch("created", { donation: response });
 | 
			
		||||
          })
 | 
			
		||||
          .catch((err) => {
 | 
			
		||||
@@ -82,8 +68,6 @@
 | 
			
		||||
          })
 | 
			
		||||
          .finally(() => {
 | 
			
		||||
            processed_last_submit = true;
 | 
			
		||||
            //
 | 
			
		||||
            toast.hideToast();
 | 
			
		||||
          });
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
    DonorService,
 | 
			
		||||
    RunnerService,
 | 
			
		||||
  } from "@odit/lfk-client-js";
 | 
			
		||||
  import Toastify from "toastify-js";
 | 
			
		||||
  
 | 
			
		||||
  import PromiseError from "../base/PromiseError.svelte";
 | 
			
		||||
  import Select from "svelte-select";
 | 
			
		||||
  let data_loaded = false;
 | 
			
		||||
@@ -33,7 +33,7 @@
 | 
			
		||||
      !(Math.floor(amount_input * 100) === original_data.amountPerDistance)) ||
 | 
			
		||||
    (original_data.responseType !== "DISTANCEDONATION" &&
 | 
			
		||||
      !(Math.floor(amount_input * 100) === original_data.amount)) ||
 | 
			
		||||
      !(Math.floor(paid_amount_input * 100) === original_data.paidAmount);
 | 
			
		||||
    !(Math.floor(paid_amount_input * 100) === original_data.paidAmount);
 | 
			
		||||
  $: save_enabled = changes_performed && is_amount_valid && is_everything_set;
 | 
			
		||||
 | 
			
		||||
  const promise = DonationService.donationControllerGetOne(
 | 
			
		||||
@@ -69,12 +69,9 @@
 | 
			
		||||
 | 
			
		||||
  function submit() {
 | 
			
		||||
    if (data_loaded === true && save_enabled) {
 | 
			
		||||
      Toastify({
 | 
			
		||||
        text: $_('updating-donation'),
 | 
			
		||||
        duration: 2500,
 | 
			
		||||
      }).showToast();
 | 
			
		||||
      toast($_("updating-donation"));
 | 
			
		||||
      let postdata = {};
 | 
			
		||||
      editable.paidAmount = paid_amount_input*100;
 | 
			
		||||
      editable.paidAmount = paid_amount_input * 100;
 | 
			
		||||
      if (original_data.responseType === "DISTANCEDONATION") {
 | 
			
		||||
        editable.amountPerDistance = Math.floor(amount_input * 100);
 | 
			
		||||
        postdata = Object.assign(postdata, editable);
 | 
			
		||||
@@ -87,11 +84,7 @@
 | 
			
		||||
          .then((resp) => {
 | 
			
		||||
            Object.assign(original_data, editable);
 | 
			
		||||
            original_data = original_data;
 | 
			
		||||
            Toastify({
 | 
			
		||||
              text: $_('donation-updated'),
 | 
			
		||||
              duration: 2500,
 | 
			
		||||
              backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
 | 
			
		||||
            }).showToast();
 | 
			
		||||
            toast.success($_("donation-updated"));
 | 
			
		||||
          })
 | 
			
		||||
          .catch((err) => {});
 | 
			
		||||
      } else {
 | 
			
		||||
@@ -102,11 +95,7 @@
 | 
			
		||||
          .then((resp) => {
 | 
			
		||||
            Object.assign(original_data, editable);
 | 
			
		||||
            original_data = original_data;
 | 
			
		||||
            Toastify({
 | 
			
		||||
              text: $_('donation-updated'),
 | 
			
		||||
              duration: 2500,
 | 
			
		||||
              backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
 | 
			
		||||
            }).showToast();
 | 
			
		||||
            toast.success($_("donation-updated"));
 | 
			
		||||
          })
 | 
			
		||||
          .catch((err) => {});
 | 
			
		||||
      }
 | 
			
		||||
@@ -116,11 +105,7 @@
 | 
			
		||||
  function deleteDonation() {
 | 
			
		||||
    DonationService.donationControllerRemove(original_data.id, false)
 | 
			
		||||
      .then((resp) => {
 | 
			
		||||
        Toastify({
 | 
			
		||||
          text: $_('donation-deleted'),
 | 
			
		||||
          duration: 500,
 | 
			
		||||
          backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
 | 
			
		||||
        }).showToast();
 | 
			
		||||
        toast($_("donation-deleted"));
 | 
			
		||||
        location.replace("./");
 | 
			
		||||
      })
 | 
			
		||||
      .catch((err) => {
 | 
			
		||||
@@ -131,7 +116,7 @@
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
{#await promise}
 | 
			
		||||
  {$_('loading-donation-details')}
 | 
			
		||||
  {$_("loading-donation-details")}
 | 
			
		||||
{:then}
 | 
			
		||||
  <section class="container p-5 select-none">
 | 
			
		||||
    <div class="flex flex-row mb-4">
 | 
			
		||||
@@ -144,12 +129,15 @@
 | 
			
		||||
                xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
                viewBox="0 0 24 24"
 | 
			
		||||
                width="24"
 | 
			
		||||
                height="24"><path fill="none" d="M0 0h24v24H0z" />
 | 
			
		||||
                height="24"
 | 
			
		||||
                ><path fill="none" d="M0 0h24v24H0z" />
 | 
			
		||||
                <path
 | 
			
		||||
                  d="M14 2a8 8 0 013.3 15.3A8 8 0 116.7 6.7 8 8 0 0114 2zm-3 7H9v1a2.5 2.5 0 00-.16 5h2.25a.5.5 0 010 1H7v2h2v1h2v-1a2.5 2.5 0 00.16-5H8.91a.5.5 0 010-1H13v-2h-2V9zm3-5a5.99 5.99 0 00-4.48 2.01 8 8 0 018.47 8.47A6 6 0 0014 4z" /></svg>
 | 
			
		||||
                  d="M14 2a8 8 0 013.3 15.3A8 8 0 116.7 6.7 8 8 0 0114 2zm-3 7H9v1a2.5 2.5 0 00-.16 5h2.25a.5.5 0 010 1H7v2h2v1h2v-1a2.5 2.5 0 00.16-5H8.91a.5.5 0 010-1H13v-2h-2V9zm3-5a5.99 5.99 0 00-4.48 2.01 8 8 0 018.47 8.47A6 6 0 0014 4z"
 | 
			
		||||
                /></svg
 | 
			
		||||
              >
 | 
			
		||||
            </li>
 | 
			
		||||
            <li class="flex items-center ml-2">
 | 
			
		||||
              <a class="mr-2" href="./">{$_('donations')}</a><svg
 | 
			
		||||
              <a class="mr-2" href="./">{$_("donations")}</a><svg
 | 
			
		||||
                stroke="currentColor"
 | 
			
		||||
                fill="none"
 | 
			
		||||
                stroke-width="2"
 | 
			
		||||
@@ -159,12 +147,10 @@
 | 
			
		||||
                class="h-3 w-3 mr-2 stroke-current"
 | 
			
		||||
                height="1em"
 | 
			
		||||
                width="1em"
 | 
			
		||||
                xmlns="http://www.w3.org/2000/svg"><line
 | 
			
		||||
                  x1="5"
 | 
			
		||||
                  y1="12"
 | 
			
		||||
                  x2="19"
 | 
			
		||||
                  y2="12" />
 | 
			
		||||
                <polyline points="12 5 19 12 12 19" /></svg>
 | 
			
		||||
                xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
                ><line x1="5" y1="12" x2="19" y2="12" />
 | 
			
		||||
                <polyline points="12 5 19 12 12 19" /></svg
 | 
			
		||||
              >
 | 
			
		||||
            </li>
 | 
			
		||||
            <li class="flex items-center">
 | 
			
		||||
              <span class="mr-2">{original_data.id}</span>
 | 
			
		||||
@@ -175,28 +161,32 @@
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="mb-8 text-3xl font-extrabold leading-tight">
 | 
			
		||||
      {original_data.donor.firstname}
 | 
			
		||||
      {original_data.donor.middlename || ''}
 | 
			
		||||
      {original_data.donor.middlename || ""}
 | 
			
		||||
      {original_data.donor.lastname}
 | 
			
		||||
      >
 | 
			
		||||
      {#if original_data.responseType == 'DISTANCEDONATION'}
 | 
			
		||||
      {#if original_data.responseType == "DISTANCEDONATION"}
 | 
			
		||||
        {original_data.runner.firstname}
 | 
			
		||||
        {original_data.runner.middlename || ''}
 | 
			
		||||
        {original_data.runner.middlename || ""}
 | 
			
		||||
        {original_data.runner.lastname}
 | 
			
		||||
      {:else}
 | 
			
		||||
        {$_('fixed-donation')}:
 | 
			
		||||
        {amount_input.toFixed(2).toLocaleString('de-DE', { valute: 'EUR' })}€
 | 
			
		||||
        {$_("fixed-donation")}:
 | 
			
		||||
        {amount_input.toFixed(2).toLocaleString("de-DE", { valute: "EUR" })}€
 | 
			
		||||
      {/if}
 | 
			
		||||
      <span data-id="donation_actions_${original_data.id}">
 | 
			
		||||
        {#if store.state.jwtinfo.userdetails.permissions.includes('DONATION:DELETE')}
 | 
			
		||||
        {#if store.state.jwtinfo.userdetails.permissions.includes("DONATION:DELETE")}
 | 
			
		||||
          {#if delete_triggered}
 | 
			
		||||
            <button
 | 
			
		||||
              on:click={deleteDonation}
 | 
			
		||||
              class="w-full justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-red-600 text-base font-medium text-white hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:">{$_('confirm-deletion')}</button>
 | 
			
		||||
              class="w-full justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-red-600 text-base font-medium text-white hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:"
 | 
			
		||||
              >{$_("confirm-deletion")}</button
 | 
			
		||||
            >
 | 
			
		||||
            <button
 | 
			
		||||
              on:click={() => {
 | 
			
		||||
                delete_triggered = !delete_triggered;
 | 
			
		||||
              }}
 | 
			
		||||
              class="w-full justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-400 text-base font-medium text-white sm:w-auto sm:">{$_('cancel')}</button>
 | 
			
		||||
              class="w-full justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-400 text-base font-medium text-white sm:w-auto sm:"
 | 
			
		||||
              >{$_("cancel")}</button
 | 
			
		||||
            >
 | 
			
		||||
          {/if}
 | 
			
		||||
          {#if !delete_triggered}
 | 
			
		||||
            <button
 | 
			
		||||
@@ -204,7 +194,9 @@
 | 
			
		||||
                delete_triggered = true;
 | 
			
		||||
              }}
 | 
			
		||||
              type="button"
 | 
			
		||||
              class="w-full justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-red-600 text-base font-medium text-white hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:">{$_('delete-donation')}</button>
 | 
			
		||||
              class="w-full justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-red-600 text-base font-medium text-white hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:"
 | 
			
		||||
              >{$_("delete-donation")}</button
 | 
			
		||||
            >
 | 
			
		||||
          {/if}
 | 
			
		||||
        {/if}
 | 
			
		||||
        {#if !delete_triggered}
 | 
			
		||||
@@ -213,72 +205,91 @@
 | 
			
		||||
            class:opacity-50={!save_enabled}
 | 
			
		||||
            type="button"
 | 
			
		||||
            on:click={submit}
 | 
			
		||||
            class="w-full 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:">{$_('save-changes')}</button>
 | 
			
		||||
            class="w-full 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:"
 | 
			
		||||
            >{$_("save-changes")}</button
 | 
			
		||||
          >
 | 
			
		||||
        {/if}
 | 
			
		||||
      </span>
 | 
			
		||||
    </div>
 | 
			
		||||
    <!--  -->
 | 
			
		||||
    <div>
 | 
			
		||||
      <span class="font-medium text-gray-700"
 | 
			
		||||
        >{$_("total-donation-amount")}:</span
 | 
			
		||||
      >
 | 
			
		||||
      <span
 | 
			
		||||
        class="font-medium text-gray-700">{$_('total-donation-amount')}:</span>
 | 
			
		||||
      <span>{(editable.amount / 100)
 | 
			
		||||
        >{(editable.amount / 100)
 | 
			
		||||
          .toFixed(2)
 | 
			
		||||
          .toLocaleString('de-DE', { valute: 'EUR' })}€</span>
 | 
			
		||||
          .toLocaleString("de-DE", { valute: "EUR" })}€</span
 | 
			
		||||
      >
 | 
			
		||||
      |
 | 
			
		||||
      <span class="font-medium text-gray-700">{$_("paid-amount")}:</span>
 | 
			
		||||
      <span
 | 
			
		||||
        class="font-medium text-gray-700">{$_('paid-amount')}:</span>
 | 
			
		||||
      <span>{(editable.paidAmount / 100)
 | 
			
		||||
        >{(editable.paidAmount / 100)
 | 
			
		||||
          .toFixed(2)
 | 
			
		||||
          .toLocaleString('de-DE', { valute: 'EUR' })}€</span>
 | 
			
		||||
          .toLocaleString("de-DE", { valute: "EUR" })}€</span
 | 
			
		||||
      >
 | 
			
		||||
      |
 | 
			
		||||
      <span
 | 
			
		||||
        class="font-medium text-gray-700">{$_('status')}:</span>
 | 
			
		||||
        {#if editable.status =="PAID"}
 | 
			
		||||
          <span
 | 
			
		||||
            class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">{$_('paid')}</span>
 | 
			
		||||
        {:else}
 | 
			
		||||
          <span
 | 
			
		||||
            class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-red-100 text-red-800">{$_('open')}</span>
 | 
			
		||||
        {/if}
 | 
			
		||||
      <span class="font-medium text-gray-700">{$_("status")}:</span>
 | 
			
		||||
      {#if editable.status == "PAID"}
 | 
			
		||||
        <span
 | 
			
		||||
          class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800"
 | 
			
		||||
          >{$_("paid")}</span
 | 
			
		||||
        >
 | 
			
		||||
      {:else}
 | 
			
		||||
        <span
 | 
			
		||||
          class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-red-100 text-red-800"
 | 
			
		||||
          >{$_("open")}</span
 | 
			
		||||
        >
 | 
			
		||||
      {/if}
 | 
			
		||||
    </div>
 | 
			
		||||
    <br>
 | 
			
		||||
    <br />
 | 
			
		||||
    <div class=" w-full">
 | 
			
		||||
      <label
 | 
			
		||||
        for="donor"
 | 
			
		||||
        class="block  font-medium text-gray-700">{$_('donor')}</label>
 | 
			
		||||
      <label for="donor" class="block font-medium text-gray-700"
 | 
			
		||||
        >{$_("donor")}</label
 | 
			
		||||
      >
 | 
			
		||||
      <Select
 | 
			
		||||
        containerClasses="rounded-l-md 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"
 | 
			
		||||
        itemFilter={(label, filterText, option) => filterDonors(label, filterText, option)}
 | 
			
		||||
        itemFilter={(label, filterText, option) =>
 | 
			
		||||
          filterDonors(label, filterText, option)}
 | 
			
		||||
        items={current_donors}
 | 
			
		||||
        showChevron={true}
 | 
			
		||||
        placeholder={$_('search-for-donor-name-or-id')}
 | 
			
		||||
        noOptionsMessage={$_('no-donors-found')}
 | 
			
		||||
        placeholder={$_("search-for-donor-name-or-id")}
 | 
			
		||||
        noOptionsMessage={$_("no-donors-found")}
 | 
			
		||||
        bind:selectedValue={donor}
 | 
			
		||||
        on:select={(selectedValue) => {editable.donor = selectedValue.detail.value; editable.donor.donationAmount=original_data.donor.donationAmount; editable.donor.paidDonationAmount =original_data.donor.paidDonationAmount}}
 | 
			
		||||
        on:clear={() => (editable.donor = null)} />
 | 
			
		||||
        on:select={(selectedValue) => {
 | 
			
		||||
          editable.donor = selectedValue.detail.value;
 | 
			
		||||
          editable.donor.donationAmount = original_data.donor.donationAmount;
 | 
			
		||||
          editable.donor.paidDonationAmount =
 | 
			
		||||
            original_data.donor.paidDonationAmount;
 | 
			
		||||
        }}
 | 
			
		||||
        on:clear={() => (editable.donor = null)}
 | 
			
		||||
      />
 | 
			
		||||
    </div>
 | 
			
		||||
    {#if original_data.responseType == 'DISTANCEDONATION'}
 | 
			
		||||
    {#if original_data.responseType == "DISTANCEDONATION"}
 | 
			
		||||
      <div class=" w-full">
 | 
			
		||||
        <label
 | 
			
		||||
          for="donor"
 | 
			
		||||
          class="block  font-medium text-gray-700">{$_('runner')}</label>
 | 
			
		||||
        <label for="donor" class="block font-medium text-gray-700"
 | 
			
		||||
          >{$_("runner")}</label
 | 
			
		||||
        >
 | 
			
		||||
        <Select
 | 
			
		||||
          containerClasses="rounded-l-md 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"
 | 
			
		||||
          itemFilter={(label, filterText, option) => filterDonors(label, filterText, option)}
 | 
			
		||||
          itemFilter={(label, filterText, option) =>
 | 
			
		||||
            filterDonors(label, filterText, option)}
 | 
			
		||||
          items={current_runners}
 | 
			
		||||
          showChevron={true}
 | 
			
		||||
          placeholder={$_('search-for-runner-by-name-or-id')}
 | 
			
		||||
          noOptionsMessage={$_('no-runners-found')}
 | 
			
		||||
          placeholder={$_("search-for-runner-by-name-or-id")}
 | 
			
		||||
          noOptionsMessage={$_("no-runners-found")}
 | 
			
		||||
          bind:selectedValue={runner}
 | 
			
		||||
          on:select={(selectedValue) => (editable.runner = selectedValue.detail.value)}
 | 
			
		||||
          on:clear={() => (editable.runner = null)} />
 | 
			
		||||
          on:select={(selectedValue) =>
 | 
			
		||||
            (editable.runner = selectedValue.detail.value)}
 | 
			
		||||
          on:clear={() => (editable.runner = null)}
 | 
			
		||||
        />
 | 
			
		||||
      </div>
 | 
			
		||||
    {/if}
 | 
			
		||||
    <div class=" w-full">
 | 
			
		||||
      <label for="lastname" class="font-medium text-gray-700">
 | 
			
		||||
        {#if original_data.responseType == 'DISTANCEDONATION'}
 | 
			
		||||
          {$_('amount-per-kilometer')}
 | 
			
		||||
        {:else}{$_('donation-amount')}{/if}
 | 
			
		||||
        {#if original_data.responseType == "DISTANCEDONATION"}
 | 
			
		||||
          {$_("amount-per-kilometer")}
 | 
			
		||||
        {:else}{$_("donation-amount")}{/if}
 | 
			
		||||
      </label>
 | 
			
		||||
      <div class="mt-1 flex rounded-md shadow-sm">
 | 
			
		||||
        <input
 | 
			
		||||
@@ -291,49 +302,61 @@
 | 
			
		||||
          step="0.01"
 | 
			
		||||
          name="donation_amount_eur"
 | 
			
		||||
          class="focus:ring-indigo-500 focus:border-indigo-500 flex-1 block w-full rounded-none rounded-l-md sm: border-gray-300 border bg-gray-50 text-gray-500 p-2"
 | 
			
		||||
          placeholder="2.00" />
 | 
			
		||||
          placeholder="2.00"
 | 
			
		||||
        />
 | 
			
		||||
        <span
 | 
			
		||||
          class="inline-flex items-center px-3 rounded-r-md border border-gray-300 bg-gray-50 text-gray-500 ">€</span>
 | 
			
		||||
          class="inline-flex items-center px-3 rounded-r-md border border-gray-300 bg-gray-50 text-gray-500"
 | 
			
		||||
          >€</span
 | 
			
		||||
        >
 | 
			
		||||
      </div>
 | 
			
		||||
      {#if !is_amount_valid}
 | 
			
		||||
        <span
 | 
			
		||||
          class="flex items-center font-medium tracking-wide text-red-500 text-xs mt-1 ml-1">
 | 
			
		||||
          {$_('donation-amount-must-be-greater-that-0-00eur')}
 | 
			
		||||
          class="flex items-center font-medium tracking-wide text-red-500 text-xs mt-1 ml-1"
 | 
			
		||||
        >
 | 
			
		||||
          {$_("donation-amount-must-be-greater-that-0-00eur")}
 | 
			
		||||
        </span>
 | 
			
		||||
      {/if}
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="w-full">
 | 
			
		||||
      <label
 | 
			
		||||
        for="token"
 | 
			
		||||
        class="block text-sm font-medium text-gray-700">{$_('paid-amount')}</label>
 | 
			
		||||
      <div class="inline-flex border-gray-300 border rounded-l-md rounded-r-md bg-gray-50 text-gray-500 w-full">
 | 
			
		||||
      <label for="token" class="block text-sm font-medium text-gray-700"
 | 
			
		||||
        >{$_("paid-amount")}</label
 | 
			
		||||
      >
 | 
			
		||||
      <div
 | 
			
		||||
        class="inline-flex border-gray-300 border rounded-l-md rounded-r-md bg-gray-50 text-gray-500 w-full"
 | 
			
		||||
      >
 | 
			
		||||
        <input
 | 
			
		||||
            autocomplete="off"
 | 
			
		||||
            class:border-red-500={!is_amount_valid}
 | 
			
		||||
            class:focus:border-red-500={!is_amount_valid}
 | 
			
		||||
            class:focus:ring-red-500={!is_amount_valid}
 | 
			
		||||
            bind:value={paid_amount_input}
 | 
			
		||||
            type="number"
 | 
			
		||||
            step="0.01"
 | 
			
		||||
            name="donation_amount_eur"
 | 
			
		||||
            class="focus:ring-indigo-500 focus:border-indigo-500 flex-1 block w-full rounded-none rounded-l-md sm:text-sm p-2"
 | 
			
		||||
            placeholder="2.00" />
 | 
			
		||||
          <button
 | 
			
		||||
            on:click={
 | 
			
		||||
              ()=>{
 | 
			
		||||
                paid_amount_input=paid_amount_input = (original_data.amount/100).toFixed(2);
 | 
			
		||||
              }
 | 
			
		||||
            }
 | 
			
		||||
            class="inline-flex items-center p-r-2 text-indigo-300 hover:text-indigo-700 text-sm">MAX</button>
 | 
			
		||||
          <span
 | 
			
		||||
            class="inline-flex items-center px-3 rounded-r-md border border-gray-300 bg-gray-50 text-gray-500 text-sm">€</span>
 | 
			
		||||
        </div>
 | 
			
		||||
        {#if !is_paid_amount_valid}
 | 
			
		||||
          <span
 | 
			
		||||
            class="flex items-center font-medium tracking-wide text-red-500 text-xs mt-1 ml-1">
 | 
			
		||||
            {$_('payment-amount-must-be-greater-than-0-00eur')}
 | 
			
		||||
          </span>
 | 
			
		||||
        {/if}
 | 
			
		||||
          autocomplete="off"
 | 
			
		||||
          class:border-red-500={!is_amount_valid}
 | 
			
		||||
          class:focus:border-red-500={!is_amount_valid}
 | 
			
		||||
          class:focus:ring-red-500={!is_amount_valid}
 | 
			
		||||
          bind:value={paid_amount_input}
 | 
			
		||||
          type="number"
 | 
			
		||||
          step="0.01"
 | 
			
		||||
          name="donation_amount_eur"
 | 
			
		||||
          class="focus:ring-indigo-500 focus:border-indigo-500 flex-1 block w-full rounded-none rounded-l-md sm:text-sm p-2"
 | 
			
		||||
          placeholder="2.00"
 | 
			
		||||
        />
 | 
			
		||||
        <button
 | 
			
		||||
          on:click={() => {
 | 
			
		||||
            paid_amount_input = paid_amount_input = (
 | 
			
		||||
              original_data.amount / 100
 | 
			
		||||
            ).toFixed(2);
 | 
			
		||||
          }}
 | 
			
		||||
          class="inline-flex items-center p-r-2 text-indigo-300 hover:text-indigo-700 text-sm"
 | 
			
		||||
          >MAX</button
 | 
			
		||||
        >
 | 
			
		||||
        <span
 | 
			
		||||
          class="inline-flex items-center px-3 rounded-r-md border border-gray-300 bg-gray-50 text-gray-500 text-sm"
 | 
			
		||||
          >€</span
 | 
			
		||||
        >
 | 
			
		||||
      </div>
 | 
			
		||||
      {#if !is_paid_amount_valid}
 | 
			
		||||
        <span
 | 
			
		||||
          class="flex items-center font-medium tracking-wide text-red-500 text-xs mt-1 ml-1"
 | 
			
		||||
        >
 | 
			
		||||
          {$_("payment-amount-must-be-greater-than-0-00eur")}
 | 
			
		||||
        </span>
 | 
			
		||||
      {/if}
 | 
			
		||||
    </div>
 | 
			
		||||
  </section>
 | 
			
		||||
{:catch error}
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,6 @@
 | 
			
		||||
{#if store.state.jwtinfo.userdetails.permissions.includes("DONATION:CREATE")}
 | 
			
		||||
  <AddDonationModal
 | 
			
		||||
    on:created={(event) => {
 | 
			
		||||
      console.log(event)
 | 
			
		||||
      addDonations(event.detail.donations);
 | 
			
		||||
    }}
 | 
			
		||||
    bind:modal_open
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
<div class="text-center items-center justify-center">
 | 
			
		||||
  <p class="mb-16 text-lg text-gray-500">
 | 
			
		||||
    <img class="m-auto" style="height:15rem" src={donations_empty} alt="" />
 | 
			
		||||
    <span class="font-bold">{$_('there-are-no-donations-yet')}</span><br />
 | 
			
		||||
    <span>{$_('add-your-fist-donation')}</span>
 | 
			
		||||
    <span class="font-bold">{$_("there-are-no-donations-yet")}</span><br />
 | 
			
		||||
    <span>{$_("add-your-fist-donation")}</span>
 | 
			
		||||
  </p>
 | 
			
		||||
</div>
 | 
			
		||||
 
 | 
			
		||||
@@ -27,11 +27,10 @@
 | 
			
		||||
    donationDonorFilter,
 | 
			
		||||
    donationRunnerFilter,
 | 
			
		||||
  } from "../shared/tablefilters";
 | 
			
		||||
  import toast from "svelte-french-toast";
 | 
			
		||||
  $: searchvalue = "";
 | 
			
		||||
  $: active_deletes = [];
 | 
			
		||||
  $: active_edits = [];
 | 
			
		||||
  $: selectedDonations =
 | 
			
		||||
    $table?.getSelectedRowModel().rows.map((row) => row.original) || [];
 | 
			
		||||
  $: selected =
 | 
			
		||||
    $table?.getSelectedRowModel().rows.map((row) => row.index) || [];
 | 
			
		||||
  $: dataLoaded = false;
 | 
			
		||||
@@ -164,11 +163,7 @@
 | 
			
		||||
      ...options,
 | 
			
		||||
      data: current_donations,
 | 
			
		||||
    }));
 | 
			
		||||
    Toastify({
 | 
			
		||||
      text: $_("donation-deleted"),
 | 
			
		||||
      duration: 3500,
 | 
			
		||||
      backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
 | 
			
		||||
    }).showToast();
 | 
			
		||||
    toast($_("donation-deleted"));
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  onMount(async () => {
 | 
			
		||||
@@ -191,7 +186,6 @@
 | 
			
		||||
      dataLoaded = true;
 | 
			
		||||
      page++;
 | 
			
		||||
    }
 | 
			
		||||
    console.log("All donations loaded");
 | 
			
		||||
  });
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user