11 Commits
1.0.0 ... 2.1.1

Author SHA1 Message Date
pk
e189cb3b73 Bump version 2026-04-10 09:52:57 +02:00
pk
8f14196418 Make sure component always returns midnight utc 2026-04-10 09:52:43 +02:00
pk
acf1728cb9 timeZone property sets timezone for display. Value is always expected to be UTC (in- and outbound) 2026-03-24 11:56:00 +01:00
pk
722e674526 Make sure value is always UTC and timeZone is applied to the user input if provided. 2026-03-24 11:45:09 +01:00
pk
a777e585e8 Bump version 2025-06-27 10:56:02 +02:00
pk
56d5d3ab1c Update dependencies 2025-06-27 10:55:49 +02:00
pk
1e5a4bc3d3 Bump version 2025-06-27 10:55:02 +02:00
pk
3641de7ebd Parsing part was not migrated to luxon 2025-06-27 10:54:39 +02:00
pk
9fc38c42e8 Migrate to luxon 2025-06-27 10:29:11 +02:00
pk
7fb1757174 Fix date-fns import 2025-03-24 10:42:07 +01:00
pk
f5377e83ad Some fixes 2025-02-06 22:30:13 +01:00
2 changed files with 63 additions and 29 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@tp/tp-date-input", "name": "@tp/tp-date-input",
"version": "1.0.0", "version": "2.1.1",
"description": "", "description": "",
"main": "tp-date-input.js", "main": "tp-date-input.js",
"scripts": { "scripts": {
@@ -13,8 +13,7 @@
"author": "trading_peter", "author": "trading_peter",
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"date-fns": "^2.28.0", "luxon": "^3.0.0",
"date-fns-tz": "^1.3.3", "lit": "^3.0.0"
"lit": "^2.2.0"
} }
} }

View File

@@ -1,6 +1,6 @@
/** /**
@license @license
Copyright (c) 2022 trading_peter Copyright (c) 2025 trading_peter
This program is available under Apache License Version 2.0 This program is available under Apache License Version 2.0
*/ */
@@ -9,8 +9,7 @@ import { ControlState } from '@tp/helpers/control-state.js';
import { EventHelpers } from '@tp/helpers/event-helpers.js'; import { EventHelpers } from '@tp/helpers/event-helpers.js';
import { FormElement } from '@tp/helpers/form-element.js'; import { FormElement } from '@tp/helpers/form-element.js';
import { LitElement, html, css } from 'lit'; import { LitElement, html, css } from 'lit';
import { format, parse, parseISO, isAfter, isValid, endOfDay } from 'date-fns/esm'; import { DateTime } from 'luxon';
import { zonedTimeToUtc } from 'date-fns-tz/esm';
import { closest } from '@tp/helpers'; import { closest } from '@tp/helpers';
class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) { class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
@@ -181,7 +180,7 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
super.firstUpdated(); super.firstUpdated();
this.listen(this, 'input', '_autoMoveCursor'); this.listen(this, 'input', '_autoMoveCursor');
const datepicker = this.querySelector('tp-datepicker'); const datepicker = this.querySelector('tp-date-picker');
if (datepicker) { if (datepicker) {
datepicker.addEventListener('value-changed', e => { datepicker.addEventListener('value-changed', e => {
this.value = e.detail; this.value = e.detail;
@@ -232,14 +231,14 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
* of the control, like allowedDates, maxDate, ... * of the control, like allowedDates, maxDate, ...
*/ */
dateValid(date, maxDate = this.maxDate, allowedDates = this.allowedDates) { dateValid(date, maxDate = this.maxDate, allowedDates = this.allowedDates) {
date = this._toDate(date); const dt = this._toDateTime(date);
if (isValid(date) === false) { if (!dt || !dt.isValid) {
return false; return false;
} }
if ((allowedDates.length > 0 && allowedDates.indexOf(date) === -1) || if ((allowedDates.length > 0 && allowedDates.indexOf(date) === -1) ||
(maxDate && isAfter(date, maxDate))) { (maxDate && dt > this._toDateTime(maxDate))) {
return false; return false;
} }
return true; return true;
@@ -292,14 +291,28 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
return; return;
} }
const date = parse(i0 + '-' + i1 + '-' + i2, this._inputAssign.join('-'), new Date()); // Convert luxon format to match input assignment
const format = this._inputAssign.map(part => {
switch (part) {
case 'MM': return 'LL';
case 'dd': return 'dd';
case 'y': return 'yyyy';
default: return part;
}
}).join('-');
if (isValid(date)) { // Parse the entered values as a plain calendar date, then store as UTC midnight.
// Date-only fields are timezone-agnostic — April 7 means April 7 for everyone.
const dt = DateTime.fromFormat(i0 + '-' + i1 + '-' + i2, format);
if (dt.isValid) {
this.inputs[0].invalid = false; this.inputs[0].invalid = false;
this.inputs[1].invalid = false; this.inputs[1].invalid = false;
this.inputs[2].invalid = false; this.inputs[2].invalid = false;
this.date = this.timeZone ? zonedTimeToUtc(date, this.timeZone) : date;
this.value = this.date.toISOString(); const utcMidnight = DateTime.utc(dt.year, dt.month, dt.day);
this.date = utcMidnight.toJSDate();
this.value = utcMidnight.toISO();
this.invalid = false; this.invalid = false;
this.dispatchEvent(new CustomEvent('value-changed', { detail: this.value, bubbles: true, composed: true })); this.dispatchEvent(new CustomEvent('value-changed', { detail: this.value, bubbles: true, composed: true }));
} else { } else {
@@ -378,8 +391,9 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
_setClass(idx) { _setClass(idx) {
switch (this._inputAssign[idx]) { switch (this._inputAssign[idx]) {
case 'dd': case 'dd':
return 'day';
case 'MM': case 'MM':
return ''; return 'month';
case 'y': case 'y':
return 'year'; return 'year';
} }
@@ -411,6 +425,10 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
} }
} }
if (this._inputAssign.length !== 3) {
console.error(this.tagname + ': Not all date parts where found. Make sure to have MM, dd, and y in your format string.');
}
if (this.value) { if (this.value) {
this._onValueChanged(); this._onValueChanged();
} }
@@ -439,7 +457,7 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
this.invalid = false; this.invalid = false;
if (this.value === null || this.value === undefined || this.value === 'Invalid date') { if (this.value === null || this.value === undefined || this.value === 'Invalid date' || this.value === '') {
this.date = null; this.date = null;
this.value = null; this.value = null;
this._input0 = ''; this._input0 = '';
@@ -448,18 +466,32 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
return; return;
} }
const date = this._toDate(this.value); let dt = this._toDateTime(this.value);
this._input0 = format(date, this._inputAssign[0]); if (dt && dt.isValid) {
this._input1 = format(date, this._inputAssign[1]); // Values are stored as UTC midnight — display the UTC calendar date as-is.
this._input2 = format(date, this._inputAssign[2]); dt = dt.toUTC();
this.date = date; this._input0 = dt.toFormat(this._getLuxonFormat(this._inputAssign[0]));
this._input1 = dt.toFormat(this._getLuxonFormat(this._inputAssign[1]));
this._input2 = dt.toFormat(this._getLuxonFormat(this._inputAssign[2]));
this.date = dt.toJSDate();
}
}
_getLuxonFormat(inputFormat) {
switch (inputFormat) {
case 'MM': return 'LL';
case 'dd': return 'dd';
case 'y': return 'yyyy';
default: return inputFormat;
}
} }
_setToday() { _setToday() {
if (this.today) { if (this.today) {
setTimeout(() => { setTimeout(() => {
if (!this.value) { if (!this.value) {
this.value = new Date().toISOString(); const now = DateTime.utc();
this.value = DateTime.utc(now.year, now.month, now.day).toISO();
} }
}); });
} }
@@ -468,9 +500,9 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
_getMaxDate(maxDate) { _getMaxDate(maxDate) {
if (typeof maxDate !== 'string') return null; if (typeof maxDate !== 'string') return null;
if (maxDate.toLowerCase() === 'today') { if (maxDate.toLowerCase() === 'today') {
return endOfDay(new Date()); return DateTime.now().endOf('day');
} }
return this._toDate(maxDate); return this._toDateTime(maxDate);
} }
_autoMoveCursor(e) { _autoMoveCursor(e) {
@@ -481,13 +513,16 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
} }
} }
_toDate(value) { _toDateTime(value) {
if (typeof value === 'string') { if (typeof value === 'string') {
return parseISO(value); return DateTime.fromISO(value);
} else { } else if (value instanceof Date) {
return DateTime.fromJSDate(value);
} else if (value && typeof value === 'object' && value.isLuxonDateTime) {
return value; return value;
} }
return null;
} }
} }
window.customElements.define('tp-date-input', TpDateInput); window.customElements.define('tp-date-input', TpDateInput);