test a new initialization
Some checks failed
Lint / lint (frontend-shared) (push) Blocked by required conditions
Lint / lint (misskey-bubble-game) (push) Blocked by required conditions
Lint / lint (misskey-js) (push) Blocked by required conditions
Lint / lint (misskey-reversi) (push) Blocked by required conditions
Lint / lint (sw) (push) Blocked by required conditions
Lint / typecheck (backend) (push) Blocked by required conditions
Lint / typecheck (misskey-js) (push) Blocked by required conditions
Lint / typecheck (sw) (push) Blocked by required conditions
Lint / pnpm_install (push) Successful in 1m32s
Test (production install and build) / production (22.11.0) (push) Successful in 1m11s
Publish Docker image / Build (push) Successful in 4m38s
Lint / lint (backend) (push) Failing after 2m14s
Lint / lint (frontend-embed) (push) Has been cancelled
Lint / lint (frontend) (push) Has been cancelled
Test (backend) / unit (22.11.0) (push) Has been cancelled
Some checks failed
Lint / lint (frontend-shared) (push) Blocked by required conditions
Lint / lint (misskey-bubble-game) (push) Blocked by required conditions
Lint / lint (misskey-js) (push) Blocked by required conditions
Lint / lint (misskey-reversi) (push) Blocked by required conditions
Lint / lint (sw) (push) Blocked by required conditions
Lint / typecheck (backend) (push) Blocked by required conditions
Lint / typecheck (misskey-js) (push) Blocked by required conditions
Lint / typecheck (sw) (push) Blocked by required conditions
Lint / pnpm_install (push) Successful in 1m32s
Test (production install and build) / production (22.11.0) (push) Successful in 1m11s
Publish Docker image / Build (push) Successful in 4m38s
Lint / lint (backend) (push) Failing after 2m14s
Lint / lint (frontend-embed) (push) Has been cancelled
Lint / lint (frontend) (push) Has been cancelled
Test (backend) / unit (22.11.0) (push) Has been cancelled
Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
This commit is contained in:
parent
80f788c38b
commit
18469b12e2
5 changed files with 347 additions and 22 deletions
|
@ -5,6 +5,136 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
class TaskDom {
|
||||||
|
constructor(tty_dom, id, promise) {
|
||||||
|
this.tty_dom = tty_dom;
|
||||||
|
this.id = id;
|
||||||
|
this.promise = promise;
|
||||||
|
this.started = Date.now();
|
||||||
|
this.state = { state: 'running' };
|
||||||
|
this.interval = setInterval(() => {
|
||||||
|
this.render();
|
||||||
|
}, 500);
|
||||||
|
this.persistentDom = null;
|
||||||
|
promise.then(() => {
|
||||||
|
this.state = { state: 'done' };
|
||||||
|
clearInterval(this.interval);
|
||||||
|
this.render();
|
||||||
|
}).catch((e) => {
|
||||||
|
this.state = { state: 'failed', message: e.message.toString() };
|
||||||
|
clearInterval(this.interval);
|
||||||
|
this.render();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
render() {
|
||||||
|
switch (this.state.state) {
|
||||||
|
case 'running':
|
||||||
|
if (this.persistentDom === null) {
|
||||||
|
this.persistentDom = this.formatRunning();
|
||||||
|
this.tty_dom.appendChild(this.persistentDom);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.persistentDom.innerHTML = this.formatRunning().innerHTML;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'done':
|
||||||
|
if (this.persistentDom === null) {
|
||||||
|
this.persistentDom = this.formatDone();
|
||||||
|
this.tty_dom.appendChild(this.persistentDom);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.persistentDom.innerHTML = this.formatDone().innerHTML;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'failed':
|
||||||
|
if (this.persistentDom === null) {
|
||||||
|
this.persistentDom = this.formatFailed(this.state.message);
|
||||||
|
this.tty_dom.appendChild(this.persistentDom);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.persistentDom.innerHTML = this.formatFailed(this.state.message).innerHTML;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
formatRunning() {
|
||||||
|
const shiftArray = (arr, n) => {
|
||||||
|
return arr.slice(n).concat(arr.slice(0, n));
|
||||||
|
};
|
||||||
|
const elapsed_secs = Math.floor((Date.now() - this.started) / 1000);
|
||||||
|
const stars = shiftArray(['*', '*', '*', ' ', ' ', ' '], elapsed_secs % 6);
|
||||||
|
const spanStatus = document.createElement('span');
|
||||||
|
spanStatus.innerText = stars.join('');
|
||||||
|
spanStatus.className = 'tty-status-running';
|
||||||
|
const spanMessage = document.createElement('span');
|
||||||
|
spanMessage.innerText = `A start job is running for ${this.id} (${elapsed_secs}s / no limit)`;
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.className = 'tty-line';
|
||||||
|
div.innerHTML = '[';
|
||||||
|
div.appendChild(spanStatus);
|
||||||
|
div.innerHTML += '] ';
|
||||||
|
div.appendChild(spanMessage);
|
||||||
|
return div;
|
||||||
|
}
|
||||||
|
formatDone() {
|
||||||
|
const elapsed_secs = Math.floor((Date.now() - this.started) / 1000);
|
||||||
|
const spanStatus = document.createElement('span');
|
||||||
|
spanStatus.innerText = ' OK ';
|
||||||
|
spanStatus.className = 'tty-status-ok';
|
||||||
|
const spanMessage = document.createElement('span');
|
||||||
|
spanMessage.innerText = `Finished ${this.id} in ${elapsed_secs}s`;
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.className = 'tty-line';
|
||||||
|
div.innerHTML = '[';
|
||||||
|
div.appendChild(spanStatus);
|
||||||
|
div.innerHTML += '] ';
|
||||||
|
div.appendChild(spanMessage);
|
||||||
|
return div;
|
||||||
|
}
|
||||||
|
formatFailed(message) {
|
||||||
|
const elapsed_secs = Math.floor((Date.now() - this.started) / 1000);
|
||||||
|
const spanStatus = document.createElement('span');
|
||||||
|
spanStatus.innerText = 'FAILED';
|
||||||
|
spanStatus.className = 'tty-status-failed';
|
||||||
|
const spanMessage = document.createElement('span');
|
||||||
|
spanMessage.innerText = `Failed ${this.id} in ${elapsed_secs}s: ${message}`;
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.className = 'tty-line';
|
||||||
|
div.innerHTML = '[';
|
||||||
|
div.appendChild(spanStatus);
|
||||||
|
div.innerHTML += '] ';
|
||||||
|
div.appendChild(spanMessage);
|
||||||
|
return div;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class Systemd {
|
||||||
|
constructor() {
|
||||||
|
this.tty_dom = document.querySelector('#tty');
|
||||||
|
console.log('Systemd started');
|
||||||
|
}
|
||||||
|
async start(id, promise) {
|
||||||
|
const task = new TaskDom(this.tty_dom, id, promise);
|
||||||
|
await task.promise;
|
||||||
|
}
|
||||||
|
async startSync(id, func) {
|
||||||
|
const task = new TaskDom(this.tty_dom, id, new Promise((resolve, reject) => {
|
||||||
|
try {
|
||||||
|
resolve(func());
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
reject(e);
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
return await task.promise;
|
||||||
|
}
|
||||||
|
emergency_mode() {
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.className = 'tty-line';
|
||||||
|
div.innerText = 'You are in emergency mode. Type Ctrl-Shift-I to view logs.';
|
||||||
|
this.tty_dom.appendChild(div);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// ブロックの中に入れないと、定義した変数がブラウザのグローバルスコープに登録されてしまい邪魔なので
|
// ブロックの中に入れないと、定義した変数がブラウザのグローバルスコープに登録されてしまい邪魔なので
|
||||||
(async () => {
|
(async () => {
|
||||||
window.onerror = (e) => {
|
window.onerror = (e) => {
|
||||||
|
@ -16,6 +146,8 @@
|
||||||
renderError('SOMETHING_HAPPENED_IN_PROMISE', e);
|
renderError('SOMETHING_HAPPENED_IN_PROMISE', e);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const systemd = new Systemd();
|
||||||
|
|
||||||
let forceError = localStorage.getItem('forceError');
|
let forceError = localStorage.getItem('forceError');
|
||||||
if (forceError != null) {
|
if (forceError != null) {
|
||||||
renderError('FORCED_ERROR', 'This error is forced by having forceError in local storage.');
|
renderError('FORCED_ERROR', 'This error is forced by having forceError in local storage.');
|
||||||
|
@ -37,7 +169,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const metaRes = await window.fetch('/api/meta', {
|
const metaRes = await systemd.start('Fetch /api/meta',window.fetch('/api/meta', {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
body: JSON.stringify({}),
|
body: JSON.stringify({}),
|
||||||
credentials: 'omit',
|
credentials: 'omit',
|
||||||
|
@ -45,12 +177,12 @@
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
},
|
},
|
||||||
});
|
}));
|
||||||
if (metaRes.status !== 200) {
|
if (metaRes.status !== 200) {
|
||||||
renderError('META_FETCH');
|
renderError('META_FETCH');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const meta = await metaRes.json();
|
const meta = await systemd.start('Parse /api/meta', metaRes.json());
|
||||||
const v = meta.version;
|
const v = meta.version;
|
||||||
if (v == null) {
|
if (v == null) {
|
||||||
renderError('META_FETCH_V');
|
renderError('META_FETCH_V');
|
||||||
|
@ -63,7 +195,7 @@
|
||||||
lang = 'en-US';
|
lang = 'en-US';
|
||||||
}
|
}
|
||||||
|
|
||||||
const localRes = await window.fetch(`/assets/locales/${lang}.${v}.json`);
|
const localRes = await systemd.start(window.fetch(`/assets/locales/${lang}.${v}.json`));
|
||||||
if (localRes.status === 200) {
|
if (localRes.status === 200) {
|
||||||
localStorage.setItem('lang', lang);
|
localStorage.setItem('lang', lang);
|
||||||
localStorage.setItem('locale', await localRes.text());
|
localStorage.setItem('locale', await localRes.text());
|
||||||
|
@ -86,10 +218,10 @@
|
||||||
|
|
||||||
// タイミングによっては、この時点でDOMの構築が済んでいる場合とそうでない場合とがある
|
// タイミングによっては、この時点でDOMの構築が済んでいる場合とそうでない場合とがある
|
||||||
if (document.readyState !== 'loading') {
|
if (document.readyState !== 'loading') {
|
||||||
importAppScript();
|
systemd.start('import App Script', importAppScript());
|
||||||
} else {
|
} else {
|
||||||
window.addEventListener('DOMContentLoaded', () => {
|
window.addEventListener('DOMContentLoaded', () => {
|
||||||
importAppScript();
|
systemd.start('import App Script', importAppScript());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
//#endregion
|
//#endregion
|
||||||
|
@ -97,19 +229,21 @@
|
||||||
//#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))) {
|
await systemd.startSync('Apply theme', () => {
|
||||||
document.documentElement.style.setProperty(`--MI_THEME-${k}`, v.toString());
|
for (const [k, v] of Object.entries(JSON.parse(theme))) {
|
||||||
|
document.documentElement.style.setProperty(`--MI_THEME-${k}`, v.toString());
|
||||||
|
|
||||||
// HTMLの theme-color 適用
|
// HTMLの theme-color 適用
|
||||||
if (k === 'htmlThemeColor') {
|
if (k === 'htmlThemeColor') {
|
||||||
for (const tag of document.head.children) {
|
for (const tag of document.head.children) {
|
||||||
if (tag.tagName === 'META' && tag.getAttribute('name') === 'theme-color') {
|
if (tag.tagName === 'META' && tag.getAttribute('name') === 'theme-color') {
|
||||||
tag.setAttribute('content', v);
|
tag.setAttribute('content', v);
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
}
|
}
|
||||||
const colorScheme = localStorage.getItem('colorScheme');
|
const colorScheme = localStorage.getItem('colorScheme');
|
||||||
if (colorScheme) {
|
if (colorScheme) {
|
||||||
|
@ -134,15 +268,19 @@
|
||||||
|
|
||||||
const customCss = localStorage.getItem('customCss');
|
const customCss = localStorage.getItem('customCss');
|
||||||
if (customCss && customCss.length > 0) {
|
if (customCss && customCss.length > 0) {
|
||||||
const style = document.createElement('style');
|
await systemd.startSync('Apply custom CSS', () => {
|
||||||
style.innerHTML = customCss;
|
const style = document.createElement('style');
|
||||||
document.head.appendChild(style);
|
style.innerHTML = customCss;
|
||||||
|
document.head.appendChild(style);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function addStyle(styleText) {
|
async function addStyle(styleText) {
|
||||||
let css = document.createElement('style');
|
await systemd.startSync('Apply custom Style', () => {
|
||||||
css.appendChild(document.createTextNode(styleText));
|
let css = document.createElement('style');
|
||||||
document.head.appendChild(css);
|
css.appendChild(document.createTextNode(styleText));
|
||||||
|
document.head.appendChild(css);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function renderError(code, details) {
|
async function renderError(code, details) {
|
||||||
|
@ -151,6 +289,8 @@
|
||||||
await new Promise(resolve => window.addEventListener('DOMContentLoaded', resolve));
|
await new Promise(resolve => window.addEventListener('DOMContentLoaded', resolve));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
systemd.emergency_mode();
|
||||||
|
|
||||||
let errorsElement = document.getElementById('errors');
|
let errorsElement = document.getElementById('errors');
|
||||||
|
|
||||||
if (!errorsElement) {
|
if (!errorsElement) {
|
||||||
|
@ -160,7 +300,7 @@
|
||||||
<path d="M12 9v2m0 4v.01"></path>
|
<path d="M12 9v2m0 4v.01"></path>
|
||||||
<path d="M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"></path>
|
<path d="M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"></path>
|
||||||
</svg>
|
</svg>
|
||||||
<h1>Failed to load<br>読み込みに失敗しました</h1>
|
<h1>You are in emergency mode! Failed to load<br>読み込みに失敗しました</h1>
|
||||||
<button class="button-big" onclick="location.reload(true);">
|
<button class="button-big" onclick="location.reload(true);">
|
||||||
<span class="button-label-big">Reload / リロード</span>
|
<span class="button-label-big">Reload / リロード</span>
|
||||||
</button>
|
</button>
|
||||||
|
|
|
@ -9,6 +9,28 @@ html {
|
||||||
color: var(--MI_THEME-fg);
|
color: var(--MI_THEME-fg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#tty {
|
||||||
|
font-family: monospace;
|
||||||
|
z-index: 9999;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tty > tty-line {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tty > tty-line .tty-status-ok {
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tty > tty-line .tty-status-error {
|
||||||
|
color: darkred;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tty > tty-line .tty-status-running {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
#splash {
|
#splash {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
|
|
161
packages/backend/src/server/web/systemd.ts
Normal file
161
packages/backend/src/server/web/systemd.ts
Normal file
|
@ -0,0 +1,161 @@
|
||||||
|
class TaskDom<T>{
|
||||||
|
private started = Date.now();
|
||||||
|
private state: {
|
||||||
|
state: 'running'
|
||||||
|
} | {
|
||||||
|
state: 'done'
|
||||||
|
} | {
|
||||||
|
state: 'failed'
|
||||||
|
message: string
|
||||||
|
} = { state: 'running' };
|
||||||
|
|
||||||
|
private interval = setInterval(() => {
|
||||||
|
this.render();
|
||||||
|
}, 500);
|
||||||
|
|
||||||
|
private persistentDom : HTMLDivElement | null = null;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
private tty_dom: HTMLDivElement,
|
||||||
|
private id: string,
|
||||||
|
public promise: Promise<T>) {
|
||||||
|
|
||||||
|
promise.then(() => {
|
||||||
|
this.state = { state: 'done' };
|
||||||
|
clearInterval(this.interval);
|
||||||
|
this.render();
|
||||||
|
}).catch((e) => {
|
||||||
|
this.state = { state: 'failed', message: e.message.toString() };
|
||||||
|
clearInterval(this.interval);
|
||||||
|
this.render();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private render() {
|
||||||
|
switch (this.state.state) {
|
||||||
|
case 'running':
|
||||||
|
if (this.persistentDom === null) {
|
||||||
|
this.persistentDom = this.formatRunning();
|
||||||
|
this.tty_dom.appendChild(this.persistentDom);
|
||||||
|
} else {
|
||||||
|
this.persistentDom.innerHTML = this.formatRunning().innerHTML;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'done':
|
||||||
|
if (this.persistentDom === null) {
|
||||||
|
this.persistentDom = this.formatDone();
|
||||||
|
this.tty_dom.appendChild(this.persistentDom);
|
||||||
|
} else {
|
||||||
|
this.persistentDom.innerHTML = this.formatDone().innerHTML;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'failed':
|
||||||
|
if (this.persistentDom === null) {
|
||||||
|
this.persistentDom = this.formatFailed(this.state.message);
|
||||||
|
this.tty_dom.appendChild(this.persistentDom);
|
||||||
|
} else {
|
||||||
|
this.persistentDom.innerHTML = this.formatFailed(this.state.message).innerHTML;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private formatRunning(): HTMLDivElement {
|
||||||
|
const shiftArray = <T>(arr: T[], n: number): T[] => {
|
||||||
|
return arr.slice(n).concat(arr.slice(0, n));
|
||||||
|
};
|
||||||
|
|
||||||
|
const elapsed_secs = Math.floor((Date.now() - this.started) / 1000);
|
||||||
|
const stars = shiftArray(['*', '*', '*', ' ', ' ', ' '], elapsed_secs % 6);
|
||||||
|
|
||||||
|
const spanStatus = document.createElement('span');
|
||||||
|
|
||||||
|
spanStatus.innerText = stars.join('');
|
||||||
|
spanStatus.className = 'tty-status-running';
|
||||||
|
|
||||||
|
const spanMessage = document.createElement('span');
|
||||||
|
spanMessage.innerText = `A start job is running for ${this.id} (${elapsed_secs}s / no limit)`;
|
||||||
|
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.className = 'tty-line';
|
||||||
|
div.innerHTML = '[';
|
||||||
|
div.appendChild(spanStatus);
|
||||||
|
div.innerHTML += '] ';
|
||||||
|
div.appendChild(spanMessage);
|
||||||
|
|
||||||
|
return div;
|
||||||
|
}
|
||||||
|
|
||||||
|
private formatDone(): HTMLDivElement {
|
||||||
|
const elapsed_secs = Math.floor((Date.now() - this.started) / 1000);
|
||||||
|
|
||||||
|
const spanStatus = document.createElement('span');
|
||||||
|
spanStatus.innerText = ' OK ';
|
||||||
|
spanStatus.className = 'tty-status-ok';
|
||||||
|
|
||||||
|
const spanMessage = document.createElement('span');
|
||||||
|
spanMessage.innerText = `Finished ${this.id} in ${elapsed_secs}s`;
|
||||||
|
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.className = 'tty-line';
|
||||||
|
div.innerHTML = '[';
|
||||||
|
div.appendChild(spanStatus);
|
||||||
|
div.innerHTML += '] ';
|
||||||
|
div.appendChild(spanMessage);
|
||||||
|
|
||||||
|
return div;
|
||||||
|
}
|
||||||
|
|
||||||
|
private formatFailed(message: string): HTMLDivElement {
|
||||||
|
const elapsed_secs = Math.floor((Date.now() - this.started) / 1000);
|
||||||
|
|
||||||
|
const spanStatus = document.createElement('span');
|
||||||
|
spanStatus.innerText = 'FAILED';
|
||||||
|
spanStatus.className = 'tty-status-failed';
|
||||||
|
|
||||||
|
const spanMessage = document.createElement('span');
|
||||||
|
spanMessage.innerText = `Failed ${this.id} in ${elapsed_secs}s: ${message}`;
|
||||||
|
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.className = 'tty-line';
|
||||||
|
div.innerHTML = '[';
|
||||||
|
div.appendChild(spanStatus);
|
||||||
|
div.innerHTML += '] ';
|
||||||
|
div.appendChild(spanMessage);
|
||||||
|
|
||||||
|
return div;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export class Systemd {
|
||||||
|
private tty_dom: HTMLDivElement;
|
||||||
|
constructor() {
|
||||||
|
this.tty_dom = document.querySelector('#tty') as HTMLDivElement;
|
||||||
|
|
||||||
|
console.log('Systemd started');
|
||||||
|
}
|
||||||
|
|
||||||
|
async start(id: string, promise: Promise<void>): Promise<void> {
|
||||||
|
const task = new TaskDom(this.tty_dom, id, promise);
|
||||||
|
await task.promise;
|
||||||
|
}
|
||||||
|
|
||||||
|
async startSync<T>(id: string, func: () => T): Promise<T> {
|
||||||
|
const task = new TaskDom<T>(this.tty_dom, id, new Promise((resolve, reject) => {
|
||||||
|
try {
|
||||||
|
resolve(func());
|
||||||
|
} catch (e) {
|
||||||
|
reject(e);
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
|
||||||
|
return await task.promise;
|
||||||
|
}
|
||||||
|
|
||||||
|
public emergency_mode() {
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.className = 'tty-line';
|
||||||
|
div.innerText = 'You are in emergency mode. Type Ctrl-Shift-I to view logs.';
|
||||||
|
this.tty_dom.appendChild(div);
|
||||||
|
}
|
||||||
|
}
|
|
@ -56,6 +56,7 @@ html(class='embed')
|
||||||
br
|
br
|
||||||
| Please turn on your JavaScript
|
| Please turn on your JavaScript
|
||||||
div#splash
|
div#splash
|
||||||
|
div#tty
|
||||||
img#splashIcon(src= icon || '/static-assets/splash.png')
|
img#splashIcon(src= icon || '/static-assets/splash.png')
|
||||||
div#splashSpinner
|
div#splashSpinner
|
||||||
<span>Loading...</span>
|
<span>Loading...</span>
|
||||||
|
|
|
@ -73,6 +73,7 @@ html
|
||||||
br
|
br
|
||||||
| Please turn on your JavaScript
|
| Please turn on your JavaScript
|
||||||
div#splash
|
div#splash
|
||||||
|
div#tty
|
||||||
img#splashIcon(src= icon || '/static-assets/splash.png')
|
img#splashIcon(src= icon || '/static-assets/splash.png')
|
||||||
div#splashSpinner
|
div#splashSpinner
|
||||||
<span>Loading...</span>
|
<span>Loading...</span>
|
||||||
|
|
Loading…
Reference in a new issue