Adjustments
Dieser Commit ist enthalten in:
Ursprung
ecb906e614
Commit
a72dd2124d
@ -28,7 +28,7 @@ const { post } = Astro.props as Props;
|
|||||||
year: "numeric"
|
year: "numeric"
|
||||||
}).format(post.data.created)}</P>
|
}).format(post.data.created)}</P>
|
||||||
<P>{post.data.description}</P>
|
<P>{post.data.description}</P>
|
||||||
<div>
|
<div class="mt-1">
|
||||||
{post.data.tags.map((tag) => (
|
{post.data.tags.map((tag) => (
|
||||||
<TagComponent tag={tag} />
|
<TagComponent tag={tag} />
|
||||||
))}
|
))}
|
||||||
|
@ -19,9 +19,15 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import {t} from "astro-i18n";
|
import {t} from "astro-i18n";
|
||||||
import {ChevronDoubleRightOutline, FolderOutline, HomeOutline, InfoCircleOutline} from "flowbite-svelte-icons";
|
import {
|
||||||
|
ChevronDoubleRightOutline,
|
||||||
|
ChevronLeftOutline, ChevronRightOutline,
|
||||||
|
FolderOutline,
|
||||||
|
HomeOutline,
|
||||||
|
InfoCircleOutline
|
||||||
|
} from "flowbite-svelte-icons";
|
||||||
import SchematicListTile from "./SchematicListTile.svelte";
|
import SchematicListTile from "./SchematicListTile.svelte";
|
||||||
import {Breadcrumb, BreadcrumbItem, Tooltip} from "flowbite-svelte";
|
import {Breadcrumb, BreadcrumbItem, Pagination, Tooltip} from "flowbite-svelte";
|
||||||
import {createEventDispatcher} from "svelte";
|
import {createEventDispatcher} from "svelte";
|
||||||
import type {SchematicList} from "../types/schem.ts";
|
import type {SchematicList} from "../types/schem.ts";
|
||||||
import SchematicInfo from "./SchematicInfo.svelte";
|
import SchematicInfo from "./SchematicInfo.svelte";
|
||||||
@ -44,6 +50,26 @@
|
|||||||
return () => infoModalId = id
|
return () => infoModalId = id
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let page = 0;
|
||||||
|
$: maxPage = Math.ceil(schematics.schematics.length / 10);
|
||||||
|
$: pagedSchematics = schematics.schematics.slice(page * 10, (page + 1) * 10);
|
||||||
|
|
||||||
|
$: pages = new Array(maxPage).fill(0)
|
||||||
|
.map((_, i) => i + 1)
|
||||||
|
.slice(Math.max(page - 2, 0) - Math.abs(Math.max(page + 3 - maxPage, 0)), Math.min(page + 3, maxPage) + Math.abs(Math.min(page - 2, 0)))
|
||||||
|
.map(i => ({
|
||||||
|
name: i.toString(),
|
||||||
|
active: i === page + 1,
|
||||||
|
i: i - 1
|
||||||
|
}));
|
||||||
|
|
||||||
|
const previous = () => {
|
||||||
|
page = Math.max(page - 1, 0);
|
||||||
|
};
|
||||||
|
const next = () => {
|
||||||
|
page = Math.min(page + 1, maxPage - 1);
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="flex justify-between">
|
<div class="flex justify-between">
|
||||||
@ -59,7 +85,10 @@
|
|||||||
<svelte:fragment slot="icon">
|
<svelte:fragment slot="icon">
|
||||||
<ChevronDoubleRightOutline class="w-4 h-4 mx-2 dark:text-white" />
|
<ChevronDoubleRightOutline class="w-4 h-4 mx-2 dark:text-white" />
|
||||||
</svelte:fragment>
|
</svelte:fragment>
|
||||||
<span on:click={() => dispatch("to", {id: bread.id})} class="hover:underline hover:cursor-pointer text-2xl">{bread.name}</span>
|
<span on:click={() => {
|
||||||
|
page = 0;
|
||||||
|
dispatch("to", {id: bread.id});
|
||||||
|
}} class="hover:underline hover:cursor-pointer text-2xl">{bread.name}</span>
|
||||||
</BreadcrumbItem>
|
</BreadcrumbItem>
|
||||||
{/each}
|
{/each}
|
||||||
</Breadcrumb>
|
</Breadcrumb>
|
||||||
@ -93,8 +122,10 @@
|
|||||||
{#if schematics.breadcrumbs.length !== 0}
|
{#if schematics.breadcrumbs.length !== 0}
|
||||||
<tr on:click|preventDefault={() => {
|
<tr on:click|preventDefault={() => {
|
||||||
if (schematics.breadcrumbs.length === 1) {
|
if (schematics.breadcrumbs.length === 1) {
|
||||||
|
page = 0;
|
||||||
dispatch("reset")
|
dispatch("reset")
|
||||||
} else {
|
} else {
|
||||||
|
page = 0;
|
||||||
dispatch("to", {id: schematics.breadcrumbs[schematics.breadcrumbs.length - 2].id})
|
dispatch("to", {id: schematics.breadcrumbs[schematics.breadcrumbs.length - 2].id})
|
||||||
}
|
}
|
||||||
}}>
|
}}>
|
||||||
@ -109,12 +140,36 @@
|
|||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
{/if}
|
{/if}
|
||||||
{#each schematics.schematics as schem}
|
{#each pagedSchematics as schem}
|
||||||
<SchematicListTile schem={schem} players={schematics.players} on:click={schemListClick(schem.type == null, schem.id)} />
|
<SchematicListTile schem={schem} players={schematics.players} on:click={schemListClick(schem.type == null, schem.id)} />
|
||||||
{/each}
|
{/each}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
<div class="w-full flex justify-center mt-4">
|
||||||
|
<ul class="inline-flex">
|
||||||
|
<li>
|
||||||
|
<button on:click={previous} class="btn btn-gray h-8 px-3 text-sm flex items-center !m-0 !rounded-r-none">
|
||||||
|
<span class="sr-only">Previous</span>
|
||||||
|
<ChevronLeftOutline class="w-3 h-3" />
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
{#each pages as p}
|
||||||
|
<li>
|
||||||
|
<button on:click={() => page = p.i} class="btn h-8 px-3 text-sm flex items-center !m-0 !rounded-none" class:btn-gray={!p.active}>
|
||||||
|
<span>{p.name}</span>
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
{/each}
|
||||||
|
<li>
|
||||||
|
<button on:click={next} class="btn btn-gray h-8 px-3 text-sm flex items-center !m-0 !rounded-l-none">
|
||||||
|
<span class="sr-only">Next</span>
|
||||||
|
<ChevronRightOutline class="w-3 h-3" />
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<UploadModal bind:open={uploadOpen} on:refresh />
|
<UploadModal bind:open={uploadOpen} on:refresh />
|
||||||
|
|
||||||
{#if infoModalId !== null}
|
{#if infoModalId !== null}
|
||||||
|
@ -52,6 +52,7 @@
|
|||||||
month: "2-digit",
|
month: "2-digit",
|
||||||
year: "numeric"
|
year: "numeric"
|
||||||
}).format(dayjs(schem.lastUpdate).utc(false).toDate())}</th>
|
}).format(dayjs(schem.lastUpdate).utc(false).toDate())}</th>
|
||||||
|
{#if schem.type != null}
|
||||||
<th>
|
<th>
|
||||||
{#if schem.replaceColor}
|
{#if schem.replaceColor}
|
||||||
<CheckSolid class="text-green-500" />
|
<CheckSolid class="text-green-500" />
|
||||||
@ -66,6 +67,10 @@
|
|||||||
<XCircleOutline class="text-red-500" />
|
<XCircleOutline class="text-red-500" />
|
||||||
{/if}
|
{/if}
|
||||||
</th>
|
</th>
|
||||||
|
{:else}
|
||||||
|
<th></th>
|
||||||
|
<th></th>
|
||||||
|
{/if}
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
@ -42,7 +42,7 @@ const { Content } = await post.render();
|
|||||||
<PageLayout title={post.data.title}>
|
<PageLayout title={post.data.title}>
|
||||||
<article>
|
<article>
|
||||||
<h1 class="text-4xl mb-0">{post.data.title}</h1>
|
<h1 class="text-4xl mb-0">{post.data.title}</h1>
|
||||||
<h5 class="flex items-center mt-0 text-neutral-300"><TagSolid class="w-4 h-4 mr-2" /> {post.data.tags.map(tag => (
|
<h5 class="flex items-center mt-2 text-neutral-300"><TagSolid class="w-4 h-4 mr-2" /> {post.data.tags.map(tag => (
|
||||||
<TagComponent tag={tag} />
|
<TagComponent tag={tag} />
|
||||||
))} <CalendarMonthSolid class="w-4 h-4 mr-2" /> {Intl.DateTimeFormat(astroI18n.locale, {
|
))} <CalendarMonthSolid class="w-4 h-4 mr-2" /> {Intl.DateTimeFormat(astroI18n.locale, {
|
||||||
day: 'numeric',
|
day: 'numeric',
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren