2018-12-06 22:45:40 +01:00
|
|
|
const moment = require('moment');
|
2020-10-20 16:07:34 +02:00
|
|
|
require('select2')
|
2018-12-06 22:45:40 +01:00
|
|
|
|
2016-08-21 20:14:09 +02:00
|
|
|
/**
|
2017-12-27 13:36:38 +01:00
|
|
|
* Sets all checkboxes to the wanted state
|
2017-01-02 15:43:36 +01:00
|
|
|
*
|
2017-12-27 13:36:38 +01:00
|
|
|
* @param {string} id Id of the element containing all the checkboxes
|
2018-08-11 22:16:57 +02:00
|
|
|
* @param {boolean} checked True if the checkboxes should be checked
|
2016-08-21 20:14:09 +02:00
|
|
|
*/
|
2018-08-03 13:58:25 +02:00
|
|
|
global.checkAll = (id, checked) => {
|
2018-08-11 22:16:57 +02:00
|
|
|
$('#' + id + ' input[type="checkbox"]').each(function () {
|
2017-12-27 13:36:38 +01:00
|
|
|
this.checked = checked;
|
|
|
|
});
|
2018-08-12 13:01:03 +02:00
|
|
|
};
|
2017-12-27 13:36:38 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the checkboxes according to the given type
|
|
|
|
*
|
|
|
|
* @param {string} id The elements ID
|
2019-09-06 03:45:56 +02:00
|
|
|
* @param {list} shiftsList A list of numbers
|
2017-12-27 13:36:38 +01:00
|
|
|
*/
|
2018-08-12 12:42:58 +02:00
|
|
|
global.checkOwnTypes = (id, shiftsList) => {
|
2018-08-11 22:16:57 +02:00
|
|
|
$('#' + id + ' input[type="checkbox"]').each(function () {
|
2018-08-06 13:10:53 +02:00
|
|
|
this.checked = $.inArray(parseInt(this.value), shiftsList) != -1;
|
2017-12-27 13:36:38 +01:00
|
|
|
});
|
2018-08-12 13:01:03 +02:00
|
|
|
};
|
2014-12-06 21:39:59 +01:00
|
|
|
|
2017-11-29 13:23:38 +01:00
|
|
|
/**
|
|
|
|
* @param {moment} date
|
|
|
|
*/
|
2018-08-03 13:58:25 +02:00
|
|
|
global.formatDay = (date) => {
|
2018-08-11 22:16:57 +02:00
|
|
|
return date.format('YYYY-MM-DD');
|
2018-08-12 13:01:03 +02:00
|
|
|
};
|
2017-11-29 13:23:38 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {moment} date
|
|
|
|
*/
|
2018-08-03 13:58:25 +02:00
|
|
|
global.formatTime = (date) => {
|
2018-08-11 22:16:57 +02:00
|
|
|
return date.format('HH:mm');
|
2018-08-12 13:01:03 +02:00
|
|
|
};
|
2017-11-29 13:23:38 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {moment} from
|
|
|
|
* @param {moment} to
|
|
|
|
*/
|
2018-08-03 13:58:25 +02:00
|
|
|
global.setInput = (from, to) => {
|
2018-08-11 22:16:57 +02:00
|
|
|
var fromDay = $('#start_day'), fromTime = $('#start_time'), toDay = $('#end_day'), toTime = $('#end_time');
|
2017-11-29 13:23:38 +01:00
|
|
|
|
2021-06-03 23:46:08 +02:00
|
|
|
fromDay.val(formatDay(from)).trigger('change');
|
2017-11-29 13:49:21 +01:00
|
|
|
fromTime.val(formatTime(from));
|
2017-11-29 13:23:38 +01:00
|
|
|
|
2021-06-03 23:46:08 +02:00
|
|
|
toDay.val(formatDay(to)).trigger('change');
|
2017-11-29 13:49:21 +01:00
|
|
|
toTime.val(formatTime(to));
|
2018-08-12 13:01:03 +02:00
|
|
|
};
|
2017-11-29 13:23:38 +01:00
|
|
|
|
2018-08-03 13:58:25 +02:00
|
|
|
global.setDay = (days) => {
|
2017-11-29 13:23:38 +01:00
|
|
|
days = days || 0;
|
|
|
|
|
|
|
|
var from = moment();
|
|
|
|
from.hours(0).minutes(0).seconds(0);
|
|
|
|
|
2018-08-11 22:16:57 +02:00
|
|
|
from.add(days, 'd');
|
2017-11-29 13:23:38 +01:00
|
|
|
|
|
|
|
var to = from.clone();
|
|
|
|
to.hours(23).minutes(59);
|
|
|
|
|
2017-11-29 13:49:21 +01:00
|
|
|
setInput(from, to);
|
2018-08-12 13:01:03 +02:00
|
|
|
};
|
2017-11-29 13:23:38 +01:00
|
|
|
|
2018-08-03 13:58:25 +02:00
|
|
|
global.setHours = (hours) => {
|
2017-11-29 13:23:38 +01:00
|
|
|
hours = hours || 1;
|
|
|
|
|
|
|
|
var from = moment();
|
|
|
|
var to = from.clone();
|
|
|
|
|
2018-08-11 22:16:57 +02:00
|
|
|
to.add(hours, 'h');
|
2017-11-29 13:23:38 +01:00
|
|
|
if (to < from) {
|
|
|
|
setInput(to, from);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
setInput(from, to);
|
2018-08-12 13:01:03 +02:00
|
|
|
};
|
2017-11-29 13:23:38 +01:00
|
|
|
|
2017-01-02 15:43:36 +01:00
|
|
|
$(function () {
|
|
|
|
/**
|
|
|
|
* Disable every submit button after clicking (to prevent double-clicking)
|
|
|
|
*/
|
2018-08-11 22:16:57 +02:00
|
|
|
$('form').submit(function (ev) {
|
|
|
|
$('input[type="submit"]').prop('readonly', true).addClass('disabled');
|
2017-01-02 15:43:36 +01:00
|
|
|
return true;
|
|
|
|
});
|
2017-12-27 13:36:38 +01:00
|
|
|
|
2014-12-06 21:39:59 +01:00
|
|
|
});
|
2018-12-04 21:03:32 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a datepicker to all date input fields.
|
|
|
|
*/
|
|
|
|
$(function () {
|
2021-01-02 01:22:05 +01:00
|
|
|
$([
|
2021-09-11 10:46:21 +02:00
|
|
|
{
|
2021-09-11 22:02:58 +02:00
|
|
|
'select': $('.input-group.date'),
|
2021-09-11 10:46:21 +02:00
|
|
|
'format': 'YYYY-MM-DD',
|
|
|
|
'extraFormats': []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'select': $('.input-group.datetime'),
|
|
|
|
'format': 'YYYY-MM-DD HH:mm',
|
|
|
|
'extraFormats': ['YYYY-MM-DDTHH:mm']
|
|
|
|
},
|
2021-01-02 01:22:05 +01:00
|
|
|
]).each(function (_, element) {
|
|
|
|
element.select.each(function () {
|
|
|
|
var elem = $(this);
|
|
|
|
var opts = {
|
|
|
|
minDate: '',
|
|
|
|
maxDate: '',
|
|
|
|
locale: $('html').attr('lang'),
|
|
|
|
format: element.format,
|
2021-09-11 10:46:21 +02:00
|
|
|
extraFormats: element.extraFormats,
|
2021-07-24 18:31:02 +02:00
|
|
|
widgetPositioning: {horizontal: 'auto', vertical: 'bottom'},
|
|
|
|
icons: {
|
|
|
|
time: 'bi bi-clock',
|
|
|
|
date: 'bi bi-calendar',
|
|
|
|
up: 'bi bi-arrow-up',
|
2021-09-11 16:12:08 +02:00
|
|
|
down: 'bi bi-arrow-down',
|
|
|
|
previous: 'bi bi-arrow-left',
|
|
|
|
next: 'bi bi-arrow-right'
|
2021-07-24 18:31:02 +02:00
|
|
|
}
|
2021-01-02 01:22:05 +01:00
|
|
|
};
|
2021-09-11 10:46:21 +02:00
|
|
|
|
2021-01-02 01:22:05 +01:00
|
|
|
$.extend(opts, elem.data());
|
2021-09-11 10:46:21 +02:00
|
|
|
|
2021-01-02 01:22:05 +01:00
|
|
|
if (opts.minDate.length === 0) {
|
|
|
|
delete opts.minDate;
|
|
|
|
}
|
2021-09-11 10:46:21 +02:00
|
|
|
|
2021-01-02 01:22:05 +01:00
|
|
|
if (opts.maxDate.length === 0) {
|
|
|
|
delete opts.maxDate;
|
2018-12-04 21:03:32 +01:00
|
|
|
}
|
2021-09-11 10:46:21 +02:00
|
|
|
|
2021-01-02 01:22:05 +01:00
|
|
|
elem.children('input').attr('type', 'text');
|
2021-09-11 10:46:21 +02:00
|
|
|
elem.datetimepicker(opts);
|
|
|
|
|
|
|
|
// close on click anywhere outside
|
|
|
|
$(document).on('click', () => {
|
|
|
|
elem.data('datetimepicker').hide()
|
|
|
|
})
|
|
|
|
|
|
|
|
elem.children().on('click', (ev) => {
|
2021-01-02 01:22:05 +01:00
|
|
|
ev.stopImmediatePropagation();
|
2021-09-11 10:46:21 +02:00
|
|
|
elem.data('datetimepicker').toggle();
|
2021-01-02 01:22:05 +01:00
|
|
|
});
|
2018-12-04 21:03:32 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-12-05 18:43:51 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a timepicker to all time input fields.
|
|
|
|
*/
|
|
|
|
$(function () {
|
|
|
|
$('.input-group.time').each(function () {
|
2018-12-08 19:27:44 +01:00
|
|
|
var elem = $(this);
|
2018-12-05 18:43:51 +01:00
|
|
|
var opts = {
|
2018-12-08 19:27:44 +01:00
|
|
|
locale: $('html').attr('lang'),
|
2018-12-05 18:43:51 +01:00
|
|
|
format: 'HH:mm',
|
2021-07-24 18:31:02 +02:00
|
|
|
widgetPositioning: {horizontal: 'auto', vertical: 'bottom'},
|
|
|
|
icons: {
|
|
|
|
up: 'bi bi-arrow-up',
|
|
|
|
down: 'bi bi-arrow-down'
|
|
|
|
}
|
2018-12-05 18:43:51 +01:00
|
|
|
};
|
|
|
|
$.extend(opts, elem.data());
|
2018-12-08 19:27:44 +01:00
|
|
|
elem.children('input').attr('type', 'text');
|
|
|
|
elem.children('input').on('click', function (ev) {
|
2018-12-05 18:43:51 +01:00
|
|
|
ev.stopImmediatePropagation();
|
2021-07-24 18:31:02 +02:00
|
|
|
if (typeof elem.data('datetimepicker') === 'undefined') {
|
2019-09-06 03:45:56 +02:00
|
|
|
elem.datetimepicker(opts);
|
2021-07-24 18:31:02 +02:00
|
|
|
elem.data('datetimepicker').show();
|
|
|
|
|
|
|
|
// close on click anywhere outside
|
|
|
|
$(document).on('click', () => {
|
|
|
|
elem.data('datetimepicker').hide()
|
|
|
|
})
|
2018-12-08 19:27:44 +01:00
|
|
|
} else {
|
2021-07-24 18:31:02 +02:00
|
|
|
elem.data('datetimepicker').toggle();
|
2018-12-08 19:27:44 +01:00
|
|
|
}
|
2018-12-05 18:43:51 +01:00
|
|
|
});
|
2021-07-24 18:31:02 +02:00
|
|
|
|
2018-12-05 18:43:51 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Button to set current time in time input fields.
|
|
|
|
*/
|
|
|
|
$(function () {
|
|
|
|
$('.input-group.time').each(function () {
|
|
|
|
var elem = $(this);
|
|
|
|
elem.find('button').on('click', function () {
|
|
|
|
var input = elem.children('input').first();
|
|
|
|
input.val(moment().format('HH:mm'));
|
2018-12-06 22:45:40 +01:00
|
|
|
var daySelector = $('#' + input.attr('id').replace('time', 'day'));
|
|
|
|
var days = daySelector.children('option');
|
2018-12-05 18:43:51 +01:00
|
|
|
days.each(function (i) {
|
|
|
|
if ($(days[i]).val() === moment().format('YYYY-MM-DD')) {
|
2018-12-06 22:45:40 +01:00
|
|
|
daySelector.val($(days[i]).val());
|
2018-12-05 18:43:51 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2019-09-06 03:45:56 +02:00
|
|
|
|
2020-10-20 16:07:34 +02:00
|
|
|
$(function () {
|
2021-07-29 20:38:00 +02:00
|
|
|
$('select').select2({
|
|
|
|
theme: 'bootstrap-5',
|
|
|
|
});
|
|
|
|
})
|
2020-10-20 16:07:34 +02:00
|
|
|
|
2020-11-15 18:47:30 +01:00
|
|
|
/**
|
|
|
|
* Show oauth buttons on welcome title click
|
|
|
|
*/
|
|
|
|
$(function () {
|
|
|
|
$('#welcome-title').on('click', function () {
|
2021-07-24 18:19:53 +02:00
|
|
|
$('.btn-group.btn-group .btn.d-none').removeClass('d-none');
|
2020-11-15 18:47:30 +01:00
|
|
|
});
|
|
|
|
$('#oauth-settings-title').on('click', function () {
|
2021-07-24 18:19:53 +02:00
|
|
|
$('table tr.d-none').removeClass('d-none');
|
2020-11-15 18:47:30 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-09-06 03:45:56 +02:00
|
|
|
/**
|
|
|
|
* Set the filter selects to latest state
|
|
|
|
*
|
|
|
|
* Uses DOMContentLoaded to prevent flickering
|
|
|
|
*/
|
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
|
|
|
const filter = document.getElementById('collapseShiftsFilterSelect');
|
|
|
|
if (!filter || localStorage.getItem('collapseShiftsFilterSelect') !== 'hidden') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-24 17:04:45 +02:00
|
|
|
filter.classList.remove('show');
|
2019-09-06 03:45:56 +02:00
|
|
|
});
|
|
|
|
$(() => {
|
|
|
|
if (typeof (localStorage) === 'undefined') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const onChange = (e) => {
|
|
|
|
localStorage.setItem('collapseShiftsFilterSelect', e.type);
|
|
|
|
};
|
|
|
|
|
|
|
|
$('#collapseShiftsFilterSelect')
|
|
|
|
.on('hidden.bs.collapse', onChange)
|
|
|
|
.on('shown.bs.collapse', onChange);
|
|
|
|
});
|