snappymail/dev/External/ko.js

175 lines
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';
import { SaveSettingStatus } from 'Common/Enums';
2022-09-26 17:55:26 +08:00
import { 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)),
2022-09-02 17:52:07 +08:00
dispose = disposable => isFunction(disposable?.dispose) && disposable.dispose(),
2023-02-21 22:33:55 +08:00
onKey = (key, element, fValueAccessor, fAllBindings, model) => {
2023-02-21 21:26:37 +08:00
let fn = event => {
if (key == event.key) {
// stopEvent(event);
// element.dispatchEvent(new Event('change'));
2023-02-21 22:33:55 +08:00
fValueAccessor().call(model);
2023-02-21 21:26:37 +08:00
}
};
element.addEventListener('keydown', fn);
ko.utils.domNodeDisposal.addDisposeCallback(element, () => element.removeEventListener('keydown', fn));
},
// With this we don't need delegateRunOnDestroy
koArrayWithDestroy = data => {
data = ko.observableArray(data);
data.subscribe(changes =>
changes.forEach(item =>
2022-09-02 17:52:07 +08:00
'deleted' === item.status && null == item.moved && 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: {
2023-02-21 22:33:55 +08:00
init: (element, fValueAccessor, fAllBindings, model) =>
onKey('Enter', element, fValueAccessor, fAllBindings, model)
},
2016-06-30 08:02:45 +08:00
2022-09-26 19:54:28 +08:00
onEsc: {
2023-02-21 22:33:55 +08:00
init: (element, fValueAccessor, fAllBindings, model) =>
onKey('Escape', element, fValueAccessor, fAllBindings, model)
2022-09-26 19:54:28 +08:00
},
onSpace: {
2023-02-21 22:33:55 +08:00
init: (element, fValueAccessor, fAllBindings, model) =>
onKey(' ', element, fValueAccessor, fAllBindings, model)
},
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) => {
2022-10-10 19:52:56 +08:00
const cl = element.classList;
2022-10-10 19:52:56 +08:00
let disabled = !fValueAccessor().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-save-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 === SaveSettingStatus.Saving);
cl.toggle('success', value === SaveSettingStatus.Success);
cl.toggle('error', value === SaveSettingStatus.Failed);
}
cl = element.classList;
cl.toggle('success', value === SaveSettingStatus.Success);
cl.toggle('error', value === SaveSettingStatus.Failed);
2021-02-11 17:08:27 +08:00
}
}
});
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.toggleSubscribeProperty = (target, options) => {
const prop = options[1];
2019-07-05 03:19:24 +08:00
if (prop) {
target.subscribe(
2022-09-02 17:52:07 +08:00
prev => prev?.[prop]?.(false),
2019-07-05 03:19:24 +08:00
options[0],
'beforeChange'
);
2014-08-20 23:03:12 +08:00
2022-09-02 17:52:07 +08:00
target.subscribe(next => 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
};