2023-11-17 00:05:35 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import { PUBLIC_BASE_URL } from '$env/static/public';
|
2023-11-18 12:55:55 +00:00
|
|
|
import { onDestroy } from 'svelte';
|
2023-11-17 00:05:35 +00:00
|
|
|
import { _ } from 'svelte-i18n';
|
2023-11-18 12:55:55 +00:00
|
|
|
import type { Subscriber, Unsubscriber } from 'svelte/motion';
|
|
|
|
import type { Writable } from 'svelte/store';
|
2023-11-17 00:05:35 +00:00
|
|
|
import {
|
|
|
|
Button,
|
|
|
|
ButtonGroup,
|
|
|
|
Card,
|
2023-11-17 02:15:23 +00:00
|
|
|
CardTitle,
|
2023-11-17 00:05:35 +00:00
|
|
|
CardBody,
|
|
|
|
CardHeader,
|
|
|
|
Col,
|
|
|
|
Container,
|
|
|
|
Form,
|
|
|
|
Input,
|
|
|
|
Label,
|
|
|
|
Row
|
|
|
|
} from 'sveltestrap';
|
|
|
|
|
|
|
|
export let settings = {};
|
|
|
|
export let customText:String;
|
2023-11-17 02:15:23 +00:00
|
|
|
export let ledColor:String = "#FFCC00";
|
2023-11-18 12:55:55 +00:00
|
|
|
export let status:Writable<{leds:[]}>;
|
|
|
|
let ledStatus = [];
|
|
|
|
let keepLedsSameColor = false;
|
2023-11-17 00:05:35 +00:00
|
|
|
|
|
|
|
const setCustomText = () => {
|
|
|
|
fetch(`${PUBLIC_BASE_URL}/api/show/text/${customText}`).catch(err => { });
|
|
|
|
};
|
|
|
|
|
2023-11-18 12:55:55 +00:00
|
|
|
const checkSyncLeds = (e:Event) => {
|
|
|
|
console.log('checksyncleds', keepLedsSameColor);
|
|
|
|
if (keepLedsSameColor) {
|
|
|
|
console.log(e.target.value);
|
|
|
|
|
|
|
|
ledStatus.forEach((element, i) => {
|
|
|
|
if (ledStatus[i].hex != e.target_value) {
|
|
|
|
ledStatus[i].hex = e.target.value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-17 00:05:35 +00:00
|
|
|
const setLEDcolor = () => {
|
2023-11-17 02:15:23 +00:00
|
|
|
console.log(`${PUBLIC_BASE_URL}/api/lights/${ledColor}`);
|
2023-11-18 12:55:55 +00:00
|
|
|
fetch(`${PUBLIC_BASE_URL}/api/lights`, {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
},
|
|
|
|
method: 'PATCH',
|
|
|
|
body: JSON.stringify(ledStatus)
|
|
|
|
}
|
|
|
|
).catch(err => { });
|
2023-11-17 02:15:23 +00:00
|
|
|
};
|
2023-11-17 00:05:35 +00:00
|
|
|
|
2023-11-17 02:15:23 +00:00
|
|
|
const turnOffLeds = () => {
|
|
|
|
fetch(`${PUBLIC_BASE_URL}/api/lights/off`).catch(err => { });
|
2023-11-17 00:05:35 +00:00
|
|
|
};
|
2023-11-17 02:15:23 +00:00
|
|
|
|
|
|
|
const restartClock = () => {
|
|
|
|
fetch(`${PUBLIC_BASE_URL}/api/restart`).catch(err => { });
|
|
|
|
}
|
|
|
|
|
|
|
|
const forceFullRefresh = () => {
|
|
|
|
fetch(`${PUBLIC_BASE_URL}/api/full_refresh`).catch(err => { });
|
|
|
|
}
|
|
|
|
|
2023-11-18 12:55:55 +00:00
|
|
|
let firstLedDataSubscription = () => {};
|
|
|
|
|
|
|
|
firstLedDataSubscription = status.subscribe(async(val) => {
|
|
|
|
if (val && val.leds) {
|
|
|
|
ledStatus = val.leds.map((obj) => ({ ["hex"]: obj["hex"] }));
|
|
|
|
firstLedDataSubscription();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
onDestroy(firstLedDataSubscription);
|
2023-11-17 00:05:35 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<Col>
|
|
|
|
<Card>
|
|
|
|
<CardHeader>
|
2023-11-17 02:15:23 +00:00
|
|
|
<CardTitle>{$_('section.control.title', { default: 'Control' })}</CardTitle>
|
2023-11-17 00:05:35 +00:00
|
|
|
</CardHeader>
|
|
|
|
<CardBody>
|
|
|
|
<Form>
|
|
|
|
<Row>
|
2023-11-17 12:12:22 +00:00
|
|
|
<Label md={6} for="customText">{ $_('section.control.text') }</Label>
|
2023-11-17 00:05:35 +00:00
|
|
|
<Col md="6">
|
2023-11-18 12:55:55 +00:00
|
|
|
<Input type="text" id="customText" bind:value={customText} bsSize="sm" maxLength="{$settings.numScreens}" />
|
2023-11-17 00:05:35 +00:00
|
|
|
</Col>
|
|
|
|
</Row>
|
2023-11-17 12:12:22 +00:00
|
|
|
<Button color="primary" on:click={setCustomText}>{ $_('section.control.showText') }</Button>
|
2023-11-17 00:05:35 +00:00
|
|
|
|
|
|
|
</Form>
|
|
|
|
<hr />
|
|
|
|
<h3>LEDs</h3>
|
|
|
|
<Form>
|
|
|
|
<Row>
|
2023-11-17 12:12:22 +00:00
|
|
|
<Label md={6} for="ledColorPicker" size="sm">{ $_('section.control.ledColor') }</Label>
|
2023-11-17 00:05:35 +00:00
|
|
|
<Col md="6">
|
2023-11-18 12:55:55 +00:00
|
|
|
<Row class="justify-content-between">
|
|
|
|
{#if ledStatus}
|
|
|
|
{#each ledStatus as led, i }
|
|
|
|
<Col>
|
|
|
|
<Input type="color" id="ledColorPicker[{i}]" bind:value="{led.hex}" class="mx-auto" on:change="{checkSyncLeds}" />
|
|
|
|
</Col>
|
|
|
|
{/each}
|
|
|
|
{/if}
|
|
|
|
<Col>
|
|
|
|
<Input bind:checked={keepLedsSameColor} type="switch" class="mx-auto" label="{ $_('sections.control.keepSameColor') }" />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2023-11-17 00:05:35 +00:00
|
|
|
</Col>
|
|
|
|
</Row>
|
2023-11-17 12:12:22 +00:00
|
|
|
<Button color="secondary" id="turnOffLedsBtn" on:click={turnOffLeds}>{ $_('section.control.turnOff') }</Button>
|
|
|
|
<Button color="primary" on:click={setLEDcolor}>{ $_('section.control.setColor') }</Button>
|
2023-11-17 00:05:35 +00:00
|
|
|
</Form>
|
|
|
|
|
|
|
|
<hr />
|
2023-11-17 12:12:22 +00:00
|
|
|
<h3>{ $_('section.control.systemInfo') }</h3>
|
2023-11-17 00:05:35 +00:00
|
|
|
<ul class="small system_info">
|
2023-11-17 12:12:22 +00:00
|
|
|
<li>{ $_('section.control.version') }: {$settings.gitRev}</li>
|
|
|
|
<li>{ $_('section.control.buildTime') }: {new Date(($settings.lastBuildTime * 1000)).toLocaleString()}</li>
|
2023-11-17 00:05:35 +00:00
|
|
|
<li>IP: {$settings.ip}</li>
|
2023-11-17 12:23:26 +00:00
|
|
|
<li>{ $_('section.control.hostname') }: {$settings.hostname}</li>
|
2023-11-17 00:05:35 +00:00
|
|
|
</ul>
|
2023-11-17 12:12:22 +00:00
|
|
|
<Button color="danger" id="restartBtn" on:click="{restartClock}">{ $_('button.restart') }</Button>
|
|
|
|
<Button color="warning" id="forceFullRefresh" on:click="{forceFullRefresh}">{ $_('button.forceFullRefresh') }</Button>
|
2023-11-17 00:05:35 +00:00
|
|
|
</CardBody>
|
|
|
|
</Card>
|
|
|
|
</Col>
|