-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathau-date-picker.gts
279 lines (245 loc) · 8.24 KB
/
au-date-picker.gts
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
import {
formatDate,
isIsoDateString,
toIsoDateString,
} from '@appuniversum/ember-appuniversum/utils/date';
import { assert, runInDebug } from '@ember/debug';
import { on } from '@ember/modifier';
import { action } from '@ember/object';
import { guidFor } from '@ember/object/internals';
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import { modifier } from 'ember-modifier';
import AuLabel from './au-label';
import type { DuetDatePickerChangeEvent } from '@duetds/date-picker/dist/types/components/duet-date-picker/duet-date-picker';
import type { DuetLocalizedText } from '@duetds/date-picker/dist/types/components/duet-date-picker/date-localization';
import type { DuetDateAdapter } from '@duetds/date-picker/dist/types/components/duet-date-picker/date-adapter';
type IsoDate = string;
type Adapter = DuetDateAdapter;
type Localization = DuetLocalizedText;
type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6; // Based on this enum: https://github.com/duetds/date-picker/blob/a89499198d6e5555073bb0dec3a3dab9a5b3648b/src/components/duet-date-picker/date-utils.ts#L3
export interface AuDatePickerSignature {
Args: {
alignment?: 'top';
adapter?: Adapter;
buttonLabel?: string;
disabled?: boolean;
error?: boolean;
'first-day'?: DayOfWeek;
firstDay?: DayOfWeek;
id?: string;
label?: string;
localization?: Localization;
max?: IsoDate | Date;
min?: IsoDate | Date;
value?: IsoDate | Date;
warning?: boolean;
onChange?: (isoDate: IsoDate | null, date: Date | null) => void;
};
Element: HTMLDuetDatePickerElement;
}
type DayNames = [string, string, string, string, string, string, string];
// prettier-ignore
type MonthNames = [string, string, string, string, string, string, string, string, string, string, string, string];
const DEFAULT_LOCALIZATION: Localization = {
dayNames: getLocalizedDays(),
monthNames: getLocalizedMonths(),
monthNamesShort: getLocalizedMonths('short'),
buttonLabel: 'Kies een datum',
placeholder: 'DD-MM-JJJJ',
selectedDateMessage: 'De geselecteerde datum is',
prevMonthLabel: 'Vorige maand',
nextMonthLabel: 'Volgende maand',
monthSelectLabel: 'Maand',
yearSelectLabel: 'Jaar',
closeLabel: 'Sluit venster',
calendarHeading: 'Kies een datum',
locale: 'nl-BE',
};
const DEFAULT_ADAPTER: Adapter = {
parse: function (
value = '',
createDate: (day: string, month: string, year: string) => Date,
) {
const dateRegex = /^(\d{1,2})-(\d{1,2})-(\d{4})$/;
const matches = value.match(dateRegex);
if (matches) {
return createDate(
matches[3] as string,
matches[2] as string,
matches[1] as string,
);
}
},
format: formatDate,
};
export default class AuDatePicker extends Component<AuDatePickerSignature> {
// @ts-expect-error TODO: Something is wrong with the decorator types, but I'm not sure how to fix it.
@asIsoDate declare value: IsoDate;
// @ts-expect-error TODO: Something is wrong with the decorator types, but I'm not sure how to fix it.
@asIsoDate declare min: IsoDate;
// @ts-expect-error TODO: Something is wrong with the decorator types, but I'm not sure how to fix it.
@asIsoDate declare max: IsoDate;
@tracked isInitialized = false;
constructor(owner: unknown, args: AuDatePickerSignature['Args']) {
super(owner, args);
void this.registerDuetDatePicker();
}
get adapter() {
if (!this.args.adapter) {
return DEFAULT_ADAPTER;
}
runInDebug(() => validateAdapter(this.args.adapter));
return {
...DEFAULT_ADAPTER,
...this.args.adapter,
};
}
get id() {
return this.args.id ? this.args.id : guidFor(this);
}
get localization() {
if (!this.args.localization) {
return DEFAULT_LOCALIZATION;
}
runInDebug(() => validateLocalization(this.args.localization));
return {
...DEFAULT_LOCALIZATION,
...this.args.localization,
};
}
get error() {
if (this.args.error) return 'duet-date-error';
if (this.args.warning) return 'duet-date-warning';
else return '';
}
get alignment() {
if (this.args.alignment == 'top') return 'au-c-datepicker--top';
else return '';
}
get firstDayOfWeek() {
return this.args.firstDay || this.args['first-day'];
}
@action
handleDuetDateChange(event: CustomEvent<DuetDatePickerChangeEvent>) {
const wasDatePickerCleared = !event.detail.value;
if (wasDatePickerCleared) {
this.args.onChange?.(null, null);
} else {
this.args.onChange?.(event.detail.value, event.detail.valueAsDate);
}
}
async registerDuetDatePicker() {
if (typeof globalThis.FastBoot === 'undefined') {
const { defineCustomElements: registerDuetDatePicker } = await import(
'@duetds/date-picker/custom-element'
);
registerDuetDatePicker();
this.isInitialized = true;
}
}
<template>
<div class="au-c-datepicker {{this.alignment}}" data-test-au-date-picker>
{{#if @label}}
<AuLabel
@error={{@error}}
@warning={{@warning}}
for={{this.id}}
data-test-au-date-picker-label
>{{@label}}</AuLabel>
{{/if}}
{{#if this.isInitialized}}
<duet-date-picker
class={{this.error}}
disabled={{@disabled}}
buttonLabel={{@buttonLabel}}
identifier={{this.id}}
value={{this.value}}
min={{this.min}}
max={{this.max}}
first-day-of-week={{this.firstDayOfWeek}}
data-test-au-date-picker-component
{{! @glint-expect-error duetChange is a custom event but the types expect Event instead}}
{{on "duetChange" this.handleDuetDateChange}}
{{props localization=this.localization dateAdapter=this.adapter}}
...attributes
></duet-date-picker>
{{/if}}
</div>
</template>
}
function validateAdapter(adapterArg?: Adapter) {
assert(
`The @adapter argument needs to be an object but it is a "${typeof adapterArg}"`,
Boolean(adapterArg) && typeof adapterArg === 'object',
);
Object.keys(adapterArg).map((key) => {
assert(
`"${key}" is not a property of adapter, maybe it is just a typo?`,
key in DEFAULT_ADAPTER,
);
});
}
function validateLocalization(localizationArg?: Localization) {
assert(
`The @localization argument needs to be an object but it is a "${typeof localizationArg}"`,
Boolean(localizationArg) && typeof localizationArg === 'object',
);
Object.keys(localizationArg).map((key) => {
assert(
`"${key}" is not a property of localization, maybe it is just a typo?`,
key in DEFAULT_LOCALIZATION,
);
});
}
function asIsoDate(target: unknown, key: string /*, descriptor */) {
return {
get(this: AuDatePicker): string | undefined {
const argValue = (this.args as { [key: string]: unknown })[key];
if (!argValue) {
return;
}
assert(
`@${key} should be a string or a Date instance but it is a "${typeof argValue}"`,
typeof argValue === 'string' || argValue instanceof Date,
);
if (argValue instanceof Date) {
return toIsoDateString(argValue);
} else {
assert(
`@${key} ("${argValue}") should be a valid ISO 8601 formatted date`,
isIsoDateString(argValue),
);
return argValue;
}
},
};
}
function getLocalizedMonths(monthFormat = 'long'): MonthNames {
const someYear = 2021;
return [...Array(12).keys()].map((monthIndex) => {
const date = new Date(someYear, monthIndex);
return intl({ month: monthFormat }).format(date);
}) as MonthNames;
}
function getLocalizedDays(weekdayFormat = 'long'): DayNames {
const someSunday = new Date('2021-01-03');
return [...Array(7).keys()].map((index) => {
const weekday = new Date(someSunday.getTime());
weekday.setDate(someSunday.getDate() + index);
return intl({ weekday: weekdayFormat }).format(weekday);
}) as DayNames;
}
function intl(options: object) {
return new Intl.DateTimeFormat('nl-BE', options);
}
const props = modifier(function props(
element: HTMLElement,
positional,
properties: { [key: string]: unknown },
) {
for (const propertyName in properties) {
(element as unknown as { [key: string]: unknown })[propertyName] =
properties[propertyName];
}
});