mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-11 01:23:43 +08:00
71 lines
2.2 KiB
JavaScript
71 lines
2.2 KiB
JavaScript
import { SaveSettingsStep } from 'Common/Enums';
|
|
import { elementById } from 'Common/Globals';
|
|
|
|
let __themeTimer = 0,
|
|
__themeJson = null;
|
|
|
|
export const
|
|
isArray = Array.isArray,
|
|
arrayLength = array => isArray(array) && array.length,
|
|
isFunction = v => typeof v === 'function',
|
|
pString = value => null != value ? '' + value : '',
|
|
|
|
forEachObjectValue = (obj, fn) => Object.values(obj).forEach(fn),
|
|
|
|
forEachObjectEntry = (obj, fn) => Object.entries(obj).forEach(([key, value]) => fn(key, value)),
|
|
|
|
pInt = (value, defaultValue = 0) => {
|
|
value = parseInt(value, 10);
|
|
return isNaN(value) || !isFinite(value) ? defaultValue : value;
|
|
},
|
|
|
|
convertThemeName = theme => theme
|
|
.replace(/@custom$/, '')
|
|
.replace(/([A-Z])/g, ' $1')
|
|
.replace(/[^a-zA-Z0-9]+/g, ' ')
|
|
.trim(),
|
|
|
|
defaultOptionsAfterRender = (domItem, item) =>
|
|
domItem && item && undefined !== item.disabled
|
|
&& domItem.classList.toggle('disabled', domItem.disabled = item.disabled),
|
|
|
|
// unescape(encodeURIComponent()) makes the UTF-16 DOMString to an UTF-8 string
|
|
b64EncodeJSON = data => btoa(unescape(encodeURIComponent(JSON.stringify(data)))),
|
|
/* // Without deprecated 'unescape':
|
|
b64EncodeJSON = data => btoa(encodeURIComponent(JSON.stringify(data)).replace(
|
|
/%([0-9A-F]{2})/g, (match, p1) => String.fromCharCode('0x' + p1)
|
|
)),
|
|
*/
|
|
b64EncodeJSONSafe = data => b64EncodeJSON(data).replace(/\+/g, '-').replace(/\//g, '_').replace(/=+$/, ''),
|
|
|
|
changeTheme = (value, themeTrigger = ()=>0) => {
|
|
const themeStyle = elementById('app-theme-style'),
|
|
clearTimer = () => {
|
|
__themeTimer = setTimeout(() => themeTrigger(SaveSettingsStep.Idle), 1000);
|
|
__themeJson = null;
|
|
},
|
|
url = themeStyle.dataset.href.replace(/(Admin|User)\/-\/[^/]+\//, '$1/-/' + value + '/') + 'Json/';
|
|
|
|
clearTimeout(__themeTimer);
|
|
|
|
themeTrigger(SaveSettingsStep.Animate);
|
|
|
|
if (__themeJson) {
|
|
__themeJson.abort();
|
|
}
|
|
let init = {};
|
|
if (window.AbortController) {
|
|
__themeJson = new AbortController();
|
|
init.signal = __themeJson.signal;
|
|
}
|
|
rl.fetchJSON(url, init)
|
|
.then(data => {
|
|
if (2 === arrayLength(data)) {
|
|
themeStyle.textContent = data[1];
|
|
themeTrigger(SaveSettingsStep.TrueResult);
|
|
}
|
|
})
|
|
.then(clearTimer, clearTimer);
|
|
},
|
|
|
|
getKeyByValue = (o, v) => Object.keys(o).find(key => o[key] === v);
|