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

122 lines
2.9 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;
2018-02-10 02:27:05 +01:00
//declare const __CONSTS__: any;
2017-05-17 22:06:55 +02:00
2018-02-09 05:32:41 +01:00
import Vue from 'vue';
import VueRouter from 'vue-router';
2018-02-10 08:22:14 +01:00
import VModal from 'vue-js-modal';
2018-02-09 05:32:41 +01:00
Vue.use(VueRouter);
2018-02-10 08:22:14 +01:00
Vue.use(VModal);
2018-02-09 05:32:41 +01:00
2018-02-10 02:52:26 +01:00
import App from './app.vue';
2017-05-17 22:06:55 +02:00
import checkForUpdate from './common/scripts/check-for-update';
2017-11-15 19:06:52 +01:00
import MiOS from './common/mios';
2017-05-17 22:06:55 +02:00
/**
* 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
2018-02-09 10:28:06 +01:00
//#region Set lang attr
const html = document.documentElement;
html.setAttribute('lang', _LANG_);
//#endregion
//#region 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);
//#endregion
2017-10-26 02:02:40 +02:00
2017-11-22 22:51:32 +01:00
// Set global configuration
2018-02-09 10:28:06 +01:00
//(riot as any).mixin(__CONSTS__);
2017-11-22 22:51:32 +01:00
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を初期化してコールバックする
2018-02-11 04:08:43 +01:00
export default (callback: (launch: () => Vue) => void, sw = false) => {
2017-11-21 02:01:00 +01:00
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
// アプリ基底要素マウント
2018-02-10 02:52:26 +01:00
document.body.innerHTML = '<div id="app"></div>';
2018-02-09 10:57:42 +01:00
2018-02-10 09:01:32 +01:00
// Register global components
require('./common/views/components');
2018-02-10 06:56:33 +01:00
const launch = () => {
return new Vue({
2018-02-11 04:08:43 +01:00
data: {
os: mios
},
2018-02-10 06:56:33 +01:00
router: new VueRouter({
mode: 'history'
}),
render: createEl => createEl(App)
}).$mount('#app');
};
2017-05-17 22:06:55 +02:00
try {
2018-02-11 04:08:43 +01:00
callback(launch);
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
}