mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-03 18:29:14 +02:00

# Conflicts: # frontend/src/view/AdditionalModules.vue # frontend/src/view/EditCalendarView.vue
107 lines
2.6 KiB
Vue
107 lines
2.6 KiB
Vue
<script setup lang="ts">
|
|
import { Ref, ref } from "vue";
|
|
import { Module } from "../model/module";
|
|
import moduleStore from "../store/moduleStore";
|
|
import { getCalender } from "../api/loadCalendar";
|
|
import router from "../router";
|
|
import tokenStore from "../store/tokenStore";
|
|
import { useToast } from "primevue/usetoast";
|
|
import { useI18n } from "vue-i18n";
|
|
const { t } = useI18n({ useScope: "global" });
|
|
|
|
const toast = useToast();
|
|
|
|
const token: Ref<string> = ref("");
|
|
const modules: Ref<Map<string, Module>> = ref(moduleStore().modules);
|
|
|
|
function extractToken(token: string): string {
|
|
const tokenRegex = /^[a-z0-9]{15}$/;
|
|
const tokenUriRegex = /[?&]token=([a-z0-9]{15})(?:&|$)/;
|
|
|
|
if (tokenRegex.test(token)) {
|
|
return token;
|
|
}
|
|
|
|
const match = tokenUriRegex.exec(token);
|
|
if (match) {
|
|
return match[1];
|
|
}
|
|
|
|
throw new Error("Invalid token");
|
|
}
|
|
|
|
function loadCalendar(): void {
|
|
try {
|
|
token.value = extractToken(token.value);
|
|
} catch (e) {
|
|
toast.add({
|
|
severity: "error",
|
|
summary: t("editCalendarView.error"),
|
|
detail: t("editCalendarView.invalidToken"),
|
|
life: 3000,
|
|
});
|
|
return;
|
|
}
|
|
|
|
moduleStore().removeAllModules();
|
|
tokenStore().setToken(token.value);
|
|
|
|
getCalender(token.value).then((data: Module[]) => {
|
|
if (data.length > 0) {
|
|
data.forEach((module) => {
|
|
moduleStore().addModule(module);
|
|
});
|
|
modules.value = moduleStore().modules;
|
|
router.push("/edit-additional-modules");
|
|
} else {
|
|
toast.add({
|
|
severity: "error",
|
|
summary: t("editCalendarView.error"),
|
|
detail: t("editCalendarView.noCalendarFound"),
|
|
life: 3000,
|
|
});
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Toast />
|
|
<div class="flex flex-column">
|
|
<div class="flex align-items-center justify-content-center h-4rem mt-2">
|
|
<h3 class="text-4xl">
|
|
{{ $t("editCalendarView.headline") }}
|
|
<i
|
|
class="pi pi-pencil vertical-align-baseline ml-2"
|
|
style="font-size: 2rem"
|
|
></i>
|
|
</h3>
|
|
</div>
|
|
<div
|
|
class="flex align-items-center justify-content-center h-4rem border-round"
|
|
>
|
|
<p class="text-2xl">{{ $t("editCalendarView.subTitle") }}</p>
|
|
</div>
|
|
<div
|
|
class="flex align-items-center justify-content-center border-round m-2"
|
|
>
|
|
<InputText
|
|
v-model="token"
|
|
type="text"
|
|
autofocus
|
|
@keyup.enter="loadCalendar"
|
|
/>
|
|
</div>
|
|
<div
|
|
class="flex align-items-center justify-content-center border-round m-2"
|
|
>
|
|
<Button
|
|
:label="$t('editCalendarView.loadCalendar')"
|
|
@click="loadCalendar"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|