2022-09-09 16:23:04 +00:00
|
|
|
<template>
|
2022-09-09 16:38:12 +00:00
|
|
|
<v-app>
|
2022-09-15 15:04:01 +00:00
|
|
|
<v-layout column fill-height>
|
2022-09-13 15:46:54 +00:00
|
|
|
<TitleBar
|
|
|
|
:logo_above="logo_above"
|
|
|
|
:logo_below="logo_below"
|
|
|
|
:title="title_html"
|
|
|
|
/>
|
2022-09-15 17:48:55 +00:00
|
|
|
<Dashboard>
|
|
|
|
<template slot="message">
|
2022-09-15 20:30:25 +00:00
|
|
|
<div class="d-flex flex-column fill-height pb-sm-12">
|
2022-09-15 19:45:34 +00:00
|
|
|
<Message :html="message_html" />
|
|
|
|
<ImageCarousel
|
|
|
|
class="mt-auto"
|
|
|
|
v-if="image_urls.length > 0"
|
|
|
|
:speed="image_speed"
|
|
|
|
:height="image_height"
|
|
|
|
:contain="image_contain"
|
|
|
|
:urls="image_urls"
|
|
|
|
/>
|
|
|
|
</div>
|
2022-09-15 17:48:55 +00:00
|
|
|
</template>
|
|
|
|
<template slot="calendars">
|
2022-09-15 18:01:10 +00:00
|
|
|
<CalendarCarousel :speed="calendar_speed" :data="calendar_data" />
|
2022-09-15 17:48:55 +00:00
|
|
|
<DashboardInfo
|
2022-09-15 20:30:25 +00:00
|
|
|
class="pb-12 pb-sm-0"
|
2022-09-15 17:48:55 +00:00
|
|
|
:server_host="server_host"
|
|
|
|
:server_name="server_name"
|
|
|
|
:version="dashboard_version"
|
|
|
|
:lan_ip="dashboard_ip"
|
|
|
|
/>
|
|
|
|
</template>
|
2022-09-13 21:30:20 +00:00
|
|
|
</Dashboard>
|
2022-09-15 15:04:01 +00:00
|
|
|
<TickerBar
|
|
|
|
v-if="ticker_html !== ''"
|
|
|
|
:content="ticker_html"
|
2022-09-15 22:14:45 +00:00
|
|
|
:color="ticker_color"
|
2022-09-15 15:04:01 +00:00
|
|
|
/>
|
|
|
|
</v-layout>
|
2022-09-09 16:38:12 +00:00
|
|
|
</v-app>
|
2022-09-09 16:23:04 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-09-11 23:28:37 +00:00
|
|
|
import { Component, Vue } from "vue-property-decorator";
|
2022-09-15 19:30:48 +00:00
|
|
|
|
|
|
|
import TitleBar from "./components/title/TitleBar.vue";
|
2022-09-13 01:54:02 +00:00
|
|
|
import Dashboard from "./components/Dashboard.vue";
|
2022-09-15 17:48:55 +00:00
|
|
|
import ImageCarousel from "./components/ImageCarousel.vue";
|
2022-09-15 19:30:48 +00:00
|
|
|
import Message from "./components/Message.vue";
|
|
|
|
import CalendarCarousel from "./components/calendar/CalendarCarousel.vue";
|
|
|
|
import DashboardInfo from "./components/DashboardInfo.vue";
|
2022-09-12 13:01:58 +00:00
|
|
|
import TickerBar from "./components/TickerBar.vue";
|
2022-09-09 16:23:04 +00:00
|
|
|
|
2022-09-11 23:28:37 +00:00
|
|
|
@Component({
|
2022-09-09 16:23:04 +00:00
|
|
|
components: {
|
2022-09-15 19:30:48 +00:00
|
|
|
TitleBar,
|
2022-09-13 01:54:02 +00:00
|
|
|
Dashboard,
|
2022-09-15 17:48:55 +00:00
|
|
|
ImageCarousel,
|
2022-09-15 19:30:48 +00:00
|
|
|
Message,
|
|
|
|
CalendarCarousel,
|
|
|
|
DashboardInfo,
|
2022-09-12 13:01:58 +00:00
|
|
|
TickerBar,
|
2022-09-09 16:23:04 +00:00
|
|
|
},
|
2022-09-11 23:28:37 +00:00
|
|
|
})
|
|
|
|
export default class App extends Vue {
|
2022-09-13 15:46:54 +00:00
|
|
|
private logo_above = "Technisches Hilfswerk";
|
|
|
|
private logo_below = "OV Musterstadt";
|
2022-09-11 23:28:37 +00:00
|
|
|
private title_html = "<h1>changeme</h1>";
|
2022-09-15 18:01:10 +00:00
|
|
|
|
|
|
|
private image_urls = require("@/assets/image_testdata.json");
|
2022-09-15 18:08:04 +00:00
|
|
|
private image_height = 300;
|
|
|
|
private image_contain = false;
|
2022-09-15 18:01:10 +00:00
|
|
|
private image_speed = 10000;
|
2022-09-15 19:30:48 +00:00
|
|
|
private message_html = require("@/assets/lipsum.json");
|
2022-09-15 18:01:10 +00:00
|
|
|
|
|
|
|
private calendar_data = require("@/assets/calendar_testdata.json");
|
|
|
|
private calendar_speed = 10000;
|
2022-09-15 16:25:58 +00:00
|
|
|
private server_host = "https://oekzident.de";
|
|
|
|
private server_name = "OEKZident";
|
|
|
|
private dashboard_version = "0.0.1";
|
|
|
|
private dashboard_ip = "0.0.0.0";
|
2022-09-15 18:01:10 +00:00
|
|
|
|
|
|
|
private ticker_html = "<p>changeme</p>";
|
2022-09-15 22:14:45 +00:00
|
|
|
private ticker_color = "primary";
|
2022-09-15 22:51:50 +00:00
|
|
|
|
2022-09-16 14:16:53 +00:00
|
|
|
private fail(name: string): (arg0: unknown) => void {
|
2022-09-16 14:02:18 +00:00
|
|
|
return (reason: unknown) =>
|
2022-09-16 14:16:53 +00:00
|
|
|
console.warn("Failed to query", name, "-", reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
private api_query_simple(
|
|
|
|
endpoint: string,
|
|
|
|
on_success: (data: unknown) => void
|
|
|
|
): void {
|
|
|
|
this.$axios
|
|
|
|
.get(this.$ovdashboard.api_url(endpoint))
|
|
|
|
.then((response) => on_success(response.data))
|
|
|
|
.catch(this.fail(endpoint));
|
|
|
|
}
|
|
|
|
|
|
|
|
private api_query_simple_string(
|
|
|
|
endpoint: string,
|
|
|
|
on_success: (data: string) => void
|
|
|
|
): void {
|
|
|
|
this.api_query_simple(endpoint, (data) => {
|
|
|
|
if (typeof data !== "string") return;
|
|
|
|
|
|
|
|
on_success(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private api_query_simple_object(
|
|
|
|
endpoint: string,
|
|
|
|
on_success: (data: Record<string, string>) => void
|
|
|
|
): void {
|
|
|
|
this.api_query_simple(endpoint, (data) => {
|
|
|
|
if (typeof data !== "object") return;
|
|
|
|
if (data === null) return;
|
|
|
|
|
|
|
|
on_success(data as Record<string, string>);
|
|
|
|
});
|
2022-09-15 22:51:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private update(): void {
|
2022-09-16 14:02:18 +00:00
|
|
|
// Update Logo Config
|
2022-09-16 14:16:53 +00:00
|
|
|
this.api_query_simple_object("misc/config/logo", (data) => {
|
|
|
|
this.logo_above = data.above;
|
|
|
|
this.logo_below = data.below;
|
|
|
|
});
|
2022-09-16 14:02:18 +00:00
|
|
|
|
|
|
|
// Update Title
|
|
|
|
this.$axios
|
|
|
|
.get(this.$ovdashboard.api_url("text/get/html/title"))
|
|
|
|
.then((response) => {
|
|
|
|
this.title_html = response.data;
|
|
|
|
})
|
|
|
|
.catch(this.fail("Title"));
|
|
|
|
|
|
|
|
// Update Images
|
|
|
|
|
|
|
|
// Update Image Config
|
|
|
|
this.$axios
|
|
|
|
.get(this.$ovdashboard.api_url("image/config"))
|
|
|
|
.then((response) => {
|
|
|
|
this.image_height = response.data.height;
|
|
|
|
this.image_contain = response.data.contain;
|
|
|
|
this.image_speed = response.data.speed;
|
|
|
|
})
|
|
|
|
.catch(this.fail("Image Config"));
|
|
|
|
|
|
|
|
// Update Message
|
|
|
|
this.$axios
|
|
|
|
.get(this.$ovdashboard.api_url("text/get/html/message"))
|
|
|
|
.then((response) => {
|
|
|
|
this.message_html = response.data;
|
|
|
|
})
|
|
|
|
.catch(this.fail("Message"));
|
|
|
|
|
|
|
|
// Update Calendars
|
|
|
|
|
|
|
|
// Update Calendar Config
|
|
|
|
this.$axios
|
|
|
|
.get(this.$ovdashboard.api_url("calendar/config"))
|
|
|
|
.then((response) => {
|
|
|
|
this.calendar_speed = response.data.speed;
|
|
|
|
})
|
|
|
|
.catch(this.fail("Calendar Config"));
|
|
|
|
|
|
|
|
// Update Server Config
|
|
|
|
this.$axios
|
|
|
|
.get(this.$ovdashboard.api_url("misc/config/server"))
|
|
|
|
.then((response) => {
|
|
|
|
this.server_host = response.data.host;
|
|
|
|
this.server_name = response.data.name;
|
|
|
|
})
|
|
|
|
.catch(this.fail("Server Config"));
|
|
|
|
|
|
|
|
// Update Version
|
|
|
|
this.$axios
|
|
|
|
.get(this.$ovdashboard.api_url("misc/version"))
|
|
|
|
.then((response) => {
|
|
|
|
this.dashboard_version = response.data;
|
|
|
|
})
|
|
|
|
.catch(this.fail("Version"));
|
|
|
|
|
|
|
|
// Update IP
|
|
|
|
this.$axios
|
|
|
|
.get(this.$ovdashboard.api_url("misc/lanip"))
|
|
|
|
.then((response) => {
|
|
|
|
this.dashboard_ip = response.data;
|
|
|
|
})
|
|
|
|
.catch(this.fail("IP"));
|
|
|
|
|
|
|
|
// Update Ticker
|
|
|
|
this.$axios
|
|
|
|
.get(this.$ovdashboard.api_url("ticker/html"))
|
|
|
|
.then((response) => {
|
|
|
|
this.ticker_html = response.data;
|
|
|
|
})
|
|
|
|
.catch(this.fail("Ticker"));
|
|
|
|
|
|
|
|
// Update Ticker Config
|
|
|
|
this.$axios
|
|
|
|
.get(this.$ovdashboard.api_url("ticker/config"))
|
|
|
|
.then((response) => {
|
|
|
|
this.ticker_color = response.data.color;
|
|
|
|
})
|
|
|
|
.catch(this.fail("Ticker"));
|
2022-09-15 22:51:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public mounted(): void {
|
|
|
|
this.update();
|
|
|
|
}
|
2022-09-11 23:28:37 +00:00
|
|
|
}
|
2022-09-09 16:38:12 +00:00
|
|
|
</script>
|
2022-09-15 19:49:41 +00:00
|
|
|
|
|
|
|
<style>
|
|
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
|
|
body::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
|
|
body {
|
|
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
|
|
scrollbar-width: none; /* Firefox */
|
|
|
|
}
|
|
|
|
</style>
|