2017-05-17 15:06:55 -05:00
|
|
|
/**
|
|
|
|
* App initializer
|
|
|
|
*/
|
|
|
|
|
2017-11-22 14:43:00 -06:00
|
|
|
declare const _VERSION_: string;
|
|
|
|
declare const _LANG_: string;
|
|
|
|
declare const _HOST_: string;
|
2017-05-17 15:06:55 -05:00
|
|
|
|
|
|
|
import checkForUpdate from './common/scripts/check-for-update';
|
|
|
|
import mixin from './common/mixins';
|
2017-11-15 12:06:52 -06:00
|
|
|
import MiOS from './common/mios';
|
2017-05-17 15:06:55 -05:00
|
|
|
require('./common/tags');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* APP ENTRY POINT!
|
|
|
|
*/
|
|
|
|
|
2017-11-22 14:43:00 -06:00
|
|
|
console.info(`Misskey v${_VERSION_} (葵 aoi)`);
|
2017-05-17 15:06:55 -05:00
|
|
|
|
2017-11-22 14:43:00 -06:00
|
|
|
if (_HOST_ != 'localhost') {
|
|
|
|
document.domain = _HOST_;
|
2017-11-20 16:16:13 -06:00
|
|
|
}
|
2017-11-20 12:41:02 -06:00
|
|
|
|
2017-11-03 03:46:42 -05:00
|
|
|
{ // Set lang attr
|
|
|
|
const html = document.documentElement;
|
2017-11-22 14:43:00 -06:00
|
|
|
html.setAttribute('lang', _LANG_);
|
2017-11-03 03:46:42 -05:00
|
|
|
}
|
|
|
|
|
2017-10-25 19:02:40 -05: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-05-17 15:06:55 -05: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 12:06:52 -06:00
|
|
|
// MiOSを初期化してコールバックする
|
2017-11-20 19:01:00 -06:00
|
|
|
export default (callback, sw = false) => {
|
|
|
|
const mios = new MiOS(sw);
|
2017-06-06 10:04:28 -05:00
|
|
|
|
2017-11-15 12:06:52 -06:00
|
|
|
mios.init(() => {
|
2017-05-17 15:06:55 -05:00
|
|
|
// ミックスイン初期化
|
2017-11-15 12:06:52 -06:00
|
|
|
mixin(mios);
|
2017-05-17 15:06:55 -05: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 12:06:52 -06:00
|
|
|
callback(mios);
|
2017-05-17 15:06:55 -05:00
|
|
|
} catch (e) {
|
|
|
|
panic(e);
|
|
|
|
}
|
|
|
|
|
2017-11-15 12:06:52 -06:00
|
|
|
// 更新チェック
|
|
|
|
setTimeout(() => {
|
|
|
|
checkForUpdate(mios);
|
|
|
|
}, 3000);
|
2017-05-17 15:06:55 -05:00
|
|
|
});
|
2017-11-15 12:06:52 -06:00
|
|
|
};
|
2017-05-17 15:06:55 -05:00
|
|
|
|
|
|
|
// BSoD
|
|
|
|
function panic(e) {
|
|
|
|
console.error(e);
|
|
|
|
|
|
|
|
// Display blue screen
|
2017-06-12 13:20:43 -05:00
|
|
|
document.documentElement.style.background = '#1269e2';
|
2017-05-17 15:06:55 -05:00
|
|
|
document.body.innerHTML =
|
2017-05-17 15:18:32 -05:00
|
|
|
'<div id="error">'
|
|
|
|
+ '<h1>:( 致命的な問題が発生しました。</h1>'
|
|
|
|
+ '<p>お使いのブラウザ(またはOS)のバージョンを更新すると解決する可能性があります。</p>'
|
|
|
|
+ '<hr>'
|
|
|
|
+ `<p>エラーコード: ${e.toString()}</p>`
|
|
|
|
+ `<p>ブラウザ バージョン: ${navigator.userAgent}</p>`
|
2017-11-22 14:43:00 -06:00
|
|
|
+ `<p>クライアント バージョン: ${_VERSION_}</p>`
|
2017-05-17 15:18:32 -05:00
|
|
|
+ '<hr>'
|
|
|
|
+ '<p>問題が解決しない場合は、上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください。</p>'
|
|
|
|
+ '<p>Thank you for using Misskey.</p>'
|
|
|
|
+ '</div>';
|
2017-05-17 15:06:55 -05:00
|
|
|
|
|
|
|
// TODO: Report the bug
|
|
|
|
}
|