iceshrimp-legacy/src/web/app/init.ts

110 lines
2.8 KiB
TypeScript
Raw Normal View History

2017-05-17 22:06:55 +02:00
/**
* App initializer
*/
declare const _VERSION_: string;
declare const _LANG_: string;
declare const _HOST_: string;
2017-11-22 22:51:32 +01:00
declare const __CONSTS__: any;
2017-05-17 22:06:55 +02:00
2017-11-22 22:51:32 +01:00
import * as riot from 'riot';
2017-05-17 22:06:55 +02:00
import checkForUpdate from './common/scripts/check-for-update';
import mixin from './common/mixins';
2017-11-15 19:06:52 +01:00
import MiOS from './common/mios';
2017-05-17 22:06:55 +02:00
require('./common/tags');
/**
* APP ENTRY POINT!
*/
console.info(`Misskey v${_VERSION_} (葵 aoi)`);
2017-05-17 22:06:55 +02:00
2017-11-28 07:05:55 +01:00
// BootTimer解除
window.clearTimeout((window as any).mkBootTimer);
delete (window as any).mkBootTimer;
if (_HOST_ != 'localhost') {
document.domain = _HOST_;
2017-11-20 23:16:13 +01:00
}
2017-11-20 19:41:02 +01:00
2017-11-03 09:46:42 +01:00
{ // Set lang attr
const html = document.documentElement;
html.setAttribute('lang', _LANG_);
2017-11-03 09:46:42 +01:00
}
2017-10-26 02:02:40 +02:00
{ // Set description meta tag
const head = document.getElementsByTagName('head')[0];
const meta = document.createElement('meta');
meta.setAttribute('name', 'description');
meta.setAttribute('content', '%i18n:common.misskey%');
head.appendChild(meta);
}
2017-11-22 22:51:32 +01:00
// Set global configuration
(riot as any).mixin(__CONSTS__);
2017-05-17 22:06:55 +02:00
// iOSでプライベートモードだとlocalStorageが使えないので既存のメソッドを上書きする
try {
localStorage.setItem('kyoppie', 'yuppie');
} catch (e) {
Storage.prototype.setItem = () => { }; // noop
}
// クライアントを更新すべきならする
if (localStorage.getItem('should-refresh') == 'true') {
localStorage.removeItem('should-refresh');
location.reload(true);
}
2017-11-15 19:06:52 +01:00
// MiOSを初期化してコールバックする
2017-11-21 02:01:00 +01:00
export default (callback, sw = false) => {
const mios = new MiOS(sw);
2017-06-06 17:04:28 +02:00
2017-11-15 19:06:52 +01:00
mios.init(() => {
2017-05-17 22:06:55 +02:00
// ミックスイン初期化
2017-11-15 19:06:52 +01:00
mixin(mios);
2017-05-17 22:06:55 +02:00
// ローディング画面クリア
const ini = document.getElementById('ini');
ini.parentNode.removeChild(ini);
// アプリ基底要素マウント
const app = document.createElement('div');
app.setAttribute('id', 'app');
document.body.appendChild(app);
try {
2017-11-15 19:06:52 +01:00
callback(mios);
2017-05-17 22:06:55 +02:00
} catch (e) {
panic(e);
}
2017-11-15 19:06:52 +01:00
// 更新チェック
setTimeout(() => {
checkForUpdate(mios);
}, 3000);
2017-05-17 22:06:55 +02:00
});
2017-11-15 19:06:52 +01:00
};
2017-05-17 22:06:55 +02:00
// BSoD
function panic(e) {
console.error(e);
// Display blue screen
document.documentElement.style.background = '#1269e2';
2017-05-17 22:06:55 +02:00
document.body.innerHTML =
2017-05-17 22:18:32 +02:00
'<div id="error">'
+ '<h1>:( 致命的な問題が発生しました。</h1>'
+ '<p>お使いのブラウザ(またはOS)のバージョンを更新すると解決する可能性があります。</p>'
+ '<hr>'
+ `<p>エラーコード: ${e.toString()}</p>`
+ `<p>ブラウザ バージョン: ${navigator.userAgent}</p>`
+ `<p>クライアント バージョン: ${_VERSION_}</p>`
2017-05-17 22:18:32 +02:00
+ '<hr>'
+ '<p>問題が解決しない場合は、上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください。</p>'
+ '<p>Thank you for using Misskey.</p>'
+ '</div>';
2017-05-17 22:06:55 +02:00
// TODO: Report the bug
}