engelsystem/resources/assets/js/forms.js

210 lines
5.2 KiB
JavaScript
Raw Normal View History

const moment = require('moment');
2020-10-20 16:07:34 +02:00
require('select2')
/**
* Sets all checkboxes to the wanted state
2017-01-02 15:43:36 +01:00
*
* @param {string} id Id of the element containing all the checkboxes
* @param {boolean} checked True if the checkboxes should be checked
*/
2018-08-03 13:58:25 +02:00
global.checkAll = (id, checked) => {
$('#' + id + ' input[type="checkbox"]').each(function () {
this.checked = checked;
});
2018-08-12 13:01:03 +02: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
*/
global.checkOwnTypes = (id, shiftsList) => {
$('#' + id + ' input[type="checkbox"]').each(function () {
2018-08-06 13:10:53 +02:00
this.checked = $.inArray(parseInt(this.value), shiftsList) != -1;
});
2018-08-12 13:01:03 +02:00
};
/**
* @param {moment} date
*/
2018-08-03 13:58:25 +02:00
global.formatDay = (date) => {
return date.format('YYYY-MM-DD');
2018-08-12 13:01:03 +02:00
};
/**
* @param {moment} date
*/
2018-08-03 13:58:25 +02:00
global.formatTime = (date) => {
return date.format('HH:mm');
2018-08-12 13:01:03 +02:00
};
/**
* @param {moment} from
* @param {moment} to
*/
2018-08-03 13:58:25 +02:00
global.setInput = (from, to) => {
var fromDay = $('#start_day'), fromTime = $('#start_time'), toDay = $('#end_day'), toTime = $('#end_time');
fromDay.val(formatDay(from));
fromTime.val(formatTime(from));
toDay.val(formatDay(to));
toTime.val(formatTime(to));
2018-08-12 13:01:03 +02:00
};
2018-08-03 13:58:25 +02:00
global.setDay = (days) => {
days = days || 0;
var from = moment();
from.hours(0).minutes(0).seconds(0);
from.add(days, 'd');
var to = from.clone();
to.hours(23).minutes(59);
setInput(from, to);
2018-08-12 13:01:03 +02:00
};
2018-08-03 13:58:25 +02:00
global.setHours = (hours) => {
hours = hours || 1;
var from = moment();
var to = from.clone();
to.add(hours, 'h');
if (to < from) {
setInput(to, from);
return;
}
setInput(from, to);
2018-08-12 13:01:03 +02:00
};
2017-01-02 15:43:36 +01:00
$(function () {
/**
* Disable every submit button after clicking (to prevent double-clicking)
*/
$('form').submit(function (ev) {
$('input[type="submit"]').prop('readonly', true).addClass('disabled');
2017-01-02 15:43:36 +01:00
return true;
});
});
/*
* Add a datepicker to all date input fields.
*/
$(function () {
$('.input-group.date').each(function () {
var elem = $(this);
var opts = {
minDate: '',
maxDate: '',
locale: $('html').attr('lang'),
format: 'YYYY-MM-DD',
widgetPositioning: {horizontal: 'auto', vertical: 'bottom'}
};
$.extend(opts, elem.data());
if (opts.minDate.length === 0) {
delete opts.minDate;
}
if (opts.maxDate.length === 0) {
delete opts.maxDate;
}
elem.children('input').attr('type', 'text');
elem.children().on('click', function (ev) {
ev.stopImmediatePropagation();
if (typeof elem.data('DateTimePicker') === 'undefined') {
elem.datetimepicker(opts);
elem.data('DateTimePicker').show();
} else {
elem.data('DateTimePicker').toggle();
}
});
});
});
2018-12-05 18:43:51 +01:00
/*
* Add a timepicker to all time input fields.
*/
$(function () {
$('.input-group.time').each(function () {
var elem = $(this);
2018-12-05 18:43:51 +01:00
var opts = {
locale: $('html').attr('lang'),
2018-12-05 18:43:51 +01:00
format: 'HH:mm',
widgetPositioning: {horizontal: 'auto', vertical: 'bottom'}
};
$.extend(opts, elem.data());
elem.children('input').attr('type', 'text');
elem.children('input').on('click', function (ev) {
2018-12-05 18:43:51 +01:00
ev.stopImmediatePropagation();
if (typeof elem.data('DateTimePicker') === 'undefined') {
2019-09-06 03:45:56 +02:00
elem.datetimepicker(opts);
elem.data('DateTimePicker').show();
} else {
2019-09-06 03:45:56 +02:00
elem.data('DateTimePicker').toggle();
}
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'));
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')) {
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
/**
* Enable select2
*/
$(function () {
$.fn.select2.defaults.set('theme', 'bootstrap');
$('select').select2();
});
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;
}
filter.classList.remove('in');
});
$(() => {
if (typeof (localStorage) === 'undefined') {
return;
}
const onChange = (e) => {
localStorage.setItem('collapseShiftsFilterSelect', e.type);
};
$('#collapseShiftsFilterSelect')
.on('hidden.bs.collapse', onChange)
.on('shown.bs.collapse', onChange);
});