mirror of
https://github.com/IoTManagerProject/IoTManagerWeb.git
synced 2026-03-27 07:22:28 +03:00
отправка 0 1
This commit is contained in:
@@ -1,12 +1,10 @@
|
||||
<script>
|
||||
import App from "../App.svelte";
|
||||
|
||||
export let widget;
|
||||
export let value;
|
||||
|
||||
value = value;
|
||||
|
||||
export let wsPush = (ws, topic, status) => {};
|
||||
//let st = Boolean(widget.status);
|
||||
</script>
|
||||
|
||||
<div class="crd-itm-psn">
|
||||
@@ -17,15 +15,10 @@
|
||||
<div class="flex justify-end w-1/3">
|
||||
<label for={widget.topic} class="items-center cursor-pointer">
|
||||
<div class="relative">
|
||||
<input on:change={() => ((widget["send"] = true), wsPush(widget.ws, widget.topic, widget.status))} bind:checked={widget.status} id={widget.topic} type="checkbox" class="sr-only" />
|
||||
<input bind:checked={widget.status} on:change={() => wsPush(widget.ws, widget.topic, widget.status ? 1 : 0)} id={widget.topic} type="checkbox" class="sr-only" />
|
||||
<div class="block bg-gray-600 w-10 h-6 rounded-full" />
|
||||
<div class="dot {widget['send'] == true ? 'bg-red-400' : 'bg-white'} absolute left-1 top-1 w-4 h-4 rounded-full transition" />
|
||||
</div>
|
||||
{#if widget.status}
|
||||
<p>yes</p>
|
||||
{:else}
|
||||
<p>no</p>
|
||||
{/if}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user