-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelative-time.js
More file actions
291 lines (266 loc) · 5.49 KB
/
Copy pathrelative-time.js
File metadata and controls
291 lines (266 loc) · 5.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
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
/**
* @tag relative-time
* @summary A Web Component to display a relative time (e.g. "5 minutes ago", "in 2 days"). Uses the built-in Intl.RelativeTimeFormat API.
* @attr {string} lang - Language code to control locale formatting.
* @attr {string} division - Force a specific unit (e.g. "minute", "hour").
* @attr {string} max-division - Maximum unit allowed when formatting.
* @attr {string} format-numeric - Determines numeric display ("auto" or "always").
* @attr {string} numeric-format - Alias for `format-numeric`.
* @attr {string} format-style - Determines style ("long", "short", "narrow").
* @attr {string} style-format - Alias for `format-style`.
*/
export default class RelativeTime extends HTMLElement {
/**
* @param {string} [tagName="relative-time"]
*/
static define(tagName) {
if ("customElements" in window) {
customElements.define(tagName || "relative-time", RelativeTime);
}
}
/**
* @inheritdoc
*/
connectedCallback() {
if (this.timeElements.length === 0) {
return;
}
this.#setString();
const { signal } = (this.controller = new AbortController());
window.addEventListener(
"focus",
() => {
this.#setString();
},
{ signal },
);
if (typeof MutationObserver === "function") {
this.observer = new MutationObserver(
this.#handleMutations.bind(this),
);
this.#observeDateTimes();
}
}
/**
* @inheritdoc
*/
attributeChangedCallback() {
this.#setString();
}
/**
* @inheritdoc
*/
disconnectedCallback() {
if (this.controller) {
this.controller.abort();
}
if (this.observer) {
this.observer.disconnect();
}
}
/**
* @type {string[]}
* @readonly
*/
static observedAttributes = [
"lang",
"division",
"max-division",
"format-numeric",
"numeric-format",
"format-style",
"style-format",
];
/**
* @type {{ amount: number, name: string }[]}
* @readonly
*/
static divisions = [
{
amount: 60,
name: "second",
},
{
amount: 60,
name: "minute",
},
{
amount: 24,
name: "hour",
},
{
amount: 7,
name: "day",
},
{
amount: 4.34524,
name: "week",
},
{
amount: 12,
name: "month",
},
{
amount: Number.POSITIVE_INFINITY,
name: "year",
},
];
/**
* @type {string[]}
* @readonly
*/
static numericFormats = ["always", "auto"];
/**
* @type {string[]}
* @readonly
*/
static styleFormats = ["long", "short", "narrow"];
/**
* @type {string|undefined}
* @readonly
*/
get locale() {
return (
this.getAttribute("lang") ||
this.closest("[lang]")?.getAttribute("lang") ||
undefined
);
}
/**
* @type {Intl.RelativeTimeFormat}
* @readonly
*/
get rtf() {
return new Intl.RelativeTimeFormat(this.locale, {
localeMatcher: "best fit",
numeric: this.formatNumeric,
style: this.formatStyle,
});
}
/**
* @type {NodeList}
* @readonly
*/
get timeElements() {
return this.querySelectorAll("time[datetime]");
}
/**
* @type {string|null}
* @readonly
*/
get division() {
return this.getAttribute("division");
}
/**
* @type {string|null}
* @readonly
*/
get maxDivision() {
return this.getAttribute("max-division");
}
/**
* @type {string}
* @readonly
*/
get formatNumeric() {
// default = "auto"
const numericFormat =
this.getAttribute("format-numeric") ||
this.getAttribute("numeric-format");
if (
numericFormat &&
RelativeTime.numericFormats.includes(numericFormat)
) {
return numericFormat;
} else if (this.division || this.maxDivision) {
return "always";
}
return "auto";
}
/**
* @type {string}
* @readonly
*/
get formatStyle() {
// default = "long"
const styleFormat =
this.getAttribute("format-style") ||
this.getAttribute("style-format");
if (styleFormat && RelativeTime.styleFormats.includes(styleFormat)) {
return styleFormat;
}
return "long";
}
/**
* @returns {void}
* @private
*/
#observeDateTimes() {
this.timeElements.forEach((timeElement) => {
this.observer.observe(timeElement, {
attributes: true,
attributeFilter: ["datetime"],
});
});
}
/**
* @returns {void}
* @private
*/
#handleMutations() {
this.#setString();
}
/**
* @returns {void}
* @private
*/
#setString() {
this.timeElements.forEach((element) => {
const datetime = this.getDateTime(element.getAttribute("datetime"));
if (!datetime) {
return;
}
element.textContent = this.getRelativeTime(datetime, this.division);
const title = datetime.toLocaleString(undefined, {
timeZoneName: "short",
});
if (element.title !== title) {
element.title = title;
}
});
}
/**
* @param {Date} datetime
* @param {string} [division]
* @returns {string|undefined}
*/
getRelativeTime(datetime, division) {
let difference = (datetime.getTime() - Date.now()) / 1000;
if (division) {
return this.rtf.format(Math.round(difference), division);
}
for (const division of RelativeTime.divisions) {
if (
this.maxDivision &&
division.name === this.maxDivision.replace(/s$/, "")
) {
return this.rtf.format(Math.round(difference), division.name);
}
if (Math.floor(Math.abs(difference)) < division.amount) {
return this.rtf.format(Math.round(difference), division.name);
}
difference /= division.amount;
}
}
/**
* @param {string} dateString
* @returns {Date|null}
*/
getDateTime(dateString) {
const datetime = new Date(dateString);
return !isNaN(datetime) ? datetime : null;
}
}
if (!new URL(import.meta.url).searchParams.has("nodefine")) {
RelativeTime.define();
}