153 lines
5.4 KiB
JavaScript
153 lines
5.4 KiB
JavaScript
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
if (typeof jQuery === 'undefined') {
|
|
throw new Error('Kimai requires jQuery');
|
|
}
|
|
|
|
/* kimai
|
|
*
|
|
* @type Object
|
|
* @description $.kimai is the main object for the template's app.
|
|
* It's used for implementing functions and options related
|
|
* to the template. Keeping everything wrapped in an object
|
|
* prevents conflict with other plugins and is a better
|
|
* way to organize our code.
|
|
*/
|
|
$.kimai = {};
|
|
|
|
$(function() {
|
|
"use strict";
|
|
|
|
$.kimai = {
|
|
init: function(options) {
|
|
if (typeof options !== 'undefined') {
|
|
$.kimai.settings = $.extend({}, $.kimai.defaults, options);
|
|
}
|
|
|
|
// set the current locale for all javascript components
|
|
moment.locale($.kimai.settings['locale']);
|
|
|
|
// ask before a delete call is executed
|
|
$('a.btn-trash').click(function (event) {
|
|
return confirm($.kimai.settings['confirmDelete']);
|
|
});
|
|
|
|
// activate the dropdown functionality
|
|
$('.dropdown-toggle').dropdown();
|
|
|
|
// auto hide success message after x seconds, as they are just meant as quick feedback and
|
|
// not as a permanent source of information
|
|
if ($.kimai.settings['alertSuccessAutoHide'] > 0) {
|
|
setTimeout(
|
|
function() {
|
|
$('div.alert-success').alert('close');
|
|
},
|
|
$.kimai.settings['alertSuccessAutoHide']
|
|
);
|
|
}
|
|
|
|
$('input[data-datepicker="on"]').daterangepicker({
|
|
singleDatePicker: true,
|
|
showDropdowns: true,
|
|
autoUpdateInput: false,
|
|
locale: {
|
|
format: "YYYY-MM-DD",
|
|
firstDay: 1
|
|
}
|
|
});
|
|
|
|
$('input[data-datepicker="on"]').on('apply.daterangepicker', function(ev, picker) {
|
|
$(this).val(picker.startDate.format('YYYY-MM-DD'));
|
|
$(this).trigger("change");
|
|
});
|
|
|
|
$('input[data-datetimepicker="on"]').daterangepicker({
|
|
singleDatePicker: true,
|
|
timePicker: true,
|
|
timePicker24Hour: true,
|
|
showDropdowns: true,
|
|
autoUpdateInput: false,
|
|
locale: {
|
|
cancelLabel: 'Clear',
|
|
format: "YYYY-MM-DD HH:mm",
|
|
firstDay: 1
|
|
}
|
|
});
|
|
|
|
$('input[data-datetimepicker="on"]').on('apply.daterangepicker', function(ev, picker) {
|
|
$(this).val(picker.startDate.format('YYYY-MM-DD HH:mm'));
|
|
$(this).trigger("change");
|
|
});
|
|
|
|
$('select[data-related-select]').change(function() {
|
|
var apiUrl = $(this).attr('data-api-url').replace('-s-', $(this).val());
|
|
var targetSelect = $(this).attr('data-related-select');
|
|
|
|
$.ajax({
|
|
url: apiUrl,
|
|
headers: {
|
|
'X-AUTH-SESSION': true,
|
|
'Content-Type':'application/json'
|
|
},
|
|
method: 'GET',
|
|
dataType: 'json',
|
|
success: function(data){
|
|
$('#' + targetSelect).find('option').remove().end().find('optgroup').remove().end();
|
|
$.each(data, function(i, obj) {
|
|
$('#' + targetSelect).append('<option value="' + obj.id + '">' + obj.name + '</option>');
|
|
});
|
|
$('#' + targetSelect).trigger('change')
|
|
}
|
|
});
|
|
});
|
|
|
|
$('.markdown-body :header').prepend(function() {
|
|
$(this).prepend('<a class="anchor" href="#'+$(this).attr('id')+'"><i class="fas fa-link"></i>');
|
|
});
|
|
|
|
$('.markdown-body :header').hover(function(){
|
|
$(this).find('a.anchor').show();
|
|
}, function(){
|
|
$(this).find('a.anchor').hide();
|
|
});
|
|
|
|
/*
|
|
$('input').iCheck({
|
|
checkboxClass: 'icheckbox_square-blue',
|
|
radioClass: 'iradio_square-blue',
|
|
increaseArea: '20%' // optional
|
|
});
|
|
*/
|
|
|
|
// $.AdminLTE.pushMenu.expandOnHover();
|
|
},
|
|
pauseRecord: function(selector) {
|
|
$(selector + ' .pull-left i').hover(function () {
|
|
var link = $(this).parents('a');
|
|
link.attr('href', link.attr('href').replace('/stop', '/pause'));
|
|
$(this).removeClass('fa-stop-circle').addClass('fa-pause-circle').addClass('text-orange');
|
|
},function () {
|
|
var link = $(this).parents('a');
|
|
link.attr('href', link.attr('href').replace('/pause', '/stop'));
|
|
$(this).removeClass('fa-pause-circle').removeClass('text-orange').addClass('fa-stop-circle');
|
|
});
|
|
}
|
|
};
|
|
|
|
// default values
|
|
$.kimai.defaults = {
|
|
locale: 'en',
|
|
confirmDelete: 'Really delete?',
|
|
alertSuccessAutoHide: 5000
|
|
};
|
|
|
|
// once initialized, here are all values
|
|
$.kimai.settings = {};
|
|
|
|
});
|