mirror of
https://github.com/wekan/wekan.git
synced 2025-12-22 02:10:12 +01:00
Remove redundant and unused code
This commit is contained in:
parent
03d29dd674
commit
4aee129cdc
3 changed files with 23 additions and 136 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
import { DatePicker } from '/client/lib/datepicker';
|
||||||
|
import moment from 'moment';
|
||||||
|
import Cards from '/models/cards';
|
||||||
|
|
||||||
Template.cardCustomFieldsPopup.helpers({
|
Template.cardCustomFieldsPopup.helpers({
|
||||||
hasCustomField() {
|
hasCustomField() {
|
||||||
const card = Cards.findOne(Session.get('currentCard'));
|
const card = Cards.findOne(Session.get('currentCard'));
|
||||||
|
|
|
||||||
|
|
@ -1,122 +1,5 @@
|
||||||
// Helper function to replace HH with H for 24 hours format, because H allows also single-digit hours
|
import moment from 'moment';
|
||||||
function adjustedTimeFormat() {
|
import { DatePicker } from '/client/lib/datepicker';
|
||||||
return moment
|
|
||||||
.localeData()
|
|
||||||
.longDateFormat('LT')
|
|
||||||
.replace(/HH/i, 'H');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Edit received, start, due & end dates
|
|
||||||
BlazeComponent.extendComponent({
|
|
||||||
template() {
|
|
||||||
return 'editCardDate';
|
|
||||||
},
|
|
||||||
|
|
||||||
onCreated() {
|
|
||||||
this.error = new ReactiveVar('');
|
|
||||||
this.card = this.data();
|
|
||||||
this.date = new ReactiveVar(moment.invalid());
|
|
||||||
},
|
|
||||||
|
|
||||||
onRendered() {
|
|
||||||
const $picker = this.$('.js-datepicker')
|
|
||||||
.datepicker({
|
|
||||||
todayHighlight: true,
|
|
||||||
todayBtn: 'linked',
|
|
||||||
language: TAPi18n.getLanguage(),
|
|
||||||
})
|
|
||||||
.on(
|
|
||||||
'changeDate',
|
|
||||||
function(evt) {
|
|
||||||
this.find('#date').value = moment(evt.date).format('L');
|
|
||||||
this.error.set('');
|
|
||||||
this.find('#time').focus();
|
|
||||||
}.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();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
];
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
Template.dateBadge.helpers({
|
Template.dateBadge.helpers({
|
||||||
canModifyCard() {
|
canModifyCard() {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
import moment from 'moment';
|
||||||
|
|
||||||
// Helper function to replace HH with H for 24 hours format, because H allows also single-digit hours
|
// Helper function to replace HH with H for 24 hours format, because H allows also single-digit hours
|
||||||
function adjustedTimeFormat() {
|
function adjustedTimeFormat() {
|
||||||
return moment
|
return moment
|
||||||
|
|
@ -6,17 +8,17 @@ function adjustedTimeFormat() {
|
||||||
.replace(/HH/i, 'H');
|
.replace(/HH/i, 'H');
|
||||||
}
|
}
|
||||||
|
|
||||||
DatePicker = BlazeComponent.extendComponent({
|
export class DatePicker extends BlazeComponent {
|
||||||
template() {
|
template() {
|
||||||
return 'datepicker';
|
return 'datepicker';
|
||||||
},
|
}
|
||||||
|
|
||||||
onCreated(defaultTime = '1970-01-01 08:00:00') {
|
onCreated(defaultTime = '1970-01-01 08:00:00') {
|
||||||
this.error = new ReactiveVar('');
|
this.error = new ReactiveVar('');
|
||||||
this.card = this.data();
|
this.card = this.data();
|
||||||
this.date = new ReactiveVar(moment.invalid());
|
this.date = new ReactiveVar(moment.invalid());
|
||||||
this.defaultTime = defaultTime;
|
this.defaultTime = defaultTime;
|
||||||
},
|
}
|
||||||
|
|
||||||
startDayOfWeek() {
|
startDayOfWeek() {
|
||||||
const currentUser = Meteor.user();
|
const currentUser = Meteor.user();
|
||||||
|
|
@ -25,7 +27,7 @@ DatePicker = BlazeComponent.extendComponent({
|
||||||
} else {
|
} else {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
onRendered() {
|
onRendered() {
|
||||||
const $picker = this.$('.js-datepicker')
|
const $picker = this.$('.js-datepicker')
|
||||||
|
|
@ -42,7 +44,7 @@ DatePicker = BlazeComponent.extendComponent({
|
||||||
this.error.set('');
|
this.error.set('');
|
||||||
const timeInput = this.find('#time');
|
const timeInput = this.find('#time');
|
||||||
timeInput.focus();
|
timeInput.focus();
|
||||||
if (!timeInput.value) {
|
if (!timeInput.value && this.defaultTime) {
|
||||||
const currentHour = evt.date.getHours();
|
const currentHour = evt.date.getHours();
|
||||||
const defaultMoment = moment(
|
const defaultMoment = moment(
|
||||||
currentHour > 0 ? evt.date : this.defaultTime,
|
currentHour > 0 ? evt.date : this.defaultTime,
|
||||||
|
|
@ -55,22 +57,22 @@ DatePicker = BlazeComponent.extendComponent({
|
||||||
if (this.date.get().isValid()) {
|
if (this.date.get().isValid()) {
|
||||||
$picker.datepicker('update', this.date.get().toDate());
|
$picker.datepicker('update', this.date.get().toDate());
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
showDate() {
|
showDate() {
|
||||||
if (this.date.get().isValid()) return this.date.get().format('L');
|
if (this.date.get().isValid()) return this.date.get().format('L');
|
||||||
return '';
|
return '';
|
||||||
},
|
}
|
||||||
showTime() {
|
showTime() {
|
||||||
if (this.date.get().isValid()) return this.date.get().format('LT');
|
if (this.date.get().isValid()) return this.date.get().format('LT');
|
||||||
return '';
|
return '';
|
||||||
},
|
}
|
||||||
dateFormat() {
|
dateFormat() {
|
||||||
return moment.localeData().longDateFormat('L');
|
return moment.localeData().longDateFormat('L');
|
||||||
},
|
}
|
||||||
timeFormat() {
|
timeFormat() {
|
||||||
return moment.localeData().longDateFormat('LT');
|
return moment.localeData().longDateFormat('LT');
|
||||||
},
|
}
|
||||||
|
|
||||||
events() {
|
events() {
|
||||||
return [
|
return [
|
||||||
|
|
@ -106,7 +108,7 @@ DatePicker = BlazeComponent.extendComponent({
|
||||||
const dateString = `${evt.target.date.value} ${time}`;
|
const dateString = `${evt.target.date.value} ${time}`;
|
||||||
const newCompleteDate = moment(
|
const newCompleteDate = moment(
|
||||||
dateString,
|
dateString,
|
||||||
'L ' + adjustedTimeFormat(),
|
`L ${adjustedTimeFormat()}`,
|
||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
if (!newTime.isValid()) {
|
if (!newTime.isValid()) {
|
||||||
|
|
@ -120,11 +122,9 @@ DatePicker = BlazeComponent.extendComponent({
|
||||||
if (newCompleteDate.isValid()) {
|
if (newCompleteDate.isValid()) {
|
||||||
this._storeDate(newCompleteDate.toDate());
|
this._storeDate(newCompleteDate.toDate());
|
||||||
Popup.close();
|
Popup.close();
|
||||||
} else {
|
} else if (!this.error) {
|
||||||
if (!this.error) {
|
|
||||||
this.error.set('invalid');
|
this.error.set('invalid');
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
},
|
||||||
'click .js-delete-date'(evt) {
|
'click .js-delete-date'(evt) {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
|
|
@ -133,5 +133,5 @@ DatePicker = BlazeComponent.extendComponent({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
},
|
}
|
||||||
});
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue