mirror of
https://github.com/IoTManagerProject/IoTManagerWeb.git
synced 2026-03-26 15:02:21 +03:00
anydata added
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
import Card from "./widgets/Card.svelte";
|
||||
import Input from "./widgets/Input.svelte";
|
||||
import Toggle from "./widgets/Toggle.svelte";
|
||||
import Anydata from "./widgets/Anydata.svelte";
|
||||
|
||||
onMount(async () => {
|
||||
console.log("mounted");
|
||||
@@ -108,6 +109,36 @@
|
||||
topic: "/prefix/00000-00003/btn3",
|
||||
ws: 1,
|
||||
},
|
||||
{
|
||||
widget: "anydata",
|
||||
status: 30.5,
|
||||
after: "C",
|
||||
page: "Any data",
|
||||
order: "3",
|
||||
descr: "Temperature",
|
||||
topic: "/prefix/00000-00003/tmp10",
|
||||
ws: 1,
|
||||
},
|
||||
{
|
||||
widget: "anydata",
|
||||
status: 1032,
|
||||
after: "mm",
|
||||
page: "Any data",
|
||||
order: "3",
|
||||
descr: "Pressure",
|
||||
topic: "/prefix/00000-00003/tmp10",
|
||||
ws: 1,
|
||||
},
|
||||
{
|
||||
widget: "anydata",
|
||||
status: 50,
|
||||
after: "%",
|
||||
page: "Any data",
|
||||
order: "3",
|
||||
descr: "Level",
|
||||
topic: "/prefix/00000-00003/tmp10",
|
||||
ws: 1,
|
||||
},
|
||||
];
|
||||
|
||||
//находит в массиве с виджетами wigets все уникальные названия страниц и сортирует названия по алфавиту
|
||||
@@ -178,6 +209,9 @@
|
||||
{#if widget.widget === "toggle"}
|
||||
<Toggle bind:value={widget.status} widget={widget} />
|
||||
{/if}
|
||||
{#if widget.widget === "anydata"}
|
||||
<Anydata bind:value={widget.status} widget={widget} />
|
||||
{/if}
|
||||
{/if}
|
||||
{/each}
|
||||
</Card>
|
||||
@@ -266,16 +300,16 @@
|
||||
}
|
||||
/* 3. card items positioning*/
|
||||
.card-items-psn {
|
||||
@apply flex flex-col sm:flex-row lg:flex-row xl:flex-row 2xl:flex-row mb-6;
|
||||
@apply flex flex-col sm:flex-row lg:flex-row xl:flex-row 2xl:flex-row mb-6 h-8 items-center;
|
||||
}
|
||||
.card-items-psn-inline {
|
||||
@apply flex mb-6;
|
||||
@apply flex mb-6 h-8 items-center;
|
||||
}
|
||||
/* 4. widget description width*/
|
||||
.widget-descr-width {
|
||||
.widget-descr-width-ajustable {
|
||||
@apply w-full sm:w-2/3 lg:w-2/3 xl:w-2/3 2xl:w-2/3;
|
||||
}
|
||||
.widget-descr-width-2-3 {
|
||||
.widget-descr-width-inline {
|
||||
@apply w-2/3;
|
||||
}
|
||||
/* 5. widget descr style*/
|
||||
@@ -283,10 +317,10 @@
|
||||
@apply pr-4 text-gray-500 font-bold;
|
||||
}
|
||||
/* 6. widget width*/
|
||||
.widget-width-input {
|
||||
.widget-width-ajustable {
|
||||
@apply w-full sm:w-1/3 lg:w-1/3 xl:w-1/3 2xl:w-1/3;
|
||||
}
|
||||
.widget-width-toggle {
|
||||
.widget-width-inline {
|
||||
@apply flex justify-end w-1/3;
|
||||
}
|
||||
/*====================================================others=====================================================*/
|
||||
@@ -299,6 +333,9 @@
|
||||
.json-input {
|
||||
@apply content-center pr-4 py-1 bg-gray-200 appearance-none border-2 border-gray-200 rounded w-full text-gray-700 leading-tight focus:outline-none focus:bg-white focus:border-indigo-500;
|
||||
}
|
||||
.widget-anydata-style {
|
||||
@apply text-center text-lg text-gray-500 font-bold;
|
||||
}
|
||||
}
|
||||
|
||||
#menu__toggle {
|
||||
|
||||
18
src/widgets/Anydata.svelte
Normal file
18
src/widgets/Anydata.svelte
Normal file
@@ -0,0 +1,18 @@
|
||||
<script context="module">
|
||||
import { WSpush } from "../App.svelte";
|
||||
</script>
|
||||
|
||||
<script>
|
||||
export let widget;
|
||||
</script>
|
||||
|
||||
<div class="card-items-psn-inline">
|
||||
<div class="widget-descr-width-inline">
|
||||
<!-- svelte-ignore a11y-label-has-associated-control -->
|
||||
<label class="widget-descr-style">{!widget.descr ? "" : widget.descr}</label>
|
||||
</div>
|
||||
<div class="widget-width-inline">
|
||||
<!-- svelte-ignore a11y-label-has-associated-control -->
|
||||
<label class="widget-anydata-style">{!widget.status ? "" : widget.status}</label>
|
||||
</div>
|
||||
</div>
|
||||
@@ -7,11 +7,11 @@
|
||||
</script>
|
||||
|
||||
<div class="card-items-psn">
|
||||
<div class="widget-descr-width">
|
||||
<div class="widget-descr-width-ajustable">
|
||||
<!-- svelte-ignore a11y-label-has-associated-control -->
|
||||
<label class="widget-descr-style">{!widget.descr ? "" : widget.descr}</label>
|
||||
</div>
|
||||
<div class="widget-width-input">
|
||||
<div class="widget-width-ajustable">
|
||||
{#if widget.type == "number"}
|
||||
<input class={widget["send"] == true ? "widget-input border-red-500" : "widget-input focus:border-indigo-500"} on:change={() => ((widget["send"] = true), WSpush(widget.ws, widget.topic, widget.status))} bind:value={widget.status} step="0.1" type="number" />
|
||||
{/if}
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
</script>
|
||||
|
||||
<div class="card-items-psn-inline">
|
||||
<div class="widget-descr-width-2-3">
|
||||
<div class="widget-descr-width-inline">
|
||||
<!-- svelte-ignore a11y-label-has-associated-control -->
|
||||
<label class="widget-descr-style">{!widget.descr ? "" : widget.descr}</label>
|
||||
</div>
|
||||
<div class="widget-width-toggle">
|
||||
<div class="widget-width-inline">
|
||||
<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:value={widget.status} id={widget.topic} type="checkbox" class="sr-only" />
|
||||
|
||||
Reference in New Issue
Block a user