193 lines
7.2 KiB
Svelte
193 lines
7.2 KiB
Svelte
<script>
|
|
import { _ } from "svelte-i18n";
|
|
import { ScanStationService } from "@odit/lfk-client-js";
|
|
const promise = ScanStationService.scanStationControllerGetAll().then(
|
|
(result) => {
|
|
current_stations = result;
|
|
}
|
|
);
|
|
import store from "../../store";
|
|
import ScanStationsEmptyState from "./ScanStationsEmptyState.svelte";
|
|
import ConfirmScanStationDeletion from "./ConfirmScanStationDeletion.svelte";
|
|
import toast from "svelte-french-toast";
|
|
$: searchvalue = "";
|
|
$: active_deletes = [];
|
|
let delete_station = {};
|
|
let modal_open = false;
|
|
export let current_stations = [];
|
|
</script>
|
|
|
|
<ConfirmScanStationDeletion
|
|
on:cancelDelete={(event) => {
|
|
modal_open = false;
|
|
active_deletes[event.detail.id] = false;
|
|
}}
|
|
bind:modal_open
|
|
bind:delete_station
|
|
/>
|
|
{#if store.state.jwtinfo.userdetails.permissions.includes("STATION:GET")}
|
|
{#await promise}
|
|
<div
|
|
class="bg-teal-lightest border-t-4 border-teal rounded-b text-teal-darkest px-4 py-3 shadow-md my-2"
|
|
role="alert"
|
|
>
|
|
<p class="font-bold">{$_("scanstations-are-being-loaded")}</p>
|
|
<p class="text-sm">{$_("this-might-take-a-moment")}</p>
|
|
</div>
|
|
{:then}
|
|
{#if current_stations.length === 0}
|
|
<ScanStationsEmptyState />
|
|
{:else}
|
|
<input
|
|
type="search"
|
|
bind:value={searchvalue}
|
|
placeholder={$_("datatable.search")}
|
|
aria-label={$_("datatable.search")}
|
|
class="mb-4"
|
|
/>
|
|
<div
|
|
class="shadow border-b border-gray-200 sm:rounded-lg overflow-x-scroll"
|
|
>
|
|
<table class="divide-y divide-gray-200 w-full">
|
|
<thead class="bg-gray-50">
|
|
<tr>
|
|
<th
|
|
scope="col"
|
|
class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
|
|
>
|
|
{$_("track")}
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
|
|
>
|
|
{$_("description")}
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
|
|
>
|
|
{$_("status")}
|
|
</th>
|
|
<th scope="col" class="relative px-6 py-3">
|
|
<span class="sr-only">{$_("action")}</span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-gray-200">
|
|
{#each current_stations as s}
|
|
{#if Object.values(s)
|
|
.toString()
|
|
.toLowerCase()
|
|
.includes(searchvalue)}
|
|
<tr data-rowid="station_{s.id}">
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<div class="flex items-center">
|
|
<div class="ml-4">
|
|
<div class="text-sm font-medium text-gray-900">
|
|
<a
|
|
href="../tracks"
|
|
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-gray-100 text-gray-800"
|
|
>
|
|
{s.track.name || s.track.distance + "m"}</a
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<div class="flex items-center">
|
|
<div class="ml-4">
|
|
<div class="text-sm font-medium text-gray-900">
|
|
{s.description}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<div class="flex items-center">
|
|
{#if s.enabled}
|
|
<span
|
|
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800"
|
|
>{$_("active")}</span
|
|
>
|
|
{:else}
|
|
<span
|
|
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-red-100 text-red-800"
|
|
>{$_("inactive")}</span
|
|
>
|
|
{/if}
|
|
</div>
|
|
</td>
|
|
{#if active_deletes[s.id] === true}
|
|
<td
|
|
class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium"
|
|
>
|
|
<button
|
|
on:click={() => {
|
|
active_deletes[s.id] = false;
|
|
}}
|
|
tabindex="0"
|
|
class="ml-4 text-indigo-600 hover:text-indigo-900 cursor-pointer"
|
|
>{$_("cancel-delete")}</button
|
|
>
|
|
<button
|
|
on:click={() => {
|
|
ScanStationService.scanStationControllerRemove(
|
|
s.id,
|
|
false
|
|
)
|
|
.then((resp) => {
|
|
current_stations = current_stations.filter(
|
|
(obj) => obj.id !== s.id
|
|
);
|
|
toast($_("station-deleted"));
|
|
})
|
|
.catch((err) => {
|
|
modal_open = true;
|
|
delete_station = s;
|
|
});
|
|
}}
|
|
tabindex="0"
|
|
class="ml-4 text-red-600 hover:text-red-900 cursor-pointer"
|
|
>{$_("confirm-delete")}</button
|
|
>
|
|
</td>
|
|
{:else}
|
|
<td
|
|
class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium"
|
|
>
|
|
<a
|
|
href="/scanstations/{s.id}"
|
|
class="text-indigo-600 hover:text-indigo-900"
|
|
>{$_("details")}</a
|
|
>
|
|
{#if store.state.jwtinfo.userdetails.permissions.includes("STATION:DELETE")}
|
|
<button
|
|
on:click={() => {
|
|
active_deletes[s.id] = true;
|
|
}}
|
|
tabindex="0"
|
|
class="ml-4 text-red-600 hover:text-red-900 cursor-pointer"
|
|
>{$_("delete")}</button
|
|
>
|
|
{/if}
|
|
</td>
|
|
{/if}
|
|
</tr>
|
|
{/if}
|
|
{/each}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{/if}
|
|
{:catch error}
|
|
<div class="text-white px-6 py-4 border-0 rounded relative mb-4 bg-red-500">
|
|
<span class="inline-block align-middle mr-8">
|
|
<b class="capitalize">{$_("general_promise_error")}</b>
|
|
{error}
|
|
</span>
|
|
</div>
|
|
{/await}
|
|
{/if}
|