timeZone property sets timezone for display. Value is always expected to be UTC (in- and outbound)
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tp/tp-date-input",
|
"name": "@tp/tp-date-input",
|
||||||
"version": "2.0.3",
|
"version": "2.1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "tp-date-input.js",
|
"main": "tp-date-input.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -301,25 +301,17 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
|
|||||||
}
|
}
|
||||||
}).join('-');
|
}).join('-');
|
||||||
|
|
||||||
const dt = DateTime.fromFormat(i0 + '-' + i1 + '-' + i2, luxonFormat);
|
// Parse the date in the specified timezone (or local if not set).
|
||||||
|
// This interprets the entered values as being in that timezone.
|
||||||
|
const dt = DateTime.fromFormat(i0 + '-' + i1 + '-' + i2, luxonFormat, { zone: this.timeZone || 'local' });
|
||||||
|
|
||||||
if (dt.isValid) {
|
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;
|
||||||
|
|
||||||
// If timeZone is specified, interpret the entered date values as being in that timezone
|
this.date = dt.toJSDate();
|
||||||
// and output as UTC. This ensures filters work correctly against UTC-stored dates.
|
this.value = dt.toUTC().toISO();
|
||||||
let finalDt;
|
|
||||||
if (this.timeZone) {
|
|
||||||
// keepLocalTime: true interprets the entered values as being in the specified timezone
|
|
||||||
finalDt = this.timeZone ? dt.setZone(this.timeZone, { keepLocalTime: true }) : dt;
|
|
||||||
} else {
|
|
||||||
finalDt = dt;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.date = finalDt.toJSDate();
|
|
||||||
this.value = finalDt.toUTC().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 {
|
||||||
@@ -473,8 +465,13 @@ class TpDateInput extends EventHelpers(ControlState(FormElement(LitElement))) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const dt = this._toDateTime(this.value);
|
let dt = this._toDateTime(this.value);
|
||||||
if (dt && dt.isValid) {
|
if (dt && dt.isValid) {
|
||||||
|
// Convert to user's timezone for display (input values are expected to be UTC)
|
||||||
|
if (this.timeZone) {
|
||||||
|
dt = dt.setZone(this.timeZone);
|
||||||
|
}
|
||||||
|
|
||||||
// Convert luxon format parts to match display format
|
// Convert luxon format parts to match display format
|
||||||
this._input0 = dt.toFormat(this._getLuxonFormat(this._inputAssign[0]));
|
this._input0 = dt.toFormat(this._getLuxonFormat(this._inputAssign[0]));
|
||||||
this._input1 = dt.toFormat(this._getLuxonFormat(this._inputAssign[1]));
|
this._input1 = dt.toFormat(this._getLuxonFormat(this._inputAssign[1]));
|
||||||
|
|||||||
Reference in New Issue
Block a user