2024-03-15 09:13:01 +00:00
|
|
|
import {Temporal} from 'temporal-polyfill';
|
|
|
|
|
|
|
|
export function toAbsoluteLocaleDate(dateStr, lang, opts) {
|
|
|
|
return Temporal.PlainDate.from(dateStr).toLocaleString(lang ?? [], opts);
|
|
|
|
}
|
|
|
|
|
2024-03-15 02:05:31 +00:00
|
|
|
window.customElements.define('absolute-date', class extends HTMLElement {
|
2024-03-12 22:37:02 +00:00
|
|
|
static observedAttributes = ['date', 'year', 'month', 'weekday', 'day'];
|
|
|
|
|
|
|
|
update = () => {
|
|
|
|
const year = this.getAttribute('year') ?? '';
|
|
|
|
const month = this.getAttribute('month') ?? '';
|
|
|
|
const weekday = this.getAttribute('weekday') ?? '';
|
|
|
|
const day = this.getAttribute('day') ?? '';
|
|
|
|
const lang = this.closest('[lang]')?.getAttribute('lang') ||
|
2024-03-15 09:13:01 +00:00
|
|
|
this.ownerDocument.documentElement.getAttribute('lang') || '';
|
2024-03-12 22:37:02 +00:00
|
|
|
|
2024-03-15 09:13:01 +00:00
|
|
|
// only use the first 10 characters, e.g. the `yyyy-mm-dd` part
|
|
|
|
const dateStr = this.getAttribute('date').substring(0, 10);
|
2024-03-12 22:37:02 +00:00
|
|
|
|
|
|
|
if (!this.shadowRoot) this.attachShadow({mode: 'open'});
|
2024-03-15 09:13:01 +00:00
|
|
|
this.shadowRoot.textContent = toAbsoluteLocaleDate(dateStr, lang, {
|
2024-03-12 22:37:02 +00:00
|
|
|
...(year && {year}),
|
|
|
|
...(month && {month}),
|
|
|
|
...(weekday && {weekday}),
|
|
|
|
...(day && {day}),
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
attributeChangedCallback(_name, oldValue, newValue) {
|
|
|
|
if (!this.initialized || oldValue === newValue) return;
|
|
|
|
this.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
connectedCallback() {
|
|
|
|
this.initialized = false;
|
|
|
|
this.update();
|
|
|
|
this.initialized = true;
|
|
|
|
}
|
|
|
|
});
|