Update boot.js
This commit is contained in:
parent
c9fea5a7a0
commit
feec35bf4f
1 changed files with 84 additions and 80 deletions
|
@ -10,12 +10,14 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
//#region Script
|
// ブロックの中に入れないと、定義した変数がブラウザのグローバルスコープに登録されてしまい邪魔
|
||||||
|
{
|
||||||
|
//#region Script
|
||||||
|
|
||||||
//#region Detect language
|
//#region Detect language
|
||||||
const supportedLangs = LANGS;
|
const supportedLangs = LANGS;
|
||||||
let lang = localStorage.getItem('lang');
|
let lang = localStorage.getItem('lang');
|
||||||
if (lang == null || !supportedLangs.includes(lang)) {
|
if (lang == null || !supportedLangs.includes(lang)) {
|
||||||
if (supportedLangs.includes(navigator.language)) {
|
if (supportedLangs.includes(navigator.language)) {
|
||||||
lang = navigator.language;
|
lang = navigator.language;
|
||||||
} else {
|
} else {
|
||||||
|
@ -24,29 +26,29 @@ if (lang == null || !supportedLangs.includes(lang)) {
|
||||||
// Fallback
|
// Fallback
|
||||||
if (lang == null) lang = 'en-US';
|
if (lang == null) lang = 'en-US';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
const ver = localStorage.getItem('v') || VERSION;
|
const ver = localStorage.getItem('v') || VERSION;
|
||||||
|
|
||||||
const salt = localStorage.getItem('salt')
|
const salt = localStorage.getItem('salt')
|
||||||
? `?salt=${localStorage.getItem('salt')}`
|
? `?salt=${localStorage.getItem('salt')}`
|
||||||
: '';
|
: '';
|
||||||
|
|
||||||
const head = document.getElementsByTagName('head')[0];
|
const head = document.getElementsByTagName('head')[0];
|
||||||
|
|
||||||
const script = document.createElement('script');
|
const script = document.createElement('script');
|
||||||
script.setAttribute('src', `/assets/app.${ver}.${lang}.js${salt}`);
|
script.setAttribute('src', `/assets/app.${ver}.${lang}.js${salt}`);
|
||||||
script.setAttribute('async', 'true');
|
script.setAttribute('async', 'true');
|
||||||
script.setAttribute('defer', 'true');
|
script.setAttribute('defer', 'true');
|
||||||
head.appendChild(script);
|
head.appendChild(script);
|
||||||
|
|
||||||
// 3秒経ってもスクリプトがロードされない場合はバージョンが古くて
|
// 3秒経ってもスクリプトがロードされない場合はバージョンが古くて
|
||||||
// 404になっているせいかもしれないので、バージョンを確認して古ければ更新する
|
// 404になっているせいかもしれないので、バージョンを確認して古ければ更新する
|
||||||
//
|
//
|
||||||
// 読み込まれたスクリプトからこのタイマーを解除できるように、
|
// 読み込まれたスクリプトからこのタイマーを解除できるように、
|
||||||
// グローバルにタイマーIDを代入しておく
|
// グローバルにタイマーIDを代入しておく
|
||||||
window.mkBootTimer = window.setTimeout(async () => {
|
window.mkBootTimer = window.setTimeout(async () => {
|
||||||
const res = await fetch('/api/meta', {
|
const res = await fetch('/api/meta', {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
cache: 'no-cache'
|
cache: 'no-cache'
|
||||||
|
@ -62,12 +64,12 @@ window.mkBootTimer = window.setTimeout(async () => {
|
||||||
'New version of Misskey available. The page will be reloaded.');
|
'New version of Misskey available. The page will be reloaded.');
|
||||||
refresh();
|
refresh();
|
||||||
}
|
}
|
||||||
}, 3000);
|
}, 3000);
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
//#region Theme
|
//#region Theme
|
||||||
const theme = localStorage.getItem('theme');
|
const theme = localStorage.getItem('theme');
|
||||||
if (theme) {
|
if (theme) {
|
||||||
for (const [k, v] of Object.entries(JSON.parse(theme))) {
|
for (const [k, v] of Object.entries(JSON.parse(theme))) {
|
||||||
document.documentElement.style.setProperty(`--${k}`, v.toString());
|
document.documentElement.style.setProperty(`--${k}`, v.toString());
|
||||||
|
|
||||||
|
@ -81,20 +83,21 @@ if (theme) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
const fontSize = localStorage.getItem('fontSize');
|
const fontSize = localStorage.getItem('fontSize');
|
||||||
if (fontSize) {
|
if (fontSize) {
|
||||||
document.documentElement.classList.add('f-' + fontSize);
|
document.documentElement.classList.add('f-' + fontSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
const useSystemFont = localStorage.getItem('useSystemFont');
|
const useSystemFont = localStorage.getItem('useSystemFont');
|
||||||
if (useSystemFont) {
|
if (useSystemFont) {
|
||||||
document.documentElement.classList.add('useSystemFont');
|
document.documentElement.classList.add('useSystemFont');
|
||||||
}
|
}
|
||||||
|
|
||||||
function refresh() {
|
// eslint-disable-next-line no-inner-declarations
|
||||||
|
function refresh() {
|
||||||
// Random
|
// Random
|
||||||
localStorage.setItem('salt', Math.random().toString().substr(2, 8));
|
localStorage.setItem('salt', Math.random().toString().substr(2, 8));
|
||||||
|
|
||||||
|
@ -109,4 +112,5 @@ function refresh() {
|
||||||
}
|
}
|
||||||
|
|
||||||
location.reload();
|
location.reload();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue