mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
3.9 KiB
136 lines
3.9 KiB
// Helper function to replace HH with H for 24 hours format, because H allows also single-digit hours
|
|
function adjustedTimeFormat() {
|
|
return moment
|
|
.localeData()
|
|
.longDateFormat('LT')
|
|
.replace(/HH/i, 'H');
|
|
}
|
|
|
|
export class DatePicker extends BlazeComponent {
|
|
template() {
|
|
return 'datepicker';
|
|
}
|
|
|
|
onCreated(defaultTime = '1970-01-01 08:00:00') {
|
|
this.error = new ReactiveVar('');
|
|
this.card = this.data();
|
|
this.date = new ReactiveVar(moment.invalid());
|
|
this.defaultTime = defaultTime;
|
|
}
|
|
|
|
startDayOfWeek() {
|
|
const currentUser = Meteor.user();
|
|
if (currentUser) {
|
|
return currentUser.getStartDayOfWeek();
|
|
} else {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
onRendered() {
|
|
const $picker = this.$('.js-datepicker')
|
|
.datepicker({
|
|
todayHighlight: true,
|
|
todayBtn: 'linked',
|
|
language: TAPi18n.getLanguage(),
|
|
weekStart: this.startDayOfWeek(),
|
|
calendarWeeks: true,
|
|
})
|
|
.on(
|
|
'changeDate',
|
|
function(evt) {
|
|
this.find('#date').value = moment(evt.date).format('L');
|
|
this.error.set('');
|
|
const timeInput = this.find('#time');
|
|
timeInput.focus();
|
|
if (!timeInput.value && this.defaultTime) {
|
|
const currentHour = evt.date.getHours();
|
|
const defaultMoment = moment(
|
|
currentHour > 0 ? evt.date : this.defaultTime,
|
|
); // default to 8:00 am local time
|
|
timeInput.value = defaultMoment.format('LT');
|
|
}
|
|
}.bind(this),
|
|
);
|
|
|
|
if (this.date.get().isValid()) {
|
|
$picker.datepicker('update', this.date.get().toDate());
|
|
}
|
|
}
|
|
|
|
showDate() {
|
|
if (this.date.get().isValid()) return this.date.get().format('L');
|
|
return '';
|
|
}
|
|
showTime() {
|
|
if (this.date.get().isValid()) return this.date.get().format('LT');
|
|
return '';
|
|
}
|
|
dateFormat() {
|
|
return moment.localeData().longDateFormat('L');
|
|
}
|
|
timeFormat() {
|
|
return moment.localeData().longDateFormat('LT');
|
|
}
|
|
|
|
events() {
|
|
return [
|
|
{
|
|
'keyup .js-date-field'() {
|
|
// parse for localized date format in strict mode
|
|
const dateMoment = moment(this.find('#date').value, 'L', true);
|
|
if (dateMoment.isValid()) {
|
|
this.error.set('');
|
|
this.$('.js-datepicker').datepicker('update', dateMoment.toDate());
|
|
}
|
|
},
|
|
'keyup .js-time-field'() {
|
|
// parse for localized time format in strict mode
|
|
const dateMoment = moment(
|
|
this.find('#time').value,
|
|
adjustedTimeFormat(),
|
|
true,
|
|
);
|
|
if (dateMoment.isValid()) {
|
|
this.error.set('');
|
|
}
|
|
},
|
|
'submit .edit-date'(evt) {
|
|
evt.preventDefault();
|
|
|
|
// if no time was given, init with 12:00
|
|
const time =
|
|
evt.target.time.value ||
|
|
moment(new Date().setHours(12, 0, 0)).format('LT');
|
|
const newTime = moment(time, adjustedTimeFormat(), true);
|
|
const newDate = moment(evt.target.date.value, 'L', true);
|
|
const dateString = `${evt.target.date.value} ${time}`;
|
|
const newCompleteDate = moment(
|
|
dateString,
|
|
`L ${adjustedTimeFormat()}`,
|
|
true,
|
|
);
|
|
if (!newTime.isValid()) {
|
|
this.error.set('invalid-time');
|
|
evt.target.time.focus();
|
|
}
|
|
if (!newDate.isValid()) {
|
|
this.error.set('invalid-date');
|
|
evt.target.date.focus();
|
|
}
|
|
if (newCompleteDate.isValid()) {
|
|
this._storeDate(newCompleteDate.toDate());
|
|
Popup.close();
|
|
} else if (!this.error) {
|
|
this.error.set('invalid');
|
|
}
|
|
},
|
|
'click .js-delete-date'(evt) {
|
|
evt.preventDefault();
|
|
this._deleteDate();
|
|
Popup.close();
|
|
},
|
|
},
|
|
];
|
|
}
|
|
}
|
|
|