aboutsummaryrefslogtreecommitdiff
path: root/src/routes/languages
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-11-19 04:40:02 -0800
committerFuwn <[email protected]>2023-11-19 04:40:02 -0800
commitb1454872a74a955ff2dca7014b4549f153686bea (patch)
tree66a2e1fa53d0615421aa084dd5eb12641a071d3a /src/routes/languages
parentfix(npm): remove lockfile (diff)
downloadfrontend-next-b1454872a74a955ff2dca7014b4549f153686bea.tar.xz
frontend-next-b1454872a74a955ff2dca7014b4549f153686bea.zip
feat(svelte): complete sveltekit upgrade
Diffstat (limited to 'src/routes/languages')
-rw-r--r--src/routes/languages/+page.svelte67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/routes/languages/+page.svelte b/src/routes/languages/+page.svelte
new file mode 100644
index 0000000..bcbcbec
--- /dev/null
+++ b/src/routes/languages/+page.svelte
@@ -0,0 +1,67 @@
+<!-- This file is part of api-worker <https://github.com/senpy-club/api-worker>.
+Copyright (C) 2022-2022 Fuwn <[email protected]>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 3.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+Copyright (C) 2022-2022 Fuwn <[email protected]>
+SPDX-License-Identifier: GPL-3.0-only -->
+<script>
+ import { onMount } from "svelte";
+ import { fetchLanguages } from "$lib/api";
+
+ let languages;
+ let complete = false;
+
+ onMount(async () => {
+ languages = await fetchLanguages();
+ complete = true;
+ });
+</script>
+
+<svelte:head>
+ <title>Languages | The Senpy Club</title>
+</svelte:head>
+
+<div class="content">
+ {#if !complete}
+ <p>Fetching languages ...</p>
+ {:else}
+ <ul id="language-list">
+ {#each languages as language}
+ <li>
+ <a href={"/language?language=" + encodeURIComponent(language)}>
+ {language}
+ </a>
+ </li>
+ {/each}
+ </ul>
+ {/if}
+</div>
+
+<style>
+ #language-list {
+ column-count: 1;
+ }
+
+ @media screen and (min-width: 600px) {
+ #language-list {
+ column-count: 2;
+ }
+ }
+
+ @media screen and (min-width: 900px) {
+ #language-list {
+ column-count: 3;
+ }
+ }
+</style>