mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 23:38:14 +08:00
ce63ba506a
And now we can embed theme and language in index.html template
141 lines
3.4 KiB
JavaScript
141 lines
3.4 KiB
JavaScript
import { SaveSettingsStep } from 'Common/Enums';
|
|
import { doc, elementById } from 'Common/Globals';
|
|
|
|
export const
|
|
isArray = Array.isArray,
|
|
isNonEmptyArray = array => isArray(array) && array.length,
|
|
isFunction = v => typeof v === 'function';
|
|
|
|
/**
|
|
* @param {*} value
|
|
* @param {number=} defaultValue = 0
|
|
* @returns {number}
|
|
*/
|
|
export function pInt(value, defaultValue = 0) {
|
|
value = parseInt(value, 10);
|
|
return isNaN(value) || !isFinite(value) ? defaultValue : value;
|
|
}
|
|
|
|
/**
|
|
* @param {*} value
|
|
* @returns {string}
|
|
*/
|
|
export function pString(value) {
|
|
return null != value ? '' + value : '';
|
|
}
|
|
|
|
/**
|
|
* @returns {boolean}
|
|
*/
|
|
export function inFocus() {
|
|
try {
|
|
return doc.activeElement && doc.activeElement.matches(
|
|
'input,textarea,.cke_editable'
|
|
);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} theme
|
|
* @returns {string}
|
|
*/
|
|
export const convertThemeName = theme => {
|
|
if ('@custom' === theme.substr(-7)) {
|
|
theme = theme.substr(0, theme.length - 7).trim();
|
|
}
|
|
|
|
return theme
|
|
.replace(/([A-Z])/g, ' $1')
|
|
.replace(/[^a-zA-Z0-9]+/g, ' ')
|
|
.trim();
|
|
};
|
|
|
|
/**
|
|
* @param {object} domOption
|
|
* @param {object} item
|
|
* @returns {void}
|
|
*/
|
|
export function defaultOptionsAfterRender(domItem, item) {
|
|
if (item && undefined !== item.disabled && domItem) {
|
|
domItem.classList.toggle('disabled', domItem.disabled = item.disabled);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {object} koTrigger
|
|
* @param {mixed} context
|
|
* @returns {mixed}
|
|
*/
|
|
export function settingsSaveHelperSimpleFunction(koTrigger, context) {
|
|
return iError => {
|
|
koTrigger.call(context, iError ? SaveSettingsStep.FalseResult : SaveSettingsStep.TrueResult);
|
|
setTimeout(() => koTrigger.call(context, SaveSettingsStep.Idle), 1000);
|
|
};
|
|
}
|
|
|
|
let __themeTimer = 0,
|
|
__themeJson = null;
|
|
|
|
/**
|
|
* @param {string} value
|
|
* @param {function=} themeTrigger = noop
|
|
* @returns {void}
|
|
*/
|
|
export function changeTheme(value, themeTrigger = ()=>{}) {
|
|
const themeStyle = elementById('app-theme-style'),
|
|
clearTimer = () => {
|
|
__themeTimer = setTimeout(() => themeTrigger(SaveSettingsStep.Idle), 1000);
|
|
__themeJson = null;
|
|
};
|
|
|
|
let url = themeStyle.dataset.href;
|
|
|
|
if (url) {
|
|
url = url.toString()
|
|
.replace(/\/-\/[^/]+\/-\//, '/-/' + value + '/-/')
|
|
.replace(/\/Css\/[^/]+\/User\//, '/Css/0/User/')
|
|
.replace(/\/Hash\/[^/]+\//, '/Hash/-/');
|
|
|
|
if ('Json/' !== url.substr(-5)) {
|
|
url += '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 (data && isArray(data) && 2 === data.length) {
|
|
themeStyle.textContent = data[1];
|
|
themeStyle.dataset.href = url;
|
|
themeStyle.dataset.theme = data[0];
|
|
themeTrigger(SaveSettingsStep.TrueResult);
|
|
}
|
|
})
|
|
.then(clearTimer, clearTimer);
|
|
}
|
|
}
|
|
|
|
export function addObservablesTo(target, observables) {
|
|
Object.entries(observables).forEach(([key, value]) =>
|
|
target[key] = /*isArray(value) ? ko.observableArray(value) :*/ ko.observable(value) );
|
|
}
|
|
|
|
export function addComputablesTo(target, computables) {
|
|
Object.entries(computables).forEach(([key, fn]) => target[key] = ko.computed(fn));
|
|
}
|
|
|
|
export function addSubscribablesTo(target, subscribables) {
|
|
Object.entries(subscribables).forEach(([key, fn]) => target[key].subscribe(fn));
|
|
}
|