engelsystem/resources/assets/js/forms.js

170 lines
4.3 KiB
JavaScript
Raw Normal View History

2020-10-20 16:07:34 +02:00
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) => {
$('#' + 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
};
/**
* 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) => {
const fromDay = $('#start_day');
const fromTime = $('#start_time');
const toDay = $('#end_day');
const toTime = $('#end_time');
if (!fromDay || !fromTime || !toDay || !toTime) {
console.warn("cannot set input date because of missing field");
return;
}
fromDay.val(formatDay(from)).trigger('change');
fromTime.val(formatTime(from));
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) => {
days = days || 0;
var from = new Date();
from.setHours(0, 0, 0, 0);
// add days, Date handles the overflow
from.setDate(from.getDate() + days);
var to = new Date(from);
to.setHours(23, 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 = new Date();
var to = new Date(from);
// 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;
}
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;
});
});
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 () {
const now = new Date();
2018-12-05 18:43:51 +01:00
var input = elem.children('input').first();
input.val(formatTime(now));
var daySelector = $('#' + input.attr('id').replace('time', 'day'));
var days = daySelector.children('option');
const yyyyMMDD = formatDay(now);
2018-12-05 18:43:51 +01:00
days.each(function (i) {
if ($(days[i]).val() === yyyyMMDD) {
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
});
$('#settings-title').on('click', function () {
$('.user-settings .nav-item').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;
}
filter.classList.remove('show');
2019-09-06 03:45:56 +02:00
});
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);
});