isArray to native Array.isArray

isUnd(*) to native undefined === *
isFunc to native typeof * === 'function'
isObject to native typeof * === 'object'
microtime() to native Date().getTime();
noop to native ()=>{}
noopFalse to native ()=>false
noopTrue to native ()=>true
boolToAjax to native *?'1':'0'
Underscore.js to native
This commit is contained in:
djmaze 2020-07-29 21:49:41 +02:00
parent fa39c7ecba
commit ea48f5060b
72 changed files with 551 additions and 775 deletions

View file

@ -1,7 +1,6 @@
import $ from '$';
import ko from 'ko';
import { isUnd } from 'Common/Utils';
import { i18nToNodes } from 'Common/Translator';
class AbstractComponent {
@ -34,7 +33,7 @@ const componentExportHelper = (ClassObject, templateID = '') => ({
i18nToNodes(params.element);
if (!isUnd(params.inline) && ko.unwrap(params.inline)) {
if (undefined !== params.inline && ko.unwrap(params.inline)) {
params.element.css('display', 'inline-block');
}
}

View file

@ -1,5 +1,4 @@
import ko from 'ko';
import { isUnd } from 'Common/Utils';
import { AbstractComponent } from 'Component/Abstract';
class AbstractCheckbox extends AbstractComponent {
@ -10,27 +9,27 @@ class AbstractCheckbox extends AbstractComponent {
super();
this.value = params.value;
if (isUnd(this.value) || !this.value.subscribe) {
this.value = ko.observable(isUnd(this.value) ? false : !!this.value);
if (undefined === this.value || !this.value.subscribe) {
this.value = ko.observable(undefined === this.value ? false : !!this.value);
}
this.enable = params.enable;
if (isUnd(this.enable) || !this.enable.subscribe) {
this.enable = ko.observable(isUnd(this.enable) ? true : !!this.enable);
if (undefined === this.enable || !this.enable.subscribe) {
this.enable = ko.observable(undefined === this.enable ? true : !!this.enable);
}
this.disable = params.disable;
if (isUnd(this.disable) || !this.disable.subscribe) {
this.disable = ko.observable(isUnd(this.disable) ? false : !!this.disable);
if (undefined === this.disable || !this.disable.subscribe) {
this.disable = ko.observable(undefined === this.disable ? false : !!this.disable);
}
this.label = params.label || '';
this.inline = isUnd(params.inline) ? false : params.inline;
this.inline = undefined === params.inline ? false : params.inline;
this.readOnly = isUnd(params.readOnly) ? false : !!params.readOnly;
this.inverted = isUnd(params.inverted) ? false : !!params.inverted;
this.readOnly = undefined === params.readOnly ? false : !!params.readOnly;
this.inverted = undefined === params.inverted ? false : !!params.inverted;
this.labeled = !isUnd(params.label);
this.labeled = undefined !== params.label;
this.labelAnimated = !!params.labelAnimated;
}

View file

@ -1,5 +1,5 @@
import ko from 'ko';
import { isUnd, trim, pInt } from 'Common/Utils';
import { trim, pInt } from 'Common/Utils';
import { SaveSettingsStep } from 'Common/Enums';
import { AbstractComponent } from 'Component/Abstract';
@ -14,13 +14,13 @@ class AbstractInput extends AbstractComponent {
this.size = params.size || 0;
this.label = params.label || '';
this.preLabel = params.preLabel || '';
this.enable = isUnd(params.enable) ? true : params.enable;
this.enable = undefined === params.enable ? true : params.enable;
this.trigger = params.trigger && params.trigger.subscribe ? params.trigger : null;
this.placeholder = params.placeholder || '';
this.labeled = !isUnd(params.label);
this.preLabeled = !isUnd(params.preLabel);
this.triggered = !isUnd(params.trigger) && !!this.trigger;
this.labeled = undefined !== params.label;
this.preLabeled = undefined !== params.preLabel;
this.triggered = undefined !== params.trigger && !!this.trigger;
this.classForTrigger = ko.observable('');
@ -30,7 +30,7 @@ class AbstractInput extends AbstractComponent {
return (0 < size ? 'span' + size : '') + suffixValue;
});
if (!isUnd(params.width) && params.element) {
if (undefined !== params.width && params.element) {
params.element.find('input,select,textarea').css('width', params.width);
}

View file

@ -1,5 +1,4 @@
import ko from 'ko';
import { isUnd } from 'Common/Utils';
import { AbstractComponent } from 'Component/Abstract';
class AbstractRadio extends AbstractComponent {
@ -12,12 +11,12 @@ class AbstractRadio extends AbstractComponent {
this.values = ko.observableArray([]);
this.value = params.value;
if (isUnd(this.value) || !this.value.subscribe) {
if (undefined === this.value || !this.value.subscribe) {
this.value = ko.observable('');
}
this.inline = isUnd(params.inline) ? false : params.inline;
this.readOnly = isUnd(params.readOnly) ? false : !!params.readOnly;
this.inline = undefined === params.inline ? false : params.inline;
this.readOnly = undefined === params.readOnly ? false : !!params.readOnly;
if (params.values) {
this.values(Object.entries(params.values).map((label, value) => ({ label: label, value: value })));

View file

@ -1,4 +1,3 @@
import { isUnd } from 'Common/Utils';
import { componentExportHelper } from 'Component/Abstract';
import { AbstractInput } from 'Component/AbstractInput';
@ -12,7 +11,7 @@ class TextAreaComponent extends AbstractInput {
super(params);
this.rows = params.rows || DEFAULT_ROWS;
this.spellcheck = isUnd(params.spellcheck) ? false : !!params.spellcheck;
this.spellcheck = undefined === params.spellcheck ? false : !!params.spellcheck;
}
}