snappymail/dev/External/ko.js

196 lines
5.5 KiB
JavaScript
Raw Normal View History

import ko from 'ko';
2021-03-25 17:08:29 +08:00
import { i18nToNodes } from 'Common/Translator';
import { doc, createElement } from 'Common/Globals';
2021-02-11 17:08:27 +08:00
import { SaveSettingsStep } from 'Common/Enums';
2022-02-17 16:36:29 +08:00
import { arrayLength, isFunction, forEachObjectEntry } from 'Common/Utils';
2022-02-17 06:12:12 +08:00
export const
errorTip = (element, value) => value
? setTimeout(() => element.setAttribute('data-rainloopErrorTip', value), 100)
: element.removeAttribute('data-rainloopErrorTip'),
2022-02-17 06:12:12 +08:00
/**
* The value of the pureComputed observable shouldnt vary based on the
* number of evaluations or other hidden information. Its value should be
* based solely on the values of other observables in the application
*/
koComputable = fn => ko.computed(fn, {'pure':true}),
2022-02-17 16:36:29 +08:00
addObservablesTo = (target, observables) =>
forEachObjectEntry(observables, (key, value) =>
2022-02-28 17:38:47 +08:00
target[key] || (target[key] = /*isArray(value) ? ko.observableArray(value) :*/ ko.observable(value)) ),
2022-02-17 16:36:29 +08:00
addComputablesTo = (target, computables) =>
forEachObjectEntry(computables, (key, fn) => target[key] = koComputable(fn)),
addSubscribablesTo = (target, subscribables) =>
forEachObjectEntry(subscribables, (key, fn) => target[key].subscribe(fn)),
dispose = disposable => disposable && isFunction(disposable.dispose) && disposable.dispose(),
// With this we don't need delegateRunOnDestroy
koArrayWithDestroy = data => {
data = ko.observableArray(data);
data.subscribe(changes =>
changes.forEach(item =>
'deleted' === item.status && null == item.moved && item.value.onDestroy && item.value.onDestroy()
)
, data, 'arrayChange');
return data;
};
Object.assign(ko.bindingHandlers, {
tooltipErrorTip: {
init: (element, fValueAccessor) => {
doc.addEventListener('click', () => {
let value = fValueAccessor();
ko.isObservable(value) && !ko.isComputed(value) && value('');
errorTip(element);
});
},
update: (element, fValueAccessor) => {
let value = ko.unwrap(fValueAccessor());
value = isFunction(value) ? value() : value;
errorTip(element, value);
2014-08-20 23:03:12 +08:00
}
},
2016-06-30 08:02:45 +08:00
onEnter: {
init: (element, fValueAccessor, fAllBindings, viewModel) => {
let fn = event => {
if ('Enter' == event.key) {
element.dispatchEvent(new Event('change'));
fValueAccessor().call(viewModel);
}
};
element.addEventListener('keydown', fn);
ko.utils.domNodeDisposal.addDisposeCallback(element, () => element.removeEventListener('keydown', fn));
}
},
2016-06-30 08:02:45 +08:00
onSpace: {
init: (element, fValueAccessor, fAllBindings, viewModel) => {
let fn = event => {
if (' ' == event.key) {
fValueAccessor().call(viewModel, event);
}
};
element.addEventListener('keyup', fn);
ko.utils.domNodeDisposal.addDisposeCallback(element, () => element.removeEventListener('keyup', fn));
}
},
2016-06-30 08:02:45 +08:00
i18nUpdate: {
update: (element, fValueAccessor) => {
ko.unwrap(fValueAccessor());
i18nToNodes(element);
}
},
title: {
update: (element, fValueAccessor) => element.title = ko.unwrap(fValueAccessor())
2016-06-30 08:02:45 +08:00
},
2014-08-20 23:03:12 +08:00
command: {
init: (element, fValueAccessor, fAllBindings, viewModel, bindingContext) => {
const command = fValueAccessor();
2014-08-20 23:03:12 +08:00
if (!command || !command.canExecute) {
throw new Error('Value should be a command');
}
2014-08-20 23:03:12 +08:00
ko.bindingHandlers['FORM'==element.nodeName ? 'submit' : 'click'].init(
element,
fValueAccessor,
fAllBindings,
viewModel,
bindingContext
);
},
update: (element, fValueAccessor) => {
const cl = element.classList,
command = fValueAccessor();
let disabled = !command.canExecute();
cl.toggle('disabled', disabled);
if (element.matches('INPUT,TEXTAREA,BUTTON')) {
element.disabled = disabled;
}
2021-02-11 17:08:27 +08:00
}
},
saveTrigger: {
init: (element) => {
let icon = element;
if (element.matches('input,select,textarea')) {
element.classList.add('settings-saved-trigger-input');
element.after(element.saveTriggerIcon = icon = createElement('span'));
}
icon.classList.add('settings-save-trigger');
},
update: (element, fValueAccessor) => {
const value = parseInt(ko.unwrap(fValueAccessor()),10);
let cl = (element.saveTriggerIcon || element).classList;
if (element.saveTriggerIcon) {
cl.toggle('saving', value === SaveSettingsStep.Animate);
cl.toggle('success', value === SaveSettingsStep.TrueResult);
cl.toggle('error', value === SaveSettingsStep.FalseResult);
}
cl = element.classList;
2021-02-11 17:08:27 +08:00
cl.toggle('success', value === SaveSettingsStep.TrueResult);
cl.toggle('error', value === SaveSettingsStep.FalseResult);
}
}
});
2021-02-11 17:08:27 +08:00
2016-06-30 08:02:45 +08:00
// extenders
2014-10-04 19:58:01 +08:00
ko.extenders.limitedList = (target, limitedList) => {
const result = ko
2022-02-26 00:18:45 +08:00
.computed({
read: target,
write: newValue => {
let currentValue = target(),
list = ko.unwrap(limitedList);
list = arrayLength(list) ? list : [''];
if (!list.includes(newValue)) {
newValue = list.includes(currentValue, list) ? currentValue : list[0];
target(newValue + ' ');
}
2022-02-26 00:18:45 +08:00
target(newValue);
}
})
.extend({ notify: 'always' });
result(target());
return result;
2016-06-30 08:02:45 +08:00
};
2014-08-20 23:03:12 +08:00
ko.extenders.toggleSubscribeProperty = (target, options) => {
const prop = options[1];
2019-07-05 03:19:24 +08:00
if (prop) {
target.subscribe(
prev => prev && prev[prop] && prev[prop](false),
2019-07-05 03:19:24 +08:00
options[0],
'beforeChange'
);
2014-08-20 23:03:12 +08:00
target.subscribe(next => next && next[prop] && next[prop](true), options[0]);
2016-06-30 08:02:45 +08:00
}
2014-08-20 23:03:12 +08:00
return target;
2016-06-30 08:02:45 +08:00
};
ko.extenders.falseTimeout = (target, option) => {
2021-02-11 17:08:27 +08:00
target.subscribe((() => target(false)).debounce(parseInt(option, 10) || 0));
return target;
2016-06-30 08:02:45 +08:00
};
// functions
2014-10-04 19:58:01 +08:00
ko.observable.fn.askDeleteHelper = function() {
return this.extend({ falseTimeout: 3000, toggleSubscribeProperty: [this, 'askDelete'] });
2016-06-30 08:02:45 +08:00
};