web-apps/apps/common/main/lib/util/htmlutils.js

114 lines
4.2 KiB
JavaScript
Raw Normal View History

2021-02-10 20:42:55 +00:00
function checkScaling() {
var matches = {
'pixel-ratio__1_25': "screen and (-webkit-min-device-pixel-ratio: 1.25) and (-webkit-max-device-pixel-ratio: 1.49), " +
"screen and (min-resolution: 1.25dppx) and (max-resolution: 1.49dppx)",
'pixel-ratio__1_5': "screen and (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.74), " +
"screen and (min-resolution: 1.5dppx) and (max-resolution: 1.74dppx)",
'pixel-ratio__1_75': "screen and (-webkit-min-device-pixel-ratio: 1.75) and (-webkit-max-device-pixel-ratio: 1.99), " +
"screen and (min-resolution: 1.75dppx) and (max-resolution: 1.99dppx)",
};
for (var c in matches) {
if ( window.matchMedia(matches[c]).matches ) {
document.body.classList.add(c);
break;
}
2021-02-10 20:42:55 +00:00
}
if ( !window.matchMedia("screen and (-webkit-device-pixel-ratio: 1.5)," +
"screen and (-webkit-device-pixel-ratio: 1)," +
"screen and (-webkit-device-pixel-ratio: 2)").matches )
{
// don't add zoom for mobile devices
2021-06-28 14:43:46 +00:00
// if (!(/android|avantgo|playbook|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od|ad)|iris|kindle|lge |maemo|midp|mmp|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent || navigator.vendor || window.opera)))
// document.getElementsByTagName('html')[0].setAttribute('style', 'zoom: ' + (1 / window.devicePixelRatio) + ';');
}
2021-02-10 20:42:55 +00:00
}
checkScaling();
var params = (function() {
var e,
a = /\+/g, // Regex for replacing addition symbol with a space
r = /([^&=]+)=?([^&]*)/g,
d = function (s) { return decodeURIComponent(s.replace(a, " ")); },
q = window.location.search.substring(1),
urlParams = {};
while (e = r.exec(q))
urlParams[d(e[1])] = d(e[2]);
return urlParams;
})();
var checkLocalStorage = (function () {
try {
var storage = window['localStorage'];
return true;
}
catch(e) {
return false;
}
})();
2021-12-14 14:06:36 +00:00
if ( window.desktop ) {
var theme = desktop.theme
2021-10-08 22:05:06 +00:00
if ( theme ) {
if ( !theme.id && !!theme.type ) {
if ( theme.type == 'dark' ) theme.id = 'theme-dark'; else
if ( theme.type == 'light' ) theme.id = 'theme-classic-light';
}
2021-10-08 22:05:06 +00:00
if ( theme.id ) {
2022-07-21 14:10:03 +00:00
if ( theme.id == 'theme-system' ) {
localStorage.setItem("ui-theme-use-system", "1");
localStorage.removeItem("ui-theme-id");
2022-08-09 15:26:01 +00:00
delete params.uitheme;
2022-07-21 14:10:03 +00:00
} else {
localStorage.setItem("ui-theme-id", theme.id);
localStorage.removeItem("ui-theme-use-system");
2022-07-21 14:10:03 +00:00
}
2021-11-05 21:33:02 +00:00
localStorage.removeItem("ui-theme");
2021-10-08 22:05:06 +00:00
}
}
2021-09-08 07:40:36 +00:00
}
if ( !!params.uitheme && checkLocalStorage && !localStorage.getItem("ui-theme-id") ) {
// const _t = params.uitheme.match(/([\w-]+)/g);
if ( params.uitheme == 'default-dark' )
params.uitheme = 'theme-dark';
else
if ( params.uitheme == 'default-light' )
params.uitheme = 'theme-classic-light';
2021-09-24 14:12:58 +00:00
localStorage.removeItem("ui-theme");
}
2021-02-24 20:34:05 +00:00
2021-09-24 14:12:58 +00:00
var ui_theme_name = checkLocalStorage && localStorage.getItem("ui-theme-id") ? localStorage.getItem("ui-theme-id") : params.uitheme;
var ui_theme_type;
if ( !ui_theme_name ) {
if ( window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ) {
ui_theme_name = 'theme-dark';
ui_theme_type = 'dark';
2021-09-24 14:12:58 +00:00
checkLocalStorage && localStorage.removeItem("ui-theme");
}
}
2021-02-10 20:42:55 +00:00
if ( !!ui_theme_name ) {
document.body.classList.add(ui_theme_name);
}
2021-11-04 19:44:24 +00:00
if ( checkLocalStorage ) {
let current_theme = localStorage.getItem("ui-theme");
if ( !!current_theme && /type":\s*"dark/.test(current_theme) || ui_theme_type == 'dark' ) {
document.body.classList.add("theme-type-dark");
let content_theme = localStorage.getItem("content-theme");
if ( content_theme == 'dark' ) {
2021-11-04 19:44:24 +00:00
document.body.classList.add("content-theme-dark");
}
}
2022-08-31 13:15:09 +00:00
}