mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
e323cd1d79
Update shoelace to 2.9.0
159 lines
3.5 KiB
TypeScript
159 lines
3.5 KiB
TypeScript
/**
|
|
* EGroupware eTemplate2 - Date+Time widget (WebComponent)
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package etemplate
|
|
* @subpackage api
|
|
* @link https://www.egroupware.org
|
|
* @author Nathan Gray
|
|
*/
|
|
|
|
|
|
import {css} from "lit";
|
|
import {Et2Date, formatDate, formatDateTime} from "./Et2Date";
|
|
import type {Instance} from "flatpickr/dist/types/instance";
|
|
import {default as ShortcutButtonsPlugin} from "shortcut-buttons-flatpickr/dist/shortcut-buttons-flatpickr";
|
|
|
|
|
|
export class Et2DateTime extends Et2Date
|
|
{
|
|
static get styles()
|
|
{
|
|
return [
|
|
...super.styles,
|
|
css`
|
|
:host([focused]) ::slotted(button), :host(:hover) ::slotted(button) {
|
|
display: inline-block;
|
|
}
|
|
|
|
::slotted([slot='input']) {
|
|
flex: 1 1 auto;
|
|
min-width: 17ex;
|
|
}
|
|
|
|
::slotted(.calendar_button) {
|
|
border: none;
|
|
background: transparent;
|
|
margin-left: -20px;
|
|
display: none;
|
|
}
|
|
`,
|
|
];
|
|
}
|
|
|
|
static get properties()
|
|
{
|
|
return {
|
|
...super.properties
|
|
}
|
|
}
|
|
|
|
constructor()
|
|
{
|
|
super();
|
|
}
|
|
|
|
|
|
/**
|
|
* Override some flatpickr defaults to get things how we like it
|
|
*
|
|
* @see https://flatpickr.js.org/options/
|
|
* @returns {any}
|
|
*/
|
|
public getOptions()
|
|
{
|
|
let options = super.getOptions();
|
|
|
|
let dateFormat = (this.egw()?.preference("dateformat") || "Y-m-d");
|
|
let timeFormat = ((<string>this.egw()?.preference("timeformat") || "24") == "24" ? "H:i" : "h:i K");
|
|
options.altFormat = dateFormat + " " + timeFormat;
|
|
options.enableTime = true;
|
|
options.time_24hr = this.egw()?.preference("timeformat", "common") == "24";
|
|
options.dateFormat = "Y-m-dTH:i:00\\Z";
|
|
options.defaultHour = new Date().getHours();
|
|
|
|
return options;
|
|
}
|
|
|
|
/**
|
|
* Change handler setting modelValue for validation
|
|
*
|
|
* @returns
|
|
* @param selectedDates
|
|
* @param dateStr
|
|
* @param instance
|
|
*/
|
|
_updateValueOnChange(selectedDates : Date[], dateStr : string, instance : Instance)
|
|
{
|
|
super._updateValueOnChange(selectedDates, dateStr, instance);
|
|
if(!this.freeMinuteEntry && dateStr && instance && instance.config.minuteIncrement > 1)
|
|
{
|
|
let i = instance.latestSelectedDateObj;
|
|
const d = i ? i : new Date();
|
|
const original = d.getMinutes();
|
|
|
|
let bound = Math.round(original / instance.config.minuteIncrement) * instance.config.minuteIncrement;
|
|
if(bound != original)
|
|
{
|
|
d.setMinutes(bound);
|
|
instance.setDate(d, false);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* For mobile, we use a plain input of the proper type
|
|
* @returns {string}
|
|
*/
|
|
_mobileInputType() : string
|
|
{
|
|
return "datetime-local";
|
|
}
|
|
|
|
get format() : Function
|
|
{
|
|
// Mobile is specific about the date format
|
|
if(typeof egwIsMobile == "function" && egwIsMobile())
|
|
{
|
|
// Use formatDate() for full control, formatDateTime() will add a space
|
|
return (date) => {return formatDate(date, {dateFormat: "Y-m-dTH:i"});};
|
|
}
|
|
|
|
return formatDateTime;
|
|
}
|
|
|
|
/**
|
|
* Add "today" button below calendar
|
|
* @protected
|
|
*/
|
|
protected _buttonPlugin()
|
|
{
|
|
return ShortcutButtonsPlugin({
|
|
button: [
|
|
{label: this.egw().lang("ok")},
|
|
{label: this.egw().lang("Now")}
|
|
],
|
|
onClick: this._handleShortcutButtonClick
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Handle clicks on scroll buttons
|
|
*
|
|
* @param e
|
|
*/
|
|
public handleScroll(e)
|
|
{
|
|
if(e.target && !e.target.dataset.direction)
|
|
{
|
|
return;
|
|
}
|
|
e.stopPropagation();
|
|
|
|
const direction = parseInt(e.target.dataset.direction, 10) || 1;
|
|
this.increment(direction * this.getOptions().minuteIncrement, "minute", true);
|
|
}
|
|
}
|
|
|
|
// @ts-ignore TypeScript is not recognizing that Et2DateTime is a LitElement
|
|
customElements.define("et2-date-time", Et2DateTime); |