web-apps/apps/common/main/lib/controller/Themes.js

203 lines
6.3 KiB
JavaScript
Raw Normal View History

2021-02-06 10:03:46 +00:00
/**
* Created by Maxim.Kadushkin on 2/5/2021.
*/
define([
'core'
], function () {
'use strict';
2021-04-18 14:32:39 +00:00
Common.UI.Themes = new (function(locale) {
!locale && (locale = {});
var id_default_theme = 'theme-classic-light';
var themes_map = {
2021-04-18 14:32:39 +00:00
'theme-light': {
text: locale.txtThemeLight || 'Light',
type: 'light'
},
'theme-classic-light': {
text: locale.txtThemeClassicLight || 'Classic Light',
type: 'light'
},
'theme-dark': {
text: locale.txtThemeDark || 'Dark',
type: 'dark'
},
}
var name_colors = [
"background-normal",
"background-toolbar",
"background-toolbar-additional",
"background-primary-dialog-button",
"background-tab-underline",
"background-notification-popover",
"background-notification-badge",
"background-scrim",
"background-loader",
"highlight-button-hover",
"highlight-button-pressed",
"highlight-button-pressed-hover",
"highlight-primary-dialog-button-hover",
"highlight-header-button-hover",
"highlight-header-button-pressed",
"highlight-toolbar-tab-underline",
"highlight-text-select",
"border-toolbar",
"border-divider",
"border-regular-control",
"border-toolbar-button-hover",
"border-preview-hover",
"border-preview-select",
"border-control-focus",
"border-color-shading",
"border-error",
"text-normal",
"text-normal-pressed",
"text-secondary",
"text-tertiary",
"text-link",
"text-inverse",
"text-toolbar-header",
"text-contrast-background",
"icon-normal",
"icon-normal-pressed",
"icon-inverse",
"icon-toolbar-header",
"icon-notification-badge",
"icon-contrast-popover",
"icon-success",
"canvas-background",
"canvas-content-background",
"canvas-page-border",
"canvas-ruler-background",
"canvas-ruler-margins-background",
"canvas-ruler-mark",
"canvas-ruler-handle-border",
"canvas-ruler-handle-border-disabled",
"canvas-high-contrast",
"canvas-high-contrast-disabled",
"canvas-cell-border",
"canvas-cell-title-border",
"canvas-cell-title-border-hover",
"canvas-cell-title-border-selected",
"canvas-cell-title-hover",
"canvas-cell-title-selected",
"canvas-dark-cell-title",
"canvas-dark-cell-title-hover",
"canvas-dark-cell-title-selected",
"canvas-dark-cell-title-border",
"canvas-dark-cell-title-border-hover",
"canvas-dark-cell-title-border-selected",
"canvas-scroll-thumb",
"canvas-scroll-thumb-hover",
"canvas-scroll-thumb-pressed",
"canvas-scroll-thumb-border",
"canvas-scroll-thumb-border-hover",
"canvas-scroll-thumb-border-pressed",
"canvas-scroll-arrow",
"canvas-scroll-arrow-hover",
"canvas-scroll-arrow-pressed",
"canvas-scroll-thumb-target",
"canvas-scroll-thumb-target-hover",
"canvas-scroll-thumb-target-pressed"
];
var get_current_theme_colors = function (colors) {
var out_object = {};
if ( !(Common.Utils.isIE10 || Common.Utils.isIE11) ) {
var style = getComputedStyle(document.body);
colors.forEach(function (item, index) {
out_object[item] = style.getPropertyValue('--' + item).trim()
})
}
return out_object;
}
2021-02-06 10:03:46 +00:00
return {
init: function (api) {
var me = this;
2021-03-13 21:20:01 +00:00
2021-02-06 10:03:46 +00:00
$(window).on('storage', function (e) {
if ( e.key == 'ui-theme' ) {
me.setTheme(e.originalEvent.newValue);
}
})
this.api = api;
2021-04-18 14:32:39 +00:00
var theme_name = Common.localStorage.getItem('ui-theme', id_default_theme);
if ( !$('body').hasClass(theme_name) ) {
$('body').addClass(theme_name);
}
2021-02-06 10:03:46 +00:00
var obj = get_current_theme_colors(name_colors);
obj.type = themes_map[theme_name];
2021-04-06 17:06:14 +00:00
obj.name = theme_name;
api.asc_setSkin(obj);
2021-02-06 10:03:46 +00:00
},
available: function () {
return !Common.Utils.isIE;
},
2021-04-18 14:32:39 +00:00
map: function () {
return themes_map
},
get: function (id) {
return themes_map[id]
},
currentThemeId: function () {
return Common.localStorage.getItem('ui-theme') || id_default_theme;
},
defaultThemeId: function () {
return id_default_theme;
},
defaultTheme: function () {
return themes_map[id_default_theme]
2021-02-06 10:03:46 +00:00
},
isDarkTheme: function () {
return themes_map[this.current()] == 'dark';
},
2021-04-18 14:32:39 +00:00
setTheme: function (id) {
if ( !!themes_map[id] ) {
2021-02-06 10:03:46 +00:00
var classname = document.documentElement.className.replace(/theme-\w+\s?/, '');
2021-02-17 15:58:24 +00:00
document.body.className = classname;
2021-02-06 10:03:46 +00:00
2021-04-18 14:32:39 +00:00
$('body').addClass(id);
var obj = get_current_theme_colors(name_colors);
2021-04-18 14:32:39 +00:00
obj.type = themes_map[id].type;
obj.name = id;
this.api.asc_setSkin(obj);
2021-02-17 21:27:58 +00:00
2021-04-18 14:32:39 +00:00
Common.localStorage.setItem('ui-theme', id);
Common.NotificationCenter.trigger('uitheme:changed', id);
2021-02-06 10:03:46 +00:00
}
},
toggleTheme: function () {
2021-04-18 14:32:39 +00:00
this.setTheme(this.current() == 'theme-dark' ? id_default_theme : 'theme-dark');
2021-02-06 10:03:46 +00:00
}
}
2021-04-18 14:32:39 +00:00
})(Common.UI.Themes);
2021-04-06 17:06:14 +00:00
});