Commited current refactoring state of working_plan.js (not finished yet).
This commit is contained in:
parent
edc97e771e
commit
3f8fd91714
1 changed files with 405 additions and 387 deletions
|
@ -9,6 +9,10 @@
|
||||||
* @since v1.0.0
|
* @since v1.0.0
|
||||||
* ---------------------------------------------------------------------------- */
|
* ---------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contains the working plan functionality. The working plan DOM elements must be same
|
* Contains the working plan functionality. The working plan DOM elements must be same
|
||||||
* in every page this class is used.
|
* in every page this class is used.
|
||||||
|
@ -47,7 +51,7 @@ WorkingPlan.prototype.setup = function(workingPlan) {
|
||||||
|
|
||||||
// Add the day's breaks on the breaks table.
|
// Add the day's breaks on the breaks table.
|
||||||
$.each(workingDay.breaks, function(i, brk) {
|
$.each(workingDay.breaks, function(i, brk) {
|
||||||
var day = WorkingPlan.prototype.convertValueToDay(index);
|
var day = this.convertValueToDay(index);
|
||||||
|
|
||||||
var tr =
|
var tr =
|
||||||
'<tr>' +
|
'<tr>' +
|
||||||
|
@ -70,17 +74,17 @@ WorkingPlan.prototype.setup = function(workingPlan) {
|
||||||
'</td>' +
|
'</td>' +
|
||||||
'</tr>';
|
'</tr>';
|
||||||
$('.breaks').append(tr);
|
$('.breaks').append(tr);
|
||||||
});
|
}.bind(this));
|
||||||
} else {
|
} else {
|
||||||
$('#' + index).prop('checked', false);
|
$('#' + index).prop('checked', false);
|
||||||
$('#' + index + '-start').prop('disabled', true);
|
$('#' + index + '-start').prop('disabled', true);
|
||||||
$('#' + index + '-end').prop('disabled', true);
|
$('#' + index + '-end').prop('disabled', true);
|
||||||
}
|
}
|
||||||
});
|
}.bind(this));
|
||||||
|
|
||||||
// Make break cells editable.
|
// Make break cells editable.
|
||||||
WorkingPlan.prototype.editableBreakDay($('.breaks .break-day'));
|
this.editableBreakDay($('.breaks .break-day'));
|
||||||
WorkingPlan.prototype.editableBreakTime($('.breaks').find('.break-start, .break-end'));
|
this.editableBreakTime($('.breaks').find('.break-start, .break-end'));
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -101,19 +105,23 @@ WorkingPlan.prototype.editableBreakDay = function($selector) {
|
||||||
$selector.editable(function(value, settings) {
|
$selector.editable(function(value, settings) {
|
||||||
return value;
|
return value;
|
||||||
}, {
|
}, {
|
||||||
'type': 'select',
|
type: 'select',
|
||||||
'data': weekDays,
|
data: weekDays,
|
||||||
'event': 'edit',
|
event: 'edit',
|
||||||
'height': '30px',
|
height: '30px',
|
||||||
'submit': '<button type="button" class="hidden submit-editable">Submit</button>',
|
submit: '<button type="button" class="hidden submit-editable">Submit</button>',
|
||||||
'cancel': '<button type="button" class="hidden cancel-editable">Cancel</button>',
|
cancel: '<button type="button" class="hidden cancel-editable">Cancel</button>',
|
||||||
'onblur': 'ignore',
|
onblur: 'ignore',
|
||||||
'onreset': function(settings, td) {
|
onreset: function(settings, td) {
|
||||||
if (!WorkingPlan.prototype.enableCancel) return false; // disable ESC button
|
if (!this.enableCancel) {
|
||||||
},
|
return false; // disable ESC button
|
||||||
'onsubmit': function(settings, td) {
|
|
||||||
if (!WorkingPlan.prototype.enableSubmit) return false; // disable Enter button
|
|
||||||
}
|
}
|
||||||
|
}.bind(this),
|
||||||
|
onsubmit: function(settings, td) {
|
||||||
|
if (!this.enableSubmit) {
|
||||||
|
return false; // disable Enter button
|
||||||
|
}
|
||||||
|
}.bind(this)
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -127,17 +135,21 @@ WorkingPlan.prototype.editableBreakTime = function($selector) {
|
||||||
// Do not return the value because the user needs to press the "Save" button.
|
// Do not return the value because the user needs to press the "Save" button.
|
||||||
return value;
|
return value;
|
||||||
}, {
|
}, {
|
||||||
'event': 'edit',
|
event: 'edit',
|
||||||
'height': '25px',
|
height: '25px',
|
||||||
'submit': '<button type="button" class="hidden submit-editable">Submit</button>',
|
submit: '<button type="button" class="hidden submit-editable">Submit</button>',
|
||||||
'cancel': '<button type="button" class="hidden cancel-editable">Cancel</button>',
|
cancel: '<button type="button" class="hidden cancel-editable">Cancel</button>',
|
||||||
'onblur': 'ignore',
|
onblur: 'ignore',
|
||||||
'onreset': function(settings, td) {
|
onreset: function(settings, td) {
|
||||||
if (!WorkingPlan.prototype.enableCancel) return false; // disable ESC button
|
if (!this.enableCancel) {
|
||||||
},
|
return false; // disable ESC button
|
||||||
'onsubmit': function(settings, td) {
|
|
||||||
if (!WorkingPlan.prototype.enableSubmit) return false; // disable Enter button
|
|
||||||
}
|
}
|
||||||
|
}.bind(this),
|
||||||
|
onsubmit: function(settings, td) {
|
||||||
|
if (!this.enableSubmit) {
|
||||||
|
return false; // disable Enter button
|
||||||
|
}
|
||||||
|
}.bind(this)
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -192,12 +204,12 @@ WorkingPlan.prototype.bindEventHandlers = function() {
|
||||||
$('.breaks').prepend(tr);
|
$('.breaks').prepend(tr);
|
||||||
|
|
||||||
// Bind editable and event handlers.
|
// Bind editable and event handlers.
|
||||||
tr = $('.breaks tr').get()[1];
|
tr = $('.breaks tr')[1];
|
||||||
WorkingPlan.prototype.editableBreakDay($(tr).find('.break-day'));
|
this.editableBreakDay($(tr).find('.break-day'));
|
||||||
WorkingPlan.prototype.editableBreakTime($(tr).find('.break-start, .break-end'));
|
this.editableBreakTime($(tr).find('.break-start, .break-end'));
|
||||||
$(tr).find('.edit-break').trigger('click');
|
$(tr).find('.edit-break').trigger('click');
|
||||||
$('.add-break').prop('disabled', true);
|
$('.add-break').prop('disabled', true);
|
||||||
});
|
}.bind(this));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event: Edit Break Button "Click"
|
* Event: Edit Break Button "Click"
|
||||||
|
@ -208,7 +220,9 @@ WorkingPlan.prototype.bindEventHandlers = function() {
|
||||||
// Reset previous editable tds
|
// Reset previous editable tds
|
||||||
var $previousEdt = $(this).closest('table').find('.editable').get();
|
var $previousEdt = $(this).closest('table').find('.editable').get();
|
||||||
$.each($previousEdt, function(index, edt) {
|
$.each($previousEdt, function(index, edt) {
|
||||||
if (edt.reset !== undefined) edt.reset();
|
if (edt.reset !== undefined) {
|
||||||
|
edt.reset();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Make all cells in current row editable.
|
// Make all cells in current row editable.
|
||||||
|
@ -244,37 +258,39 @@ WorkingPlan.prototype.bindEventHandlers = function() {
|
||||||
*
|
*
|
||||||
* Bring the ".breaks" table back to its initial state.
|
* Bring the ".breaks" table back to its initial state.
|
||||||
*/
|
*/
|
||||||
$(document).on('click', '.cancel-break', function() {
|
$(document).on('click', '.cancel-break', function(e) {
|
||||||
WorkingPlan.prototype.enableCancel = true;
|
var element = e.target;
|
||||||
$(this).parent().parent().find('.cancel-editable').trigger('click');
|
this.enableCancel = true;
|
||||||
WorkingPlan.prototype.enableCancel = false;
|
$(element).parent().parent().find('.cancel-editable').trigger('click');
|
||||||
|
this.enableCancel = false;
|
||||||
|
|
||||||
$(this).closest('table').find('.edit-break, .delete-break').removeClass('hidden');
|
$(element).closest('table').find('.edit-break, .delete-break').removeClass('hidden');
|
||||||
$(this).parent().find('.save-break, .cancel-break').addClass('hidden');
|
$(element).parent().find('.save-break, .cancel-break').addClass('hidden');
|
||||||
$('.add-break').prop('disabled', false);
|
$('.add-break').prop('disabled', false);
|
||||||
});
|
}.bind(this));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event: Save Break Button "Click"
|
* Event: Save Break Button "Click"
|
||||||
*
|
*
|
||||||
* Save the editable values and restore the table to its initial state.
|
* Save the editable values and restore the table to its initial state.
|
||||||
*/
|
*/
|
||||||
$(document).on('click', '.save-break', function() {
|
$(document).on('click', '.save-break', function(e) {
|
||||||
// Break's start time must always be prior to break's end.
|
// Break's start time must always be prior to break's end.
|
||||||
var start = Date.parse($(this).parent().parent().find('.break-start input').val());
|
var element = e.target,
|
||||||
var end = Date.parse($(this).parent().parent().find('.break-end input').val());
|
start = Date.parse($(element).parent().parent().find('.break-start input').val()),
|
||||||
|
end = Date.parse($(element).parent().parent().find('.break-end input').val());
|
||||||
if (start > end) {
|
if (start > end) {
|
||||||
$(this).parent().parent().find('.break-end input').val(start.addHours(1).toString('HH:mm'));
|
$(element).parent().parent().find('.break-end input').val(start.addHours(1).toString('HH:mm'));
|
||||||
}
|
}
|
||||||
|
|
||||||
WorkingPlan.prototype.enableSubmit = true;
|
this.enableSubmit = true;
|
||||||
$(this).parent().parent().find('.editable .submit-editable').trigger('click');
|
$(element).parent().parent().find('.editable .submit-editable').trigger('click');
|
||||||
WorkingPlan.prototype.enableSubmit = false;
|
this.enableSubmit = false;
|
||||||
|
|
||||||
$(this).parent().find('.save-break, .cancel-break').addClass('hidden');
|
$(element).parent().find('.save-break, .cancel-break').addClass('hidden');
|
||||||
$(this).closest('table').find('.edit-break, .delete-break').removeClass('hidden');
|
$(element).closest('table').find('.edit-break, .delete-break').removeClass('hidden');
|
||||||
$('.add-break').prop('disabled', false);
|
$('.add-break').prop('disabled', false);
|
||||||
});
|
}.bind(this));
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -284,28 +300,26 @@ WorkingPlan.prototype.bindEventHandlers = function() {
|
||||||
*/
|
*/
|
||||||
WorkingPlan.prototype.get = function() {
|
WorkingPlan.prototype.get = function() {
|
||||||
var workingPlan = {};
|
var workingPlan = {};
|
||||||
$('.working-plan input[type="checkbox"]').each(function() {
|
$('.working-plan input[type="checkbox"]').each(function(index, checkbox) {
|
||||||
var id = $(this).attr('id');
|
var id = $(checkbox).attr('id');
|
||||||
if ($(this).prop('checked') == true) {
|
if ($(checkbox).prop('checked') == true) {
|
||||||
workingPlan[id] = {};
|
workingPlan[id] = {};
|
||||||
workingPlan[id].start = $('#' + id + '-start').val();
|
workingPlan[id].start = $('#' + id + '-start').val();
|
||||||
workingPlan[id].end = $('#' + id + '-end').val();
|
workingPlan[id].end = $('#' + id + '-end').val();
|
||||||
workingPlan[id].breaks = [];
|
workingPlan[id].breaks = [];
|
||||||
|
|
||||||
$('.breaks tr').each(function(index, tr) {
|
$('.breaks tr').each(function(index, tr) {
|
||||||
var day = WorkingPlan.prototype.convertDayToValue(
|
var day = this.convertDayToValue($(tr).find('.break-day').text());
|
||||||
$(tr).find('.break-day').text());
|
|
||||||
if (day == id) {
|
if (day == id) {
|
||||||
var start = $(tr).find('.break-start').text();
|
var start = $(tr).find('.break-start').text(),
|
||||||
var end = $(tr).find('.break-end').text();
|
end = $(tr).find('.break-end').text();
|
||||||
|
|
||||||
workingPlan[id].breaks.push({
|
workingPlan[id].breaks.push({
|
||||||
'start': start,
|
'start': start,
|
||||||
'end': end
|
'end': end
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
}.bind(this));
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
workingPlan[id] = null;
|
workingPlan[id] = null;
|
||||||
}
|
}
|
||||||
|
@ -322,12 +336,12 @@ WorkingPlan.prototype.get = function() {
|
||||||
* disabled.
|
* disabled.
|
||||||
*/
|
*/
|
||||||
WorkingPlan.prototype.timepickers = function(disabled) {
|
WorkingPlan.prototype.timepickers = function(disabled) {
|
||||||
if (disabled == undefined) disabled == false;
|
disabled = disabled || false;
|
||||||
|
|
||||||
if (disabled == false) {
|
if (disabled == false) {
|
||||||
// Set timepickers where needed.
|
// Set timepickers where needed.
|
||||||
$('.working-plan input[type="text"]').timepicker({
|
$('.working-plan input[type="text"]').timepicker({
|
||||||
'timeFormat': 'HH:mm',
|
timeFormat: 'HH:mm',
|
||||||
|
|
||||||
currentText: EALang['now'],
|
currentText: EALang['now'],
|
||||||
closeText: EALang['close'],
|
closeText: EALang['close'],
|
||||||
|
@ -336,10 +350,10 @@ WorkingPlan.prototype.timepickers = function(disabled) {
|
||||||
hourText: EALang['hour'],
|
hourText: EALang['hour'],
|
||||||
minuteText: EALang['minutes'],
|
minuteText: EALang['minutes'],
|
||||||
|
|
||||||
'onSelect': function(datetime, inst) {
|
onSelect: function(datetime, inst) {
|
||||||
// Start time must be earlier than end time.
|
// Start time must be earlier than end time.
|
||||||
var start = Date.parse($(this).parent().parent().find('.work-start').val());
|
var start = Date.parse($(this).parent().parent().find('.work-start').val()),
|
||||||
var end = Date.parse($(this).parent().parent().find('.work-end').val());
|
end = Date.parse($(this).parent().parent().find('.work-end').val());
|
||||||
|
|
||||||
if (start > end) {
|
if (start > end) {
|
||||||
$(this).parent().parent().find('.work-end').val(start.addHours(1).toString('HH:mm'));
|
$(this).parent().parent().find('.work-end').val(start.addHours(1).toString('HH:mm'));
|
||||||
|
@ -419,3 +433,7 @@ WorkingPlan.prototype.convertDayToValue = function(day) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
window.WorkingPlan = WorkingPlan;
|
||||||
|
|
||||||
|
})();
|
||||||
|
|
Loading…
Reference in a new issue