engelsystem/resources/assets/js/forms.js

171 lines
4.1 KiB
JavaScript
Raw Normal View History

require('select2');
import { formatDay, formatTime } from './date';
/**
* 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) => {
2022-11-26 14:50:59 +01:00
$('#' + 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) => {
2022-11-26 14:50:59 +01:00
$('#' + id + ' input[type="checkbox"]').each(function () {
this.checked = $.inArray(parseInt(this.value), shiftsList) != -1;
});
2018-08-12 13:01:03 +02:00
};
/**
* Sets the values of the input fields with the IDs to from/to:
* - date portion of from start_day
* - time portion of from start_time
* - date portion of to end_day
* - time portion of to end_time
*
* @param {Date} from
* @param {Date} to
*/
2018-08-03 13:58:25 +02:00
global.setInput = (from, to) => {
2022-11-26 14:50:59 +01:00
const fromDay = $('#start_day');
const fromTime = $('#start_time');
const toDay = $('#end_day');
const toTime = $('#end_time');
2022-11-26 14:50:59 +01:00
if (!fromDay || !fromTime || !toDay || !toTime) {
console.warn('cannot set input date because of missing field');
return;
}
2022-11-26 14:50:59 +01:00
fromDay.val(formatDay(from)).trigger('change');
fromTime.val(formatTime(from));
2022-11-26 14:50:59 +01:00
toDay.val(formatDay(to)).trigger('change');
toTime.val(formatTime(to));
2018-08-12 13:01:03 +02:00
};
2018-08-03 13:58:25 +02:00
global.setDay = (days) => {
2022-11-26 14:50:59 +01:00
days = days || 0;
2022-11-26 14:50:59 +01:00
const from = new Date();
from.setHours(0, 0, 0, 0);
2022-11-26 14:50:59 +01:00
// add days, Date handles the overflow
from.setDate(from.getDate() + days);
2022-11-26 14:50:59 +01:00
const to = new Date(from);
to.setHours(23, 59);
2022-11-26 14:50:59 +01:00
setInput(from, to);
2018-08-12 13:01:03 +02:00
};
2018-08-03 13:58:25 +02:00
global.setHours = (hours) => {
2022-11-26 14:50:59 +01:00
hours = hours || 1;
2022-11-26 14:50:59 +01:00
const from = new Date();
const to = new Date(from);
2022-11-26 14:50:59 +01:00
// convert hours to add to milliseconds (60 minutes * 60 seconds * 1000 for milliseconds)
const msToAdd = hours * 60 * 60 * 1000;
to.setTime(to.getTime() + msToAdd, 'h');
if (to < from) {
setInput(to, from);
return;
}
2022-11-26 14:50:59 +01:00
setInput(from, to);
2018-08-12 13:01:03 +02:00
};
2017-01-02 15:43:36 +01:00
$(function () {
2022-11-26 14:50:59 +01:00
/**
2017-01-02 15:43:36 +01:00
* Disable every submit button after clicking (to prevent double-clicking)
*/
2022-11-26 14:50:59 +01:00
$('form').submit(function (ev) {
$('input[type="submit"]').prop('readonly', true).addClass('disabled');
return true;
});
});
2018-12-05 18:43:51 +01:00
/*
* Button to set current time in time input fields.
*/
$(function () {
2022-11-26 14:50:59 +01:00
$('.input-group.time').each(function () {
const elem = $(this);
elem.find('button').on('click', function () {
const now = new Date();
const input = elem.children('input').first();
input.val(formatTime(now));
const daySelector = $('#' + input.attr('id').replace('time', 'day'));
const days = daySelector.children('option');
const yyyyMMDD = formatDay(now);
days.each(function (i) {
if ($(days[i]).val() === yyyyMMDD) {
daySelector.val($(days[i]).val());
return false;
}
});
2018-12-05 18:43:51 +01:00
});
2022-11-26 14:50:59 +01:00
});
2018-12-05 18:43:51 +01:00
});
2019-09-06 03:45:56 +02:00
2020-10-20 16:07:34 +02:00
$(function () {
2022-11-26 14:50:59 +01:00
$('select').select2({
theme: 'bootstrap-5',
width: '100%',
2022-11-26 14:50:59 +01:00
});
2021-07-29 20:38:00 +02:00
})
2020-10-20 16:07:34 +02:00
2020-11-15 18:47:30 +01:00
/**
* Show oauth buttons on welcome title click
*/
$(function () {
2022-11-26 14:50:59 +01:00
$('#welcome-title').on('click', function () {
$('.btn-group.btn-group .btn.d-none').removeClass('d-none');
});
$('#settings-title').on('click', function () {
$('.user-settings .nav-item').removeClass('d-none');
});
$('#oauth-settings-title').on('click', function () {
$('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', () => {
2022-11-26 14:50:59 +01:00
const filter = document.getElementById('collapseShiftsFilterSelect');
if (!filter || localStorage.getItem('collapseShiftsFilterSelect') !== 'hidden') {
return;
}
2019-09-06 03:45:56 +02:00
2022-11-26 14:50:59 +01:00
filter.classList.remove('show');
2019-09-06 03:45:56 +02:00
});
2019-09-06 03:45:56 +02:00
$(() => {
2022-11-26 14:50:59 +01:00
if (typeof (localStorage) === 'undefined') {
return;
}
2019-09-06 03:45:56 +02:00
2022-11-26 14:50:59 +01:00
const onChange = (e) => {
localStorage.setItem('collapseShiftsFilterSelect', e.type);
};
2019-09-06 03:45:56 +02:00
2022-11-26 14:50:59 +01:00
$('#collapseShiftsFilterSelect')
.on('hidden.bs.collapse', onChange)
.on('shown.bs.collapse', onChange);
2019-09-06 03:45:56 +02:00
});