mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-22 15:53:01 +00:00
Merge branch 'develop' into feature/remove-svg-rect
This commit is contained in:
commit
0eeaaef4bf
7 changed files with 47 additions and 29 deletions
|
@ -9,7 +9,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||
<strong>Es tut uns leid, aber <%= htmlWebpackPlugin.options.title %> funktioniert nicht richtig ohne JavaScript. Bitte aktivieren Sie es, um fortzufahren.</strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
|
|
|
@ -51,10 +51,6 @@ import UserView from "./components/UserView.vue";
|
|||
})
|
||||
export default class extends Vue {
|
||||
public readonly store = advent22Store();
|
||||
|
||||
public mounted(): void {
|
||||
this.store.init();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -1,11 +1,19 @@
|
|||
<template>
|
||||
<Calendar :doors="doors" />
|
||||
<hr />
|
||||
<div class="content" v-html="store.site_config.content" />
|
||||
<div class="content has-text-primary" v-if="store.next_door_target !== null">
|
||||
Zeit bis zum nächsten Türchen:
|
||||
<CountDown :until="store.next_door_target" />
|
||||
</div>
|
||||
<template v-if="store.user_doors.length > 0">
|
||||
<Calendar :doors="doors" />
|
||||
<hr />
|
||||
<div class="content" v-html="store.site_config.content" />
|
||||
<div class="content has-text-primary">
|
||||
<template v-if="store.next_door_target === null">
|
||||
Alle {{ store.user_doors.length }} Türchen offen!
|
||||
</template>
|
||||
<template v-else>
|
||||
{{ store.user_doors.length }} Türchen offen. Zeit bis zum nächsten
|
||||
Türchen:
|
||||
<CountDown :until="store.next_door_target" />
|
||||
</template>
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import { Advent22Plugin } from "@/plugins/advent22";
|
||||
import { FontAwesomePlugin } from "@/plugins/fontawesome";
|
||||
import { advent22Store } from "@/plugins/store";
|
||||
import { createPinia } from "pinia";
|
||||
import { createApp } from "vue";
|
||||
import App from "./App.vue";
|
||||
|
@ -11,4 +12,7 @@ app.use(Advent22Plugin);
|
|||
app.use(FontAwesomePlugin);
|
||||
app.use(createPinia());
|
||||
|
||||
const store = advent22Store();
|
||||
store.init(app.config.globalProperties.$advent22);
|
||||
|
||||
app.mount("#app");
|
||||
|
|
|
@ -156,10 +156,8 @@ export class Advent22 {
|
|||
}
|
||||
}
|
||||
|
||||
export const ADVENT22 = new Advent22();
|
||||
|
||||
export const Advent22Plugin: Plugin = {
|
||||
install(app: App) {
|
||||
app.config.globalProperties.$advent22 = ADVENT22;
|
||||
app.config.globalProperties.$advent22 = new Advent22();
|
||||
},
|
||||
};
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { Credentials, DoorsSaved, SiteConfigModel } from "@/lib/api";
|
||||
import { ADVENT22 } from "@/plugins/advent22";
|
||||
import { Advent22 } from "@/plugins/advent22";
|
||||
import { AxiosBasicCredentials } from "axios";
|
||||
import { acceptHMRUpdate, defineStore } from "pinia";
|
||||
|
||||
|
@ -10,12 +10,13 @@ export const advent22Store = defineStore({
|
|||
id: "advent22",
|
||||
|
||||
state: () => ({
|
||||
advent22: {} as Advent22,
|
||||
api_creds: empty_creds(),
|
||||
is_touch_device: check_touch_device(),
|
||||
is_admin: false,
|
||||
site_config: {
|
||||
title: "Adventskalender",
|
||||
subtitle: "Lorem Ipsum",
|
||||
title: document.title,
|
||||
subtitle: "",
|
||||
content: "",
|
||||
footer: "",
|
||||
} as SiteConfigModel,
|
||||
|
@ -31,8 +32,11 @@ export const advent22Store = defineStore({
|
|||
},
|
||||
|
||||
actions: {
|
||||
init(): void {
|
||||
ADVENT22.api_get_blob("user/favicon")
|
||||
init(advent22: Advent22): void {
|
||||
this.advent22 = advent22;
|
||||
|
||||
advent22
|
||||
.api_get_blob("user/favicon")
|
||||
.then((favicon_src) => {
|
||||
const link: HTMLLinkElement =
|
||||
document.querySelector("link[rel*='icon']") ||
|
||||
|
@ -47,9 +51,9 @@ export const advent22Store = defineStore({
|
|||
.catch(() => {});
|
||||
|
||||
Promise.all([
|
||||
ADVENT22.api_get<SiteConfigModel>("user/site_config"),
|
||||
ADVENT22.api_get<DoorsSaved>("user/doors"),
|
||||
ADVENT22.api_get<number | null>("user/next_door"),
|
||||
advent22.api_get<SiteConfigModel>("user/site_config"),
|
||||
advent22.api_get<DoorsSaved>("user/doors"),
|
||||
advent22.api_get<number | null>("user/next_door"),
|
||||
])
|
||||
.then(([site_config, user_doors, next_door]) => {
|
||||
document.title = site_config.title;
|
||||
|
@ -63,14 +67,15 @@ export const advent22Store = defineStore({
|
|||
if (next_door !== null)
|
||||
this.next_door_target = Date.now() + next_door;
|
||||
})
|
||||
.catch(ADVENT22.alert_user_error);
|
||||
.catch(advent22.alert_user_error);
|
||||
},
|
||||
|
||||
login(creds: Credentials = empty_creds()): Promise<boolean> {
|
||||
this.api_creds = creds;
|
||||
|
||||
return new Promise<boolean>((resolve, reject) => {
|
||||
ADVENT22.api_get<boolean>("admin/is_admin")
|
||||
this.advent22
|
||||
.api_get<boolean>("admin/is_admin")
|
||||
.then((is_admin) => {
|
||||
this.is_admin = is_admin;
|
||||
resolve(is_admin);
|
||||
|
|
|
@ -1,7 +1,14 @@
|
|||
const { defineConfig } = require('@vue/cli-service')
|
||||
const { defineConfig } = require("@vue/cli-service");
|
||||
|
||||
module.exports = defineConfig({
|
||||
transpileDependencies: true,
|
||||
devServer: {
|
||||
host: 'localhost',
|
||||
}
|
||||
})
|
||||
host: "localhost",
|
||||
},
|
||||
pages: {
|
||||
index: {
|
||||
entry: "src/main.ts",
|
||||
title: "Kalender-Gewinnspiel",
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue