poe-svelte-ui-lib 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Accordion/Accordion.svelte +53 -0
- package/dist/Accordion/Accordion.svelte.d.ts +14 -0
- package/dist/Accordion/AccordionProps.svelte +70 -0
- package/dist/Accordion/AccordionProps.svelte.d.ts +14 -0
- package/dist/{Button.svelte → Button/Button.svelte} +34 -45
- package/dist/Button/Button.svelte.d.ts +14 -0
- package/dist/Button/ButtonProps.svelte +200 -0
- package/dist/Button/ButtonProps.svelte.d.ts +14 -0
- package/dist/ColorPicker/ColorPicker.svelte +207 -0
- package/dist/ColorPicker/ColorPicker.svelte.d.ts +14 -0
- package/dist/ColorPicker/ColorPickerProps.svelte +100 -0
- package/dist/ColorPicker/ColorPickerProps.svelte.d.ts +14 -0
- package/dist/FileAttach/FileAttach.svelte +103 -0
- package/dist/FileAttach/FileAttach.svelte.d.ts +14 -0
- package/dist/Graph/Graph.svelte +270 -0
- package/dist/Graph/Graph.svelte.d.ts +14 -0
- package/dist/Graph/GraphProps.svelte +56 -0
- package/dist/Graph/GraphProps.svelte.d.ts +14 -0
- package/dist/Input/Input.svelte +239 -0
- package/dist/Input/Input.svelte.d.ts +14 -0
- package/dist/Input/InputProps.svelte +221 -0
- package/dist/Input/InputProps.svelte.d.ts +14 -0
- package/dist/Loader.svelte +12 -0
- package/dist/Loader.svelte.d.ts +14 -0
- package/dist/MessageModal.svelte +54 -0
- package/dist/MessageModal.svelte.d.ts +14 -0
- package/dist/ProgressBar/ProgressBar.svelte +48 -0
- package/dist/ProgressBar/ProgressBar.svelte.d.ts +14 -0
- package/dist/ProgressBar/ProgressBarProps.svelte +145 -0
- package/dist/ProgressBar/ProgressBarProps.svelte.d.ts +14 -0
- package/dist/Select/Select.svelte +187 -0
- package/dist/Select/Select.svelte.d.ts +14 -0
- package/dist/Select/SelectProps.svelte +260 -0
- package/dist/Select/SelectProps.svelte.d.ts +14 -0
- package/dist/Slider/Slider.svelte +260 -0
- package/dist/Slider/Slider.svelte.d.ts +14 -0
- package/dist/Slider/SliderProps.svelte +161 -0
- package/dist/Slider/SliderProps.svelte.d.ts +14 -0
- package/dist/Switch/Switch.svelte +83 -0
- package/dist/Switch/Switch.svelte.d.ts +14 -0
- package/dist/Switch/SwitchProps.svelte +144 -0
- package/dist/Switch/SwitchProps.svelte.d.ts +14 -0
- package/dist/Table/Table.svelte +276 -0
- package/dist/Table/Table.svelte.d.ts +14 -0
- package/dist/Table/TableProps.svelte +286 -0
- package/dist/Table/TableProps.svelte.d.ts +14 -0
- package/dist/TextField/TextField.svelte +22 -0
- package/dist/TextField/TextField.svelte.d.ts +14 -0
- package/dist/TextField/TextFieldProps.svelte +92 -0
- package/dist/TextField/TextFieldProps.svelte.d.ts +14 -0
- package/dist/appIcons/ButtonAdd.svelte +10 -0
- package/dist/appIcons/ButtonAdd.svelte.d.ts +14 -0
- package/dist/appIcons/ButtonDelete.svelte +13 -0
- package/dist/appIcons/ButtonDelete.svelte.d.ts +14 -0
- package/dist/appIcons/LoaderRotate.svelte +9 -0
- package/dist/appIcons/LoaderRotate.svelte.d.ts +14 -0
- package/dist/index.d.ts +25 -1
- package/dist/index.js +26 -2
- package/dist/locales/CircleFlagsEn.svelte +14 -0
- package/dist/locales/CircleFlagsEn.svelte.d.ts +23 -0
- package/dist/locales/CircleFlagsRu.svelte +8 -0
- package/dist/locales/CircleFlagsRu.svelte.d.ts +23 -0
- package/dist/locales/CircleFlagsZh.svelte +8 -0
- package/dist/locales/CircleFlagsZh.svelte.d.ts +23 -0
- package/dist/locales/i18n.d.ts +10 -0
- package/dist/locales/i18n.js +36 -0
- package/dist/locales/translations.d.ts +7 -0
- package/dist/locales/translations.js +450 -0
- package/dist/options.d.ts +78 -0
- package/dist/options.js +71 -0
- package/dist/types.d.ts +284 -0
- package/dist/types.js +1 -0
- package/package.json +24 -20
- package/dist/Button.svelte.d.ts +0 -37
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
<!-- $lib/ElementsUI/InputProps.svelte -->
|
|
2
|
+
<script lang="ts">
|
|
3
|
+
import { getContext } from 'svelte'
|
|
4
|
+
import { t } from '../locales/i18n'
|
|
5
|
+
import type { IInputProps, UIComponent, ISelectOption } from '../types'
|
|
6
|
+
import * as UI from '../index'
|
|
7
|
+
import { optionsStore } from '../options'
|
|
8
|
+
|
|
9
|
+
const { component, onPropertyChange } = $props<{
|
|
10
|
+
component: UIComponent & { properties: Partial<IInputProps> }
|
|
11
|
+
onPropertyChange: (value: string | object) => void
|
|
12
|
+
}>()
|
|
13
|
+
|
|
14
|
+
let isValidRegExp = $state(true)
|
|
15
|
+
const DeviceVariables = getContext<{ value: string; name: string }[]>('DeviceVariables')
|
|
16
|
+
let VARIABLE_OPTIONS: ISelectOption<string>[] = $derived(
|
|
17
|
+
DeviceVariables.map((variable: { value: string; name: string }) => ({
|
|
18
|
+
id: variable.name,
|
|
19
|
+
value: variable.value,
|
|
20
|
+
name: `${variable.value} | ${variable.name}`,
|
|
21
|
+
})),
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
const initialColor = $derived(
|
|
25
|
+
$optionsStore.COLOR_OPTIONS.find((c) =>
|
|
26
|
+
(c.value as string).includes(component.properties.componentClass?.split(' ').find((cls: string) => cls.startsWith('bg-'))),
|
|
27
|
+
),
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
const initialAlign = $derived(
|
|
31
|
+
$optionsStore.ALIGN_OPTIONS.find((a) =>
|
|
32
|
+
(a.value as string).includes(component.properties.label?.class?.split(' ').find((cls: string) => cls.startsWith('text-'))),
|
|
33
|
+
),
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
/* Обновление свойства */
|
|
37
|
+
const updateProperty = (path: string, value: string | object | boolean | number | RegExp) => {
|
|
38
|
+
const newProperties = JSON.parse(JSON.stringify(component.properties))
|
|
39
|
+
if (path === 'regExp') {
|
|
40
|
+
try {
|
|
41
|
+
let regex: RegExp
|
|
42
|
+
if (typeof value === 'string') {
|
|
43
|
+
const pattern = value.match(/^\/(.*)\/([gimsuy]*)$/)
|
|
44
|
+
|
|
45
|
+
regex = pattern ? new RegExp(pattern[1], pattern[2]) : new RegExp(value)
|
|
46
|
+
if (pattern === null) return
|
|
47
|
+
regex.test('')
|
|
48
|
+
} else {
|
|
49
|
+
throw new Error('Invalid RegExp type')
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
newProperties.regExp = regex
|
|
53
|
+
isValidRegExp = true
|
|
54
|
+
} catch (error) {
|
|
55
|
+
console.warn('Invalid RegExp:', error)
|
|
56
|
+
newProperties.regExp = typeof value === 'string' ? value : String(value)
|
|
57
|
+
isValidRegExp = false
|
|
58
|
+
return
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const parts = path.split('.')
|
|
63
|
+
let obj = newProperties
|
|
64
|
+
|
|
65
|
+
for (let i = 0; i < parts.length - 1; i++) {
|
|
66
|
+
const part = parts[i]
|
|
67
|
+
if (!obj[part]) obj[part] = {}
|
|
68
|
+
obj = obj[part]
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
obj[parts[parts.length - 1]] = value
|
|
72
|
+
onPropertyChange(newProperties)
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
const handleOptionColorChange = (color: string) => {
|
|
76
|
+
let componentClass = component.properties.componentClass || ''
|
|
77
|
+
|
|
78
|
+
componentClass = componentClass
|
|
79
|
+
.split(' ')
|
|
80
|
+
.filter((cls: string) => !cls.startsWith('bg-'))
|
|
81
|
+
.join(' ')
|
|
82
|
+
|
|
83
|
+
if (color) {
|
|
84
|
+
componentClass += ` ${color}`
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
updateProperty('componentClass', componentClass)
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
const handleLabelAlign = (align: string) => {
|
|
91
|
+
let labelClass = component.properties.label.class || ''
|
|
92
|
+
|
|
93
|
+
labelClass = labelClass
|
|
94
|
+
.split(' ')
|
|
95
|
+
.filter((cls: string) => !cls.startsWith('text-'))
|
|
96
|
+
.join(' ')
|
|
97
|
+
if (align) {
|
|
98
|
+
labelClass += ` ${align}`
|
|
99
|
+
}
|
|
100
|
+
updateProperty('label.class', labelClass)
|
|
101
|
+
}
|
|
102
|
+
</script>
|
|
103
|
+
|
|
104
|
+
{#if component && component.properties}
|
|
105
|
+
<div class="relative flex flex-row items-start justify-center">
|
|
106
|
+
<!-- Сообщение для отправки в ws по нажатию кнопки -->
|
|
107
|
+
<div class="flex w-1/3 flex-col items-center px-2">
|
|
108
|
+
<UI.Select
|
|
109
|
+
label={{ name: $t('service.constructor.props.variable') }}
|
|
110
|
+
options={VARIABLE_OPTIONS}
|
|
111
|
+
value={VARIABLE_OPTIONS.find((opt) => opt.value === component.properties.id.value)}
|
|
112
|
+
onUpdate={(selectedOption) => {
|
|
113
|
+
if (selectedOption && selectedOption.name) {
|
|
114
|
+
updateProperty('id.name', selectedOption.name.split('|')[1].trim())
|
|
115
|
+
updateProperty('id.value', selectedOption.value as string)
|
|
116
|
+
updateProperty('eventHandler.Variables', selectedOption.value as string)
|
|
117
|
+
}
|
|
118
|
+
}}
|
|
119
|
+
/>
|
|
120
|
+
<UI.Select
|
|
121
|
+
label={{ name: $t('service.constructor.props.type') }}
|
|
122
|
+
options={$optionsStore.INPUT_TYPE_OPTIONS}
|
|
123
|
+
value={$optionsStore.INPUT_TYPE_OPTIONS.find((opt) => opt.value === (component.properties.type || 'text'))}
|
|
124
|
+
onUpdate={(selectedOption) => updateProperty('type', selectedOption.value as string)}
|
|
125
|
+
/>
|
|
126
|
+
{#if component.properties.type === 'text' || component.properties.type === 'password'}
|
|
127
|
+
<UI.Input
|
|
128
|
+
label={{ name: $t('service.constructor.props.maxlenght') }}
|
|
129
|
+
value={component.properties.maxlength}
|
|
130
|
+
type="text"
|
|
131
|
+
onUpdate={(value) => updateProperty('maxlength', value as string)}
|
|
132
|
+
/>
|
|
133
|
+
<UI.Input
|
|
134
|
+
label={{ name: $t('service.constructor.props.regexp') }}
|
|
135
|
+
value={component.properties.regExp}
|
|
136
|
+
type="text"
|
|
137
|
+
maxlength={150}
|
|
138
|
+
help={{ info: $t('service.constructor.props.regexp_info') }}
|
|
139
|
+
componentClass={isValidRegExp === false ? '!border-2 !border-red-400' : ''}
|
|
140
|
+
onUpdate={(value) => updateProperty('regExp', value)}
|
|
141
|
+
/>
|
|
142
|
+
{:else if component.properties.type === 'number' && !component.properties.readonly && !component.properties.disabled}
|
|
143
|
+
<UI.Input
|
|
144
|
+
label={{ name: $t('service.constructor.props.minnum') }}
|
|
145
|
+
value={component.properties.number.minNum as number}
|
|
146
|
+
type="number"
|
|
147
|
+
onUpdate={(value) => updateProperty('number.minNum', Number(value))}
|
|
148
|
+
/>
|
|
149
|
+
<UI.Input
|
|
150
|
+
label={{ name: $t('service.constructor.props.maxnum') }}
|
|
151
|
+
value={component.properties.number.maxNum as number}
|
|
152
|
+
type="number"
|
|
153
|
+
onUpdate={(value) => updateProperty('number.maxNum', Number(value))}
|
|
154
|
+
/>
|
|
155
|
+
<UI.Input
|
|
156
|
+
label={{ name: $t('service.constructor.props.step') }}
|
|
157
|
+
value={component.properties.number.step as number}
|
|
158
|
+
type="number"
|
|
159
|
+
onUpdate={(value) => updateProperty('number.step', Number(value))}
|
|
160
|
+
/>
|
|
161
|
+
{:else if component.properties.type === 'text-area'}
|
|
162
|
+
<UI.Input
|
|
163
|
+
label={{ name: $t('service.constructor.props.regexp') }}
|
|
164
|
+
value={component.properties.regExp}
|
|
165
|
+
type="text"
|
|
166
|
+
maxlength={150}
|
|
167
|
+
help={{ info: $t('service.constructor.props.regexp_info') }}
|
|
168
|
+
componentClass={isValidRegExp === false ? '!border-2 !border-red-400' : ''}
|
|
169
|
+
onUpdate={(value) => updateProperty('regExp', value)}
|
|
170
|
+
/>
|
|
171
|
+
{/if}
|
|
172
|
+
</div>
|
|
173
|
+
<div class="flex w-1/3 flex-col px-2">
|
|
174
|
+
<UI.Input
|
|
175
|
+
label={{ name: $t('service.constructor.props.placeholder') }}
|
|
176
|
+
value={component.properties.help.placeholder as string}
|
|
177
|
+
type="text"
|
|
178
|
+
onUpdate={(value) => updateProperty('help.placeholder', value)}
|
|
179
|
+
/>
|
|
180
|
+
<UI.Input
|
|
181
|
+
label={{ name: $t('service.constructor.props.info') }}
|
|
182
|
+
value={component.properties.help.info as string}
|
|
183
|
+
type="text"
|
|
184
|
+
onUpdate={(value) => updateProperty('help.info', value)}
|
|
185
|
+
/>
|
|
186
|
+
<UI.Switch
|
|
187
|
+
label={{ name: $t('service.constructor.props.readonly') }}
|
|
188
|
+
value={component.properties.readonly ? 2 : 1}
|
|
189
|
+
onChange={(value) => updateProperty('readonly', value === 2)}
|
|
190
|
+
/>
|
|
191
|
+
<UI.Switch
|
|
192
|
+
label={{ name: $t('service.constructor.props.copy') }}
|
|
193
|
+
value={component.properties.copyButton ? 2 : 1}
|
|
194
|
+
onChange={(value) => updateProperty('copyButton', value === 2)}
|
|
195
|
+
/>
|
|
196
|
+
</div>
|
|
197
|
+
<div class="flex w-1/3 flex-col px-2">
|
|
198
|
+
<UI.Input
|
|
199
|
+
label={{ name: $t('service.constructor.props.label') }}
|
|
200
|
+
value={component.properties.label.name}
|
|
201
|
+
type="text"
|
|
202
|
+
onUpdate={(value) => updateProperty('label.name', value as string)}
|
|
203
|
+
/>
|
|
204
|
+
<UI.Select
|
|
205
|
+
label={{ name: $t('service.constructor.props.align') }}
|
|
206
|
+
type="buttons"
|
|
207
|
+
value={initialAlign}
|
|
208
|
+
options={$optionsStore.ALIGN_OPTIONS}
|
|
209
|
+
onUpdate={(option) => handleLabelAlign(option.value as string)}
|
|
210
|
+
/>
|
|
211
|
+
<UI.Select
|
|
212
|
+
wrapperClass="h-14"
|
|
213
|
+
label={{ name: $t('service.constructor.props.colors') }}
|
|
214
|
+
type="buttons"
|
|
215
|
+
options={$optionsStore.COLOR_OPTIONS}
|
|
216
|
+
value={initialColor}
|
|
217
|
+
onUpdate={(option) => handleOptionColorChange(option.value as string)}
|
|
218
|
+
/>
|
|
219
|
+
</div>
|
|
220
|
+
</div>
|
|
221
|
+
{/if}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
8
|
+
};
|
|
9
|
+
export type InputPropsProps = typeof __propDef.props;
|
|
10
|
+
export type InputPropsEvents = typeof __propDef.events;
|
|
11
|
+
export type InputPropsSlots = typeof __propDef.slots;
|
|
12
|
+
export default class InputProps extends SvelteComponentTyped<InputPropsProps, InputPropsEvents, InputPropsSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!-- $lib/ElementsUI/Loader.svelte -->
|
|
2
|
+
<script lang="ts">
|
|
3
|
+
import LoaderRotate from './appIcons/LoaderRotate.svelte'
|
|
4
|
+
|
|
5
|
+
let { show = false } = $props()
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
{#if show}
|
|
9
|
+
<div class="absolute inset-0 z-50 flex items-center justify-center">
|
|
10
|
+
<LoaderRotate />
|
|
11
|
+
</div>
|
|
12
|
+
{/if}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
8
|
+
};
|
|
9
|
+
export type LoaderProps = typeof __propDef.props;
|
|
10
|
+
export type LoaderEvents = typeof __propDef.events;
|
|
11
|
+
export type LoaderSlots = typeof __propDef.slots;
|
|
12
|
+
export default class Loader extends SvelteComponentTyped<LoaderProps, LoaderEvents, LoaderSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<!-- $lib/ElementsUI/MessageModal.svelte -->
|
|
2
|
+
<script lang="ts">
|
|
3
|
+
import { onMount } from 'svelte'
|
|
4
|
+
import { fly } from 'svelte/transition'
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
message: { id: number; text: string }
|
|
8
|
+
onCLick: (messageId: number) => {}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
let { message, onCLick }: Props = $props()
|
|
12
|
+
|
|
13
|
+
const getMessageStyle = (text: string) => {
|
|
14
|
+
if (text.startsWith('ERR: ')) return 'text-red-500'
|
|
15
|
+
if (text.startsWith('OK: ')) return 'text-lime-500'
|
|
16
|
+
if (text.startsWith('WR: ')) return 'text-yellow-500'
|
|
17
|
+
return 'text-gray-400'
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
const getMessageText = (text: string) => {
|
|
21
|
+
if (text.startsWith('ERR: ')) return text.replace('ERR: ', '')
|
|
22
|
+
if (text.startsWith('OK: ')) return text.replace('OK: ', '')
|
|
23
|
+
if (text.startsWith('WR: ')) return text.replace('WR: ', '')
|
|
24
|
+
return text
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
let progress = $state(100)
|
|
28
|
+
onMount(() => {
|
|
29
|
+
const duration = 5000
|
|
30
|
+
const interval = 50
|
|
31
|
+
const step = (interval / duration) * 100
|
|
32
|
+
const timer = setInterval(() => {
|
|
33
|
+
progress -= step
|
|
34
|
+
if (progress <= 0) {
|
|
35
|
+
clearInterval(timer)
|
|
36
|
+
onCLick(message.id)
|
|
37
|
+
}
|
|
38
|
+
}, interval)
|
|
39
|
+
})
|
|
40
|
+
</script>
|
|
41
|
+
|
|
42
|
+
<div
|
|
43
|
+
transition:fly={{ y: 5, duration: 250 }}
|
|
44
|
+
class="my-1 flex flex-col rounded-2xl border border-[var(--border-color)] bg-[var(--back-color)] px-4 py-2 shadow-lg"
|
|
45
|
+
>
|
|
46
|
+
<div class="flex items-center justify-between">
|
|
47
|
+
<p class={`font-semibold ${getMessageStyle(message.text)}`}>{getMessageText(message.text)}</p>
|
|
48
|
+
<button class="ml-2 cursor-pointer text-2xl" onclick={() => onCLick(message.id)}>×</button>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
<div class="mt-2 h-2 w-full overflow-hidden rounded bg-gray-200">
|
|
52
|
+
<div class="h-full bg-[var(--green-color)]" style={`width: ${progress}%`}></div>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
8
|
+
};
|
|
9
|
+
export type MessageModalProps = typeof __propDef.props;
|
|
10
|
+
export type MessageModalEvents = typeof __propDef.events;
|
|
11
|
+
export type MessageModalSlots = typeof __propDef.slots;
|
|
12
|
+
export default class MessageModal extends SvelteComponentTyped<MessageModalProps, MessageModalEvents, MessageModalSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<!-- $lib/ElementsUI/ProgressBar.svelte -->
|
|
2
|
+
<script lang="ts">
|
|
3
|
+
import type { IProgressBarProps } from '../types'
|
|
4
|
+
|
|
5
|
+
let {
|
|
6
|
+
id = { name: '', value: crypto.randomUUID() },
|
|
7
|
+
label = { name: '', class: '' },
|
|
8
|
+
value = $bindable(0),
|
|
9
|
+
range = {
|
|
10
|
+
min: 0,
|
|
11
|
+
max: 100,
|
|
12
|
+
units: '%',
|
|
13
|
+
},
|
|
14
|
+
wrapperClass = '',
|
|
15
|
+
}: IProgressBarProps = $props()
|
|
16
|
+
|
|
17
|
+
let numericValue = $state(0)
|
|
18
|
+
const min = $derived(range.min ?? 0)
|
|
19
|
+
const max = $derived(range.max ?? 100)
|
|
20
|
+
|
|
21
|
+
$effect(() => {
|
|
22
|
+
if (typeof value === 'number' && !isNaN(value)) {
|
|
23
|
+
numericValue = Math.max(min, Math.min(max, value))
|
|
24
|
+
} else if (typeof value === 'string') {
|
|
25
|
+
const parsedValue = parseFloat(value)
|
|
26
|
+
if (!isNaN(parsedValue)) {
|
|
27
|
+
numericValue = Math.max(min, Math.min(max, parsedValue))
|
|
28
|
+
}
|
|
29
|
+
} else {
|
|
30
|
+
numericValue = min
|
|
31
|
+
}
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
let progressPercent = $derived((((value as number) - min) / (max - min)) * 100)
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<div id={id.value} class={`relative flex w-full flex-col items-center ${wrapperClass}`}>
|
|
38
|
+
{#if label.name}
|
|
39
|
+
<h5 class={`mb-1 w-full px-4 text-center ${label.class}`}>{label.name}</h5>
|
|
40
|
+
{/if}
|
|
41
|
+
|
|
42
|
+
<div class="flex w-full flex-col items-center">
|
|
43
|
+
<div class="relative h-2 w-full rounded bg-gray-400">
|
|
44
|
+
<div class="absolute top-0 left-0 h-full rounded bg-[var(--bg-color)]" style="width: {progressPercent}%;"></div>
|
|
45
|
+
</div>
|
|
46
|
+
<span class="ml-2 font-semibold">{numericValue.toFixed(2)}{range.units}</span>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
8
|
+
};
|
|
9
|
+
export type ProgressBarProps = typeof __propDef.props;
|
|
10
|
+
export type ProgressBarEvents = typeof __propDef.events;
|
|
11
|
+
export type ProgressBarSlots = typeof __propDef.slots;
|
|
12
|
+
export default class ProgressBar extends SvelteComponentTyped<ProgressBarProps, ProgressBarEvents, ProgressBarSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
<!-- $lib/ElementsUI/SwitchProps.svelte -->
|
|
2
|
+
<script lang="ts">
|
|
3
|
+
import { getContext } from 'svelte'
|
|
4
|
+
import { t } from '../locales/i18n'
|
|
5
|
+
import type { UIComponent, IProgressBarProps } from '../types'
|
|
6
|
+
import * as UI from '../index'
|
|
7
|
+
import { optionsStore } from '../options'
|
|
8
|
+
|
|
9
|
+
const { component, onPropertyChange } = $props<{
|
|
10
|
+
component: UIComponent & { properties: Partial<IProgressBarProps> }
|
|
11
|
+
onPropertyChange: (value: string | object) => void
|
|
12
|
+
}>()
|
|
13
|
+
|
|
14
|
+
const DeviceVariables = getContext<{ value: string; name: string }[]>('DeviceVariables')
|
|
15
|
+
let VARIABLE_OPTIONS = $derived(
|
|
16
|
+
DeviceVariables.map((variable: { value: string; name: string }) => ({
|
|
17
|
+
id: variable.name,
|
|
18
|
+
value: variable.value,
|
|
19
|
+
name: `${variable.value} | ${variable.name}`,
|
|
20
|
+
})),
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
const initialAlign = $derived(
|
|
24
|
+
$optionsStore.ALIGN_OPTIONS.find((a) =>
|
|
25
|
+
(a.value as string).includes(component.properties.label?.class?.split(' ').find((cls: string) => cls.startsWith('text-'))),
|
|
26
|
+
),
|
|
27
|
+
)
|
|
28
|
+
|
|
29
|
+
const initialColor = $derived(
|
|
30
|
+
$optionsStore.COLOR_OPTIONS.find((c) =>
|
|
31
|
+
(c.value as string).includes(component.properties.wrapperClass?.split(' ').find((cls: string) => cls.startsWith('bg-'))),
|
|
32
|
+
),
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
const handleLabelAlign = (align: string) => {
|
|
36
|
+
let labelClass = component.properties.label.class || ''
|
|
37
|
+
labelClass = labelClass
|
|
38
|
+
.split(' ')
|
|
39
|
+
.filter((cls: string) => !cls.startsWith('text-'))
|
|
40
|
+
.join(' ')
|
|
41
|
+
if (align) {
|
|
42
|
+
labelClass += ` ${align}`
|
|
43
|
+
}
|
|
44
|
+
updateProperty('label.class', labelClass)
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const handleOptionColorChange = (color: string) => {
|
|
48
|
+
let wrapperClass = component.properties.wrapperClass || ''
|
|
49
|
+
wrapperClass = wrapperClass
|
|
50
|
+
.split(' ')
|
|
51
|
+
.filter((cls: string) => !cls.startsWith('bg-'))
|
|
52
|
+
.join(' ')
|
|
53
|
+
if (color) {
|
|
54
|
+
wrapperClass += ` ${color}`
|
|
55
|
+
}
|
|
56
|
+
updateProperty('wrapperClass', wrapperClass)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/* Обновление свойства */
|
|
60
|
+
const updateProperty = (path: string, value: number | string | object) => {
|
|
61
|
+
const newProperties = JSON.parse(JSON.stringify(component.properties))
|
|
62
|
+
const parts = path.split('.')
|
|
63
|
+
let obj = newProperties
|
|
64
|
+
|
|
65
|
+
for (let i = 0; i < parts.length - 1; i++) {
|
|
66
|
+
const part = parts[i]
|
|
67
|
+
if (!obj[part]) obj[part] = {}
|
|
68
|
+
obj = obj[part]
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
obj[parts[parts.length - 1]] = value
|
|
72
|
+
onPropertyChange(newProperties)
|
|
73
|
+
}
|
|
74
|
+
</script>
|
|
75
|
+
|
|
76
|
+
{#if component && component.properties}
|
|
77
|
+
<div class="relative flex flex-row items-start justify-center">
|
|
78
|
+
<div class="flex w-1/3 flex-col items-center px-2">
|
|
79
|
+
<UI.Select
|
|
80
|
+
label={{ name: $t('service.constructor.props.variable') }}
|
|
81
|
+
options={VARIABLE_OPTIONS}
|
|
82
|
+
value={VARIABLE_OPTIONS.find((opt) => opt.value === component.properties.id.value)}
|
|
83
|
+
onUpdate={(value) => {
|
|
84
|
+
updateProperty('id.name', (value.name as string).split('|')[1].trim())
|
|
85
|
+
updateProperty('id.value', value.value as string)
|
|
86
|
+
}}
|
|
87
|
+
/>
|
|
88
|
+
</div>
|
|
89
|
+
<div class="flex w-1/3 flex-col px-2">
|
|
90
|
+
<UI.Input
|
|
91
|
+
wrapperClass="w-full"
|
|
92
|
+
label={{ name: $t('service.constructor.props.min') }}
|
|
93
|
+
value={component.properties.range.min as number}
|
|
94
|
+
type="number"
|
|
95
|
+
onUpdate={(value) => {
|
|
96
|
+
updateProperty('range.min', Number(value))
|
|
97
|
+
updateProperty('value', component.properties.range.min + (component.properties.range.max - component.properties.range.min) / 3)
|
|
98
|
+
}}
|
|
99
|
+
/>
|
|
100
|
+
<UI.Input
|
|
101
|
+
wrapperClass="w-full"
|
|
102
|
+
label={{ name: $t('service.constructor.props.max') }}
|
|
103
|
+
value={component.properties.range.max as number}
|
|
104
|
+
type="number"
|
|
105
|
+
onUpdate={(value) => {
|
|
106
|
+
updateProperty('range.max', Number(value))
|
|
107
|
+
updateProperty('value', component.properties.range.min + (component.properties.range.max - component.properties.range.min) / 3)
|
|
108
|
+
}}
|
|
109
|
+
/>
|
|
110
|
+
<UI.Input
|
|
111
|
+
wrapperClass="w-full"
|
|
112
|
+
label={{ name: $t('service.constructor.props.units') }}
|
|
113
|
+
value={component.properties.range.units}
|
|
114
|
+
type="text"
|
|
115
|
+
onUpdate={(value) => updateProperty('range.units', value)}
|
|
116
|
+
/>
|
|
117
|
+
</div>
|
|
118
|
+
<div class="flex w-1/3 flex-col px-2">
|
|
119
|
+
<UI.Input
|
|
120
|
+
wrapperClass="w-full"
|
|
121
|
+
label={{ name: $t('service.constructor.props.label') }}
|
|
122
|
+
value={component.properties.label.name}
|
|
123
|
+
type="text"
|
|
124
|
+
componentClass="w-full"
|
|
125
|
+
onUpdate={(value) => updateProperty('label.name', value as string)}
|
|
126
|
+
/>
|
|
127
|
+
<UI.Select
|
|
128
|
+
wrapperClass="w-full"
|
|
129
|
+
label={{ name: $t('service.constructor.props.align') }}
|
|
130
|
+
type="buttons"
|
|
131
|
+
value={initialAlign}
|
|
132
|
+
options={$optionsStore.ALIGN_OPTIONS}
|
|
133
|
+
onUpdate={(option) => handleLabelAlign(option.value as string)}
|
|
134
|
+
/>
|
|
135
|
+
<UI.Select
|
|
136
|
+
wrapperClass="!h-14"
|
|
137
|
+
label={{ name: $t('service.constructor.props.colors') }}
|
|
138
|
+
type="buttons"
|
|
139
|
+
options={$optionsStore.COLOR_OPTIONS}
|
|
140
|
+
value={initialColor}
|
|
141
|
+
onUpdate={(option) => handleOptionColorChange(option.value as string)}
|
|
142
|
+
/>
|
|
143
|
+
</div>
|
|
144
|
+
</div>
|
|
145
|
+
{/if}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
8
|
+
};
|
|
9
|
+
export type ProgressBarPropsProps = typeof __propDef.props;
|
|
10
|
+
export type ProgressBarPropsEvents = typeof __propDef.events;
|
|
11
|
+
export type ProgressBarPropsSlots = typeof __propDef.slots;
|
|
12
|
+
export default class ProgressBarProps extends SvelteComponentTyped<ProgressBarPropsProps, ProgressBarPropsEvents, ProgressBarPropsSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|