-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathtext-field.component.ts
More file actions
123 lines (119 loc) · 4.49 KB
/
text-field.component.ts
File metadata and controls
123 lines (119 loc) · 4.49 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
/**
* Copyright 2026 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
*
* http://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 {Component, computed, ChangeDetectionStrategy} from '@angular/core';
import {BasicCatalogComponent} from './basic-catalog-component';
import {TextFieldApi} from '@a2ui/web_core/v0_9/basic_catalog';
import {AnyDuringSchemaAlignment} from '../types';
/**
* Angular implementation of the A2UI TextField component (v0.9).
*
* Renders a text input field with an optional label and placeholder.
* Updates the bound data model property on every input change.
*
* Supported CSS variables:
* - `--a2ui-color-input`: Controls the background color of the input.
* - `--a2ui-color-on-input`: Controls the text color of the input.
* - `--a2ui-textfield-border`: Controls the border of the input.
* - `--a2ui-textfield-border-radius`: Controls the border radius of the input.
* - `--a2ui-textfield-padding`: Controls the padding of the input.
* - `--a2ui-textfield-color-border-focus`: Controls the border color on focus.
* - `--a2ui-textfield-color-error`: Controls the border and text color for error states.
* - `--a2ui-textfield-label-font-size`: Controls the font size of the label.
* - `--a2ui-textfield-label-font-weight`: Controls the font weight of the label.
*/
@Component({
selector: 'a2ui-v09-text-field',
standalone: true,
imports: [],
template: `
<div class="a2ui-text-field-container">
@if (label()) {
<label>{{ label() }}</label>
}
<input
[type]="inputType()"
[value]="value()"
(input)="handleInput($event)"
[placeholder]="placeholder()"
[class.invalid]="props()['isValid']?.value() === false"
/>
@for (message of props()['validationErrors']?.value(); track message) {
<div class="a2ui-error-message">{{ message }}</div>
}
</div>
`,
styles: [
`
.a2ui-text-field-container {
display: flex;
flex-direction: column;
gap: var(--a2ui-spacing-xs, 4px);
margin: var(--a2ui-spacing-xs, 4px);
}
label {
font-size: var(
--a2ui-textfield-label-font-size,
var(--a2ui-label-font-size, var(--a2ui-font-size-s, 14px))
);
font-weight: var(--a2ui-textfield-label-font-weight, bold);
color: var(--a2ui-text-color-text, var(--a2ui-color-on-background, #333));
}
input {
padding: var(--a2ui-textfield-padding, 8px);
border: var(--a2ui-textfield-border, 1px solid var(--a2ui-color-border, #ccc));
border-radius: var(--a2ui-textfield-border-radius, 4px);
background-color: var(--a2ui-color-input, #fff);
color: var(--a2ui-color-on-input, #333);
}
input:focus {
border-color: var(--a2ui-textfield-color-border-focus, var(--a2ui-color-primary, #17e));
outline: none;
}
input.invalid {
border-color: var(--a2ui-textfield-color-error, var(--a2ui-color-error, red));
}
.a2ui-error-message {
color: var(--a2ui-textfield-color-error, var(--a2ui-color-error, red));
font-size: var(--a2ui-font-size-xs, 12px);
}
`,
],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class TextFieldComponent extends BasicCatalogComponent<typeof TextFieldApi> {
readonly label = computed(() => this.props()['label']?.value());
readonly value = computed(() => this.props()['value']?.value() || '');
readonly placeholder = computed(
() => (this.props() as AnyDuringSchemaAlignment)['placeholder']?.value() || '',
);
readonly variant = computed(() => this.props()['variant']?.value());
readonly inputType = computed(() => {
switch (this.variant()) {
case 'obscured':
return 'password';
case 'number':
return 'number';
default:
return 'text';
}
});
handleInput(event: Event) {
const value = (event.target as HTMLInputElement).value;
// Update the data path. If anything is listening to this path, it will be
// notified.
this.props()['value']?.onUpdate(value);
}
}