-
Notifications
You must be signed in to change notification settings - Fork 170
/
relative-time-element.ts
479 lines (412 loc) · 14.2 KB
/
relative-time-element.ts
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
import {Duration, elapsedTime, getRelativeTimeUnit, isDuration, roundToSingleUnit, Unit, unitNames} from './duration.js'
const HTMLElement = globalThis.HTMLElement || (null as unknown as typeof window['HTMLElement'])
export type DeprecatedFormat = 'auto' | 'micro' | 'elapsed'
export type ResolvedFormat = 'duration' | 'relative' | 'datetime'
export type Format = DeprecatedFormat | ResolvedFormat
export type FormatStyle = 'long' | 'short' | 'narrow'
export type Tense = 'auto' | 'past' | 'future'
const emptyDuration = new Duration()
const microEmptyDuration = new Duration(0, 0, 0, 0, 0, 1)
export class RelativeTimeUpdatedEvent extends Event {
constructor(public oldText: string, public newText: string, public oldTitle: string, public newTitle: string) {
super('relative-time-updated', {bubbles: true, composed: true})
}
}
function getUnitFactor(el: RelativeTimeElement): number {
if (!el.date) return Infinity
if (el.format === 'duration' || el.format === 'elapsed') {
const precision = el.precision
if (precision === 'second') {
return 1000
} else if (precision === 'minute') {
return 60 * 1000
}
}
const ms = Math.abs(Date.now() - el.date.getTime())
if (ms < 60 * 1000) return 1000
if (ms < 60 * 60 * 1000) return 60 * 1000
return 60 * 60 * 1000
}
const dateObserver = new (class {
elements: Set<RelativeTimeElement> = new Set()
time = Infinity
observe(element: RelativeTimeElement) {
if (this.elements.has(element)) return
this.elements.add(element)
const date = element.date
if (date && date.getTime()) {
const ms = getUnitFactor(element)
const time = Date.now() + ms
if (time < this.time) {
clearTimeout(this.timer)
this.timer = setTimeout(() => this.update(), ms)
this.time = time
}
}
}
unobserve(element: RelativeTimeElement) {
if (!this.elements.has(element)) return
this.elements.delete(element)
}
timer: ReturnType<typeof setTimeout> = -1 as unknown as ReturnType<typeof setTimeout>
update() {
clearTimeout(this.timer)
if (!this.elements.size) return
let nearestDistance = Infinity
for (const timeEl of this.elements) {
nearestDistance = Math.min(nearestDistance, getUnitFactor(timeEl))
timeEl.update()
}
this.time = Math.min(60 * 60 * 1000, nearestDistance)
this.timer = setTimeout(() => this.update(), this.time)
this.time += Date.now()
}
})()
export class RelativeTimeElement extends HTMLElement implements Intl.DateTimeFormatOptions {
static define(tag = 'relative-time', registry = customElements) {
registry.define(tag, this)
return this
}
#customTitle = false
#updating: false | Promise<void> = false
get #lang() {
return (
this.closest('[lang]')?.getAttribute('lang') ||
this.ownerDocument.documentElement.getAttribute('lang') ||
'default'
)
}
#renderRoot: Node = this.shadowRoot ? this.shadowRoot : this.attachShadow ? this.attachShadow({mode: 'open'}) : this
static get observedAttributes() {
return [
'second',
'minute',
'hour',
'weekday',
'day',
'month',
'year',
'time-zone-name',
'prefix',
'threshold',
'tense',
'precision',
'format',
'format-style',
'no-title',
'datetime',
'lang',
'title',
]
}
// Internal: Format the ISO 8601 timestamp according to the user agent's
// locale-aware formatting rules. The element's existing `title` attribute
// value takes precedence over this custom format.
//
// Returns a formatted time String.
#getFormattedTitle(date: Date): string | undefined {
return new Intl.DateTimeFormat(this.#lang, {
day: 'numeric',
month: 'short',
year: 'numeric',
hour: 'numeric',
minute: '2-digit',
timeZoneName: 'short',
}).format(date)
}
#resolveFormat(duration: Duration): ResolvedFormat {
const format: string = this.format
if (format === 'datetime') return 'datetime'
if (format === 'duration') return 'duration'
// elapsed is an alias for 'duration'
if (format === 'elapsed') return 'duration'
// 'micro' is an alias for 'duration'
if (format === 'micro') return 'duration'
// 'auto' is an alias for 'relative'
if ((format === 'auto' || format === 'relative') && typeof Intl !== 'undefined' && Intl.RelativeTimeFormat) {
const tense = this.tense
if (tense === 'past' || tense === 'future') return 'relative'
if (Duration.compare(duration, this.threshold) === 1) return 'relative'
}
return 'datetime'
}
#getDurationFormat(duration: Duration): string {
const locale = this.#lang
const format = this.format
const style = this.formatStyle
const tense = this.tense
let empty = emptyDuration
if (format === 'micro') {
duration = roundToSingleUnit(duration)
empty = microEmptyDuration
if ((this.tense === 'past' && duration.sign !== -1) || (this.tense === 'future' && duration.sign !== 1)) {
duration = microEmptyDuration
}
} else if ((tense === 'past' && duration.sign !== -1) || (tense === 'future' && duration.sign !== 1)) {
duration = empty
}
const display = `${this.precision}sDisplay`
if (duration.blank) {
return empty.toLocaleString(locale, {style, [display]: 'always'})
}
return duration.abs().toLocaleString(locale, {style})
}
#getRelativeFormat(duration: Duration): string {
const relativeFormat = new Intl.RelativeTimeFormat(this.#lang, {
numeric: 'auto',
style: this.formatStyle,
})
const tense = this.tense
if (tense === 'future' && duration.sign !== 1) duration = emptyDuration
if (tense === 'past' && duration.sign !== -1) duration = emptyDuration
const [int, unit] = getRelativeTimeUnit(duration)
if (unit === 'second' && int < 10) {
return relativeFormat.format(0, this.precision === 'millisecond' ? 'second' : this.precision)
}
return relativeFormat.format(int, unit)
}
#getDateTimeFormat(date: Date): string {
const formatter = new Intl.DateTimeFormat(this.#lang, {
second: this.second,
minute: this.minute,
hour: this.hour,
weekday: this.weekday,
day: this.day,
month: this.month,
year: this.year,
timeZoneName: this.timeZoneName,
})
return `${this.prefix} ${formatter.format(date)}`.trim()
}
#onRelativeTimeUpdated: ((event: RelativeTimeUpdatedEvent) => void) | null = null
get onRelativeTimeUpdated() {
return this.#onRelativeTimeUpdated
}
set onRelativeTimeUpdated(listener: ((event: RelativeTimeUpdatedEvent) => void) | null) {
if (this.#onRelativeTimeUpdated) {
this.removeEventListener(
'relative-time-updated',
this.#onRelativeTimeUpdated as unknown as EventListenerOrEventListenerObject,
)
}
this.#onRelativeTimeUpdated = typeof listener === 'object' || typeof listener === 'function' ? listener : null
if (typeof listener === 'function') {
this.addEventListener('relative-time-updated', listener as unknown as EventListenerOrEventListenerObject)
}
}
get second() {
const second = this.getAttribute('second')
if (second === 'numeric' || second === '2-digit') return second
}
set second(value: 'numeric' | '2-digit' | undefined) {
this.setAttribute('second', value || '')
}
get minute() {
const minute = this.getAttribute('minute')
if (minute === 'numeric' || minute === '2-digit') return minute
}
set minute(value: 'numeric' | '2-digit' | undefined) {
this.setAttribute('minute', value || '')
}
get hour() {
const hour = this.getAttribute('hour')
if (hour === 'numeric' || hour === '2-digit') return hour
}
set hour(value: 'numeric' | '2-digit' | undefined) {
this.setAttribute('hour', value || '')
}
get weekday() {
const weekday = this.getAttribute('weekday')
if (weekday === 'long' || weekday === 'short' || weekday === 'narrow') {
return weekday
}
if (this.format === 'datetime' && weekday !== '') return this.formatStyle
}
set weekday(value: 'short' | 'long' | 'narrow' | undefined) {
this.setAttribute('weekday', value || '')
}
get day() {
const day = this.getAttribute('day') ?? 'numeric'
if (day === 'numeric' || day === '2-digit') return day
}
set day(value: 'numeric' | '2-digit' | undefined) {
this.setAttribute('day', value || '')
}
get month() {
const format = this.format
let month = this.getAttribute('month')
if (month === '') return
month ??= format === 'datetime' ? this.formatStyle : 'short'
if (month === 'numeric' || month === '2-digit' || month === 'short' || month === 'long' || month === 'narrow') {
return month
}
}
set month(value: 'numeric' | '2-digit' | 'short' | 'long' | 'narrow' | undefined) {
this.setAttribute('month', value || '')
}
get year() {
const year = this.getAttribute('year')
if (year === 'numeric' || year === '2-digit') return year
if (!this.hasAttribute('year') && new Date().getUTCFullYear() !== this.date?.getUTCFullYear()) {
return 'numeric'
}
}
set year(value: 'numeric' | '2-digit' | undefined) {
this.setAttribute('year', value || '')
}
get timeZoneName() {
const name = this.getAttribute('time-zone-name')
if (
name === 'long' ||
name === 'short' ||
name === 'shortOffset' ||
name === 'longOffset' ||
name === 'shortGeneric' ||
name === 'longGeneric'
) {
return name
}
}
set timeZoneName(
value: 'long' | 'short' | 'shortOffset' | 'longOffset' | 'shortGeneric' | 'longGeneric' | undefined,
) {
this.setAttribute('time-zone-name', value || '')
}
/** @deprecated */
get prefix(): string {
return this.getAttribute('prefix') ?? (this.format === 'datetime' ? '' : 'on')
}
/** @deprecated */
set prefix(value: string) {
this.setAttribute('prefix', value)
}
get threshold(): string {
const threshold = this.getAttribute('threshold')
return threshold && isDuration(threshold) ? threshold : 'P30D'
}
set threshold(value: string) {
this.setAttribute('threshold', value)
}
get tense(): Tense {
const tense = this.getAttribute('tense')
if (tense === 'past') return 'past'
if (tense === 'future') return 'future'
return 'auto'
}
set tense(value: Tense) {
this.setAttribute('tense', value)
}
get precision(): Unit {
const precision = this.getAttribute('precision') as unknown as Unit
if (unitNames.includes(precision)) return precision
if (this.format === 'micro') return 'minute'
return 'second'
}
set precision(value: Unit) {
this.setAttribute('precision', value)
}
get format(): Format {
const format = this.getAttribute('format')
if (format === 'datetime') return 'datetime'
if (format === 'relative') return 'relative'
if (format === 'duration') return 'duration'
if (format === 'micro') return 'micro'
if (format === 'elapsed') return 'elapsed'
return 'auto'
}
set format(value: Format) {
this.setAttribute('format', value)
}
get formatStyle(): FormatStyle {
const formatStyle = this.getAttribute('format-style')
if (formatStyle === 'long') return 'long'
if (formatStyle === 'short') return 'short'
if (formatStyle === 'narrow') return 'narrow'
const format = this.format
if (format === 'elapsed' || format === 'micro') return 'narrow'
if (format === 'datetime') return 'short'
return 'long'
}
set formatStyle(value: FormatStyle) {
this.setAttribute('format-style', value)
}
get noTitle(): boolean {
return this.hasAttribute('no-title')
}
set noTitle(value: boolean | undefined) {
this.toggleAttribute('no-title', value)
}
get datetime() {
return this.getAttribute('datetime') || ''
}
set datetime(value: string) {
this.setAttribute('datetime', value)
}
get date() {
const parsed = Date.parse(this.datetime)
return Number.isNaN(parsed) ? null : new Date(parsed)
}
set date(value: Date | null) {
this.datetime = value?.toISOString() || ''
}
connectedCallback(): void {
this.update()
}
disconnectedCallback(): void {
dateObserver.unobserve(this)
}
// Internal: Refresh the time element's formatted date when an attribute changes.
attributeChangedCallback(attrName: string, oldValue: unknown, newValue: unknown): void {
if (oldValue === newValue) return
if (attrName === 'title') {
this.#customTitle = newValue !== null && (this.date && this.#getFormattedTitle(this.date)) !== newValue
}
if (!this.#updating && !(attrName === 'title' && this.#customTitle)) {
this.#updating = (async () => {
await Promise.resolve()
this.update()
this.#updating = false
})()
}
}
update() {
const oldText: string = this.#renderRoot.textContent || this.textContent || ''
const oldTitle: string = this.getAttribute('title') || ''
let newTitle: string = oldTitle
const date = this.date
if (typeof Intl === 'undefined' || !Intl.DateTimeFormat || !date) {
this.#renderRoot.textContent = oldText
return
}
const now = Date.now()
if (!this.#customTitle) {
newTitle = this.#getFormattedTitle(date) || ''
if (newTitle && !this.noTitle) this.setAttribute('title', newTitle)
}
const duration = elapsedTime(date, this.precision, now)
const format = this.#resolveFormat(duration)
let newText = oldText
if (format === 'duration') {
newText = this.#getDurationFormat(duration)
} else if (format === 'relative') {
newText = this.#getRelativeFormat(duration)
} else {
newText = this.#getDateTimeFormat(date)
}
if (newText) {
this.#renderRoot.textContent = newText
} else if (this.shadowRoot === this.#renderRoot && this.textContent) {
// Ensure invalid dates fall back to lightDOM text content
this.#renderRoot.textContent = this.textContent
}
if (newText !== oldText || newTitle !== oldTitle) {
this.dispatchEvent(new RelativeTimeUpdatedEvent(oldText, newText, oldTitle, newTitle))
}
if (format === 'relative' || format === 'duration') {
dateObserver.observe(this)
} else {
dateObserver.unobserve(this)
}
}
}
export default RelativeTimeElement