-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathslider.ts
More file actions
148 lines (130 loc) · 4.09 KB
/
slider.ts
File metadata and controls
148 lines (130 loc) · 4.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/*
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { html, css, nothing } from "lit";
import { customElement, property } from "lit/decorators.js";
import { Root } from "./root.js";
import { A2uiMessageProcessor } from "@a2ui/web_core/data/model-processor";
import * as Primitives from "@a2ui/web_core/types/primitives";
import { classMap } from "lit/directives/class-map.js";
import { styleMap } from "lit/directives/style-map.js";
import { structuralStyles } from "./styles.js";
import { extractNumberValue, extractStringValue } from "./utils/utils.js";
@customElement("a2ui-slider")
export class Slider extends Root {
@property()
accessor value: Primitives.NumberValue | null = null;
@property()
accessor minValue = 0;
@property()
accessor maxValue = 0;
@property()
accessor label: Primitives.StringValue | null = null;
static styles = [
structuralStyles,
css`
* {
box-sizing: border-box;
}
:host {
display: block;
flex: var(--weight);
}
input {
display: block;
width: 100%;
}
.description {
}
`,
];
#setBoundValue(value: string) {
if (!this.value || !("path" in this.value) || !this.value.path) {
return;
}
this.updateBoundData(this.value.path, value);
}
#renderField(value: string | number) {
return html`<section
class=${classMap(this.theme.components.Slider.container)}
>
${this.label
? html`<label class=${classMap(this.theme.components.Slider.label)} for="data">
${extractStringValue(
this.label,
this.component,
this.processor,
this.surfaceId
)}
</label>`
: nothing}
<input
autocomplete="off"
class=${classMap(this.theme.components.Slider.element)}
style=${this.theme.additionalStyles?.Slider
? styleMap(this.theme.additionalStyles?.Slider)
: nothing}
@input=${(evt: Event) => {
if (!(evt.target instanceof HTMLInputElement)) {
return;
}
this.#setBoundValue(evt.target.value);
}}
id="data"
name="data"
.value=${value}
type="range"
min=${this.minValue ?? "0"}
max=${this.maxValue ?? "0"}
/>
<span class=${classMap(this.theme.components.Slider.label)}
>${this.value
? extractNumberValue(
this.value,
this.component,
this.processor,
this.surfaceId
)
: "0"}</span
>
</section>`;
}
render() {
if (this.value && typeof this.value === "object") {
if ("literalNumber" in this.value && this.value.literalNumber) {
return this.#renderField(this.value.literalNumber);
} else if ("literal" in this.value && this.value.literal !== undefined) {
return this.#renderField(this.value.literal);
} else if (this.value && "path" in this.value && this.value.path) {
if (!this.processor || !this.component) {
return html`(no processor)`;
}
const textValue = this.processor.getData(
this.component,
this.value.path,
this.surfaceId ?? A2uiMessageProcessor.DEFAULT_SURFACE_ID
);
if (textValue === null) {
return html`Invalid value`;
}
if (typeof textValue !== "string" && typeof textValue !== "number") {
return html`Invalid value`;
}
return this.#renderField(textValue);
}
}
return nothing;
}
}