Compare commits

..

No commits in common. "ff91995337c1a6b5e938df62c7f0075dce66e784" and "008c91a5526edc51d4995565f1681f300f980b51" have entirely different histories.

6 changed files with 84 additions and 85 deletions

View File

@ -2,11 +2,11 @@
// import TailwindStyles from "./TailwindStyles.svelte"; // import TailwindStyles from "./TailwindStyles.svelte";
import { Route, router } from "tinro"; import { Route, router } from "tinro";
router.subscribe((routeInfo) => { router.subscribe((routeInfo) => {
// console.log(routeInfo.path); console.log(routeInfo.path);
window.scrollTo(0, 0); window.scrollTo(0, 0);
}); });
// console.log($router.path); console.log($router.path);
// console.log(config); console.log(config);
if (config.prefersHashRouting) { if (config.prefersHashRouting) {
if (config.prefersHashRouting === true) { if (config.prefersHashRouting === true) {
router.useHashNavigation(); router.useHashNavigation();

View File

@ -6,10 +6,10 @@
// the name to use for the internal file input // the name to use for the internal file input
let name = "filepond"; let name = "filepond";
function handleInit() { function handleInit() {
// console.log("FilePond has initialised"); console.log("FilePond has initialised");
} }
function handleAddFile(err, fileItem) { function handleAddFile(err, fileItem) {
// console.log("A file has been added", fileItem); console.log("A file has been added", fileItem);
} }
</script> </script>

View File

@ -2,16 +2,19 @@
import { StatsService } from "@odit/lfk-client-js"; import { StatsService } from "@odit/lfk-client-js";
import { _ } from "svelte-i18n"; import { _ } from "svelte-i18n";
const stats_promise = StatsService.statsControllerGet(); const stats_promise = StatsService.statsControllerGet();
stats_promise.then((res) => {
console.log(res);
});
</script> </script>
<!-- --> <!-- -->
<h1>{$_('general-stats')}</h1> <h1>Allgemeine Statistiken</h1>
{#await stats_promise} {#await stats_promise}
<div <div
class="bg-teal-lightest border-t-4 border-teal rounded-b text-teal-darkest px-4 py-3 shadow-md my-2" class="bg-teal-lightest border-t-4 border-teal rounded-b text-teal-darkest px-4 py-3 shadow-md my-2"
role="alert"> role="alert">
<p class="font-bold">{$_('stats-are-being-loaded')}</p> <p class="font-bold">stats are being loaded...</p>
<p class="text-sm">{$_('this-might-take-a-moment')}</p> <p class="text-sm">This might take a moment 👀</p>
</div> </div>
{:then stats} {:then stats}
<div <div

View File

@ -42,6 +42,5 @@
"credits": "", "credits": "",
"runners": "Läufer", "runners": "Läufer",
"total-distance": "gelaufene Strecke", "total-distance": "gelaufene Strecke",
"dashboard-greeting": "Willkommen", "dashboard-greeting": "Willkommen"
"general-stats": "Allgemeine Statistiken"
} }

View File

@ -69,8 +69,5 @@
"teams": "Teams", "teams": "Teams",
"faq": "FAQ", "faq": "FAQ",
"minimum-lap-time-in-s": "Minimum lap time in s", "minimum-lap-time-in-s": "Minimum lap time in s",
"action": "Action", "action": "Action"
"this-might-take-a-moment": "This might take a moment 👀",
"stats-are-being-loaded": "stats are being loaded...",
"general-stats": "General Stats"
} }

View File

@ -22,7 +22,7 @@ const store = () => {
state.access_token = access_token; state.access_token = access_token;
state.jwtinfo = jwtinfo; state.jwtinfo = jwtinfo;
state.isLoggedIn = true; state.isLoggedIn = true;
// console.log('login performed'); console.log('login performed');
return state; return state;
}); });
}, },