69 lines
2.1 KiB
Svelte
69 lines
2.1 KiB
Svelte
<script lang="ts">
|
|
export let applications: Array<Application>;
|
|
import { session } from '$app/stores';
|
|
import Application from './_Application.svelte';
|
|
import { post } from '$lib/api';
|
|
import { goto } from '$app/navigation';
|
|
async function newApplication() {
|
|
const { id } = await post('/applications/new', {});
|
|
return await goto(`/applications/${id}`, { replaceState: true });
|
|
}
|
|
const ownApplications = applications.filter((application) => {
|
|
if (application.teams[0].id === $session.teamId) {
|
|
return application;
|
|
}
|
|
});
|
|
const otherApplications = applications.filter((application) => {
|
|
if (application.teams[0].id !== $session.teamId) {
|
|
return application;
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<div class="flex space-x-1 p-6 font-bold">
|
|
<div class="mr-4 text-2xl ">Applications</div>
|
|
{#if $session.isAdmin}
|
|
<div on:click={newApplication} class="add-icon cursor-pointer bg-green-600 hover:bg-green-500">
|
|
<svg
|
|
class="w-6"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
><path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M12 6v6m0 0v6m0-6h6m-6 0H6"
|
|
/></svg
|
|
>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
<div class="flex flex-wrap justify-center">
|
|
{#if !applications || applications.length === 0}
|
|
<div class="flex-col">
|
|
<div class="text-center text-xl font-bold">No applications found</div>
|
|
</div>
|
|
{:else}
|
|
<div class="flex flex-col">
|
|
{#if $session.teamId === '0' && ownApplications.length > 0}
|
|
<div class="text-xl font-bold pb-5 px-1">Your Team's Applications</div>
|
|
{/if}
|
|
<div class="flex flex-col md:flex-row flex-wrap px-2 justify-center">
|
|
{#each ownApplications as application}
|
|
<Application {application} />
|
|
{/each}
|
|
</div>
|
|
{#if otherApplications.length > 0 && $session.teamId === '0'}
|
|
<div class="text-xl font-bold pb-5 px-1 pt-10 px-6">Other Team's Applications</div>
|
|
<div class="flex flex-col md:flex-row flex-wrap px-2 justify-center">
|
|
{#each otherApplications as application}
|
|
<Application {application} />
|
|
{/each}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
</div>
|