mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
68 lines
1.9 KiB
JavaScript
68 lines
1.9 KiB
JavaScript
export const
|
|
// import { i18n } from 'Common/Translator';
|
|
i18n = rl.i18n,
|
|
|
|
// import { forEachObjectValue, forEachObjectEntry } from 'Common/Utils';
|
|
forEachObjectValue = (obj, fn) => Object.values(obj).forEach(fn),
|
|
forEachObjectEntry = (obj, fn) => Object.entries(obj).forEach(([key, value]) => fn(key, value)),
|
|
|
|
// import { koArrayWithDestroy } from 'External/ko';
|
|
// 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?.()
|
|
)
|
|
, data, 'arrayChange');
|
|
return data;
|
|
},
|
|
|
|
// import { koComputable } from 'External/ko';
|
|
koComputable = fn => ko.computed(fn, {'pure':true}),
|
|
|
|
arrayToString = (arr, separator) =>
|
|
arr.map(item => item.toString?.() || item).join(separator),
|
|
/*
|
|
getNotificationMessage = code => {
|
|
let key = getKeyByValue(Notifications, code);
|
|
return key ? I18N_DATA.NOTIFICATIONS[i18nKey(key).replace('_NOTIFICATION', '_ERROR')] : '';
|
|
rl.i18n('NOTIFICATIONS/')
|
|
},
|
|
getNotification = (code, message = '', defCode = 0) => {
|
|
code = parseInt(code, 10) || 0;
|
|
if (Notifications.ClientViewError === code && message) {
|
|
return message;
|
|
}
|
|
|
|
return getNotificationMessage(code)
|
|
|| getNotificationMessage(parseInt(defCode, 10))
|
|
|| '';
|
|
},
|
|
*/
|
|
getNotification = code => 'ERROR ' + code,
|
|
|
|
Remote = rl.app.Remote,
|
|
|
|
// capabilities
|
|
capa = ko.observableArray(),
|
|
|
|
// Sieve scripts SieveScriptModel
|
|
scripts = koArrayWithDestroy(),
|
|
|
|
loading = ko.observable(false),
|
|
serverError = ko.observable(false),
|
|
serverErrorDesc = ko.observable(''),
|
|
setError = text => {
|
|
serverError(true);
|
|
serverErrorDesc(text);
|
|
},
|
|
|
|
getMatchTypes = (validOnly = 1) => {
|
|
let result = [':is',':contains',':matches'];
|
|
// https://datatracker.ietf.org/doc/html/rfc6134#section-2.3
|
|
if (capa.includes('extlists') || !validOnly) {
|
|
result.push(':list');
|
|
}
|
|
return result;
|
|
};
|