|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import KimaiPlugin from "../KimaiPlugin"; |
|
import jQuery from "jquery"; |
|
|
|
export default class KimaiFormSelect extends KimaiPlugin { |
|
|
|
constructor(selector) { |
|
super(); |
|
this.selector = selector; |
|
} |
|
|
|
getId() { |
|
return 'form-select'; |
|
} |
|
|
|
activateSelectPicker(selector, container) { |
|
const elementSelector = this.selector; |
|
let options = {}; |
|
if (container !== undefined) { |
|
options = { |
|
dropdownParent: $(container), |
|
}; |
|
} |
|
|
|
|
|
|
|
|
|
function matcher(params, data) { |
|
|
|
if (jQuery.trim(params.term) === '') { |
|
return data; |
|
} |
|
|
|
|
|
let hasChildren = data.children && data.children.length > 0; |
|
|
|
|
|
let terms = params.term.toUpperCase().split(' '); |
|
let original = data.text.toUpperCase(); |
|
|
|
|
|
|
|
let foundAll = true; |
|
let foundOne = false; |
|
let missingTerms = []; |
|
terms.forEach(function(item, index) { |
|
if (original.indexOf(item) > -1) { |
|
foundOne = true; |
|
} else { |
|
foundAll = false; |
|
missingTerms.push(item); |
|
} |
|
}); |
|
|
|
|
|
if (foundAll) { |
|
return data; |
|
} |
|
|
|
|
|
if (hasChildren) { |
|
|
|
|
|
let newParams = jQuery.extend(true, {}, params); |
|
if (foundOne) { |
|
newParams.term = missingTerms.join(' '); |
|
} else { |
|
newParams.term = params.term; |
|
} |
|
|
|
|
|
|
|
let match = jQuery.extend(true, {}, data); |
|
|
|
|
|
for (let c = data.children.length - 1; c >= 0; c--) { |
|
let child = data.children[c]; |
|
|
|
let matches = matcher(newParams, child); |
|
|
|
|
|
if (matches === null) { |
|
match.children.splice(c, 1); |
|
} |
|
} |
|
|
|
|
|
if (match.children.length > 0) { |
|
return match; |
|
} |
|
} |
|
|
|
|
|
return null; |
|
} |
|
|
|
options = {...options, ...{ |
|
language: this.getConfiguration('locale').replace('_', '-'), |
|
theme: "bootstrap", |
|
matcher: matcher |
|
}}; |
|
|
|
const templateResultFunc = function (state) { |
|
return jQuery('<span><span style="background-color:'+state.id+'; width: 20px; height: 20px; display: inline-block; margin-right: 10px;"> </span>' + state.text + '</span>'); |
|
}; |
|
|
|
let optionsColor = {...options, ...{ |
|
templateSelection: templateResultFunc, |
|
templateResult: templateResultFunc |
|
}}; |
|
|
|
jQuery(selector + ' ' + elementSelector + ':not([data-renderer=color])').select2(options); |
|
jQuery(selector + ' ' + elementSelector + '[data-renderer=color]').select2(optionsColor); |
|
|
|
jQuery('body').on('reset', 'form', function(event){ |
|
setTimeout(function() { |
|
jQuery(event.target).find(elementSelector).trigger('change'); |
|
}, 10); |
|
}); |
|
} |
|
|
|
destroySelectPicker(selector) { |
|
jQuery(selector + ' ' + this.selector).select2('destroy'); |
|
} |
|
|
|
updateOptions(selectIdentifier, data) { |
|
let select = jQuery(selectIdentifier); |
|
let emptyOption = jQuery(selectIdentifier + ' option[value=""]'); |
|
const selectedValue = select.val(); |
|
|
|
select.find('option').remove().end().find('optgroup').remove().end(); |
|
|
|
if (emptyOption.length !== 0) { |
|
select.append(this._createOption(emptyOption.text(), '')); |
|
} |
|
|
|
let emptyOpts = []; |
|
let options = []; |
|
|
|
for (const [key, value] of Object.entries(data)) { |
|
if (key === '__empty__') { |
|
for (const entity of value) { |
|
emptyOpts.push(this._createOption(entity.name, entity.id)); |
|
} |
|
continue; |
|
} |
|
|
|
let optGroup = this._createOptgroup(key); |
|
for (const entity of value) { |
|
optGroup.appendChild(this._createOption(entity.name, entity.id)); |
|
} |
|
options.push(optGroup); |
|
} |
|
|
|
select.append(options); |
|
select.append(emptyOpts); |
|
|
|
|
|
select.val(selectedValue); |
|
|
|
|
|
select.trigger('change'); |
|
|
|
|
|
if (select.hasClass('selectpicker')) { |
|
select.trigger('change.select2'); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_createOption(label, value) { |
|
let option = document.createElement('option'); |
|
option.innerText = label; |
|
option.value = value; |
|
return option; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
_createOptgroup(label) { |
|
let optGroup = document.createElement('optgroup'); |
|
optGroup.label = label; |
|
return optGroup; |
|
} |
|
} |
|
|