-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathdate-time-input.component.ts
More file actions
143 lines (135 loc) · 4.26 KB
/
date-time-input.component.ts
File metadata and controls
143 lines (135 loc) · 4.26 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
/**
* 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, input, computed, ChangeDetectionStrategy, inject } from '@angular/core';
import { A2uiRendererService } from '../../core/a2ui-renderer.service';
import { BoundProperty } from '../../core/types';
/**
* Angular implementation of the A2UI DateTimeInput component (v0.9).
*
* Renders date and/or time input fields. Combines them into an ISO string
* for the bound data model property.
*/
@Component({
selector: 'a2ui-v09-date-time-input',
standalone: true,
imports: [],
template: `
<div class="a2ui-date-time-container">
@if (label()) {
<label class="a2ui-date-time-label">
{{ label() }}
</label>
}
<div class="a2ui-date-time-inputs">
@if (enableDate()) {
<input
type="date"
[value]="dateValue()"
(change)="handleDateChange($event)"
class="a2ui-date-time-input"
/>
}
@if (enableTime()) {
<input
type="time"
[value]="timeValue()"
(change)="handleTimeChange($event)"
class="a2ui-date-time-input"
/>
}
</div>
</div>
`,
styles: [
`
.a2ui-date-time-container {
display: flex;
flex-direction: column;
gap: 4px;
width: 100%;
}
.a2ui-date-time-label {
font-size: 14px;
color: #666;
}
.a2ui-date-time-inputs {
display: flex;
gap: 8px;
width: 100%;
}
.a2ui-date-time-input {
padding: 8px;
border-radius: 4px;
border: 1px solid #ccc;
font-family: inherit;
flex: 1;
}
.a2ui-date-time-input,
.a2ui-date-time-input::-webkit-datetime-edit,
.a2ui-date-time-input::-webkit-datetime-edit-fields-wrapper {
color: #333;
}
`,
],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class DateTimeInputComponent {
/**
* Reactive properties resolved from the A2UI {@link ComponentModel}.
*
* Expected properties:
* - `value`: The current ISO date/time string.
* - `label`: Optional label text.
* - `enableDate`: Whether to show the date picker (default: true).
* - `enableTime`: Whether to show the time picker (default: false).
*/
props = input<Record<string, BoundProperty>>({});
surfaceId = input.required<string>();
componentId = input<string>();
dataContextPath = input<string>('/');
label = computed(() => this.props()['label']?.value());
enableDate = computed(() => this.props()['enableDate']?.value() ?? true);
enableTime = computed(() => this.props()['enableTime']?.value() ?? false);
private rawValue = computed(() => this.props()['value']?.value() || '');
dateValue = computed(() => {
const val = this.rawValue();
if (!val) return '';
return val.includes('T') ? val.split('T')[0] : val;
});
timeValue = computed(() => {
const val = this.rawValue();
if (!val || !val.includes('T')) return '';
return val.split('T')[1].substring(0, 5);
});
handleDateChange(event: Event) {
const date = (event.target as HTMLInputElement).value;
const current = this.rawValue();
if (this.enableTime()) {
const time = current.includes('T') ? current.split('T')[1] : '00:00:00';
this.props()['value']?.onUpdate(`${date}T${time}`);
} else {
this.props()['value']?.onUpdate(date);
}
}
handleTimeChange(event: Event) {
const time = (event.target as HTMLInputElement).value;
const current = this.rawValue();
const date = current.includes('T')
? current.split('T')[0]
: current || new Date().toISOString().split('T')[0];
this.props()['value']?.onUpdate(`${date}T${time}:00`);
}
}