Sharkey/src/web/app/init.ts

161 lines
3.8 KiB
TypeScript
Raw Normal View History

2017-05-17 23:06:55 +03:00
/**
* App initializer
*/
2018-02-09 06:32:41 +02:00
import Vue from 'vue';
import VueRouter from 'vue-router';
2018-02-10 09:22:14 +02:00
import VModal from 'vue-js-modal';
2018-02-09 06:32:41 +02:00
Vue.use(VueRouter);
2018-02-10 09:22:14 +02:00
Vue.use(VModal);
2018-02-09 06:32:41 +02:00
2018-02-11 17:17:51 +02:00
// Register global directives
require('./common/views/directives');
// Register global components
require('./common/views/components');
2018-02-24 17:18:09 +02:00
require('./common/views/widgets');
2018-02-11 17:17:51 +02:00
2018-02-20 00:56:39 +02:00
// Register global filters
2018-02-26 19:36:19 +02:00
require('./common/views/filters');
2018-02-20 00:56:39 +02:00
2018-02-16 20:53:21 +02:00
Vue.mixin({
destroyed(this: any) {
2018-02-17 11:14:23 +02:00
if (this.$el.parentNode) {
this.$el.parentNode.removeChild(this.$el);
}
2018-02-16 20:53:21 +02:00
}
});
2018-02-10 03:52:26 +02:00
import App from './app.vue';
2017-05-17 23:06:55 +03:00
import checkForUpdate from './common/scripts/check-for-update';
2018-02-20 19:53:34 +02:00
import MiOS, { API } from './common/mios';
2018-02-24 17:18:09 +02:00
import { version, host, lang } from './config';
2017-05-17 23:06:55 +03:00
/**
* APP ENTRY POINT!
*/
2018-02-24 17:18:09 +02:00
console.info(`Misskey v${version} (葵 aoi)`);
2018-02-24 03:34:36 +02:00
console.info(
'%cここにコードを入力したり張り付けたりしないでください。アカウントが不正利用される可能性があります。',
'color: red; background: yellow; font-size: 16px;');
2017-05-17 23:06:55 +03:00
2017-11-28 08:05:55 +02:00
// BootTimer解除
window.clearTimeout((window as any).mkBootTimer);
delete (window as any).mkBootTimer;
2018-02-24 17:18:09 +02:00
if (host != 'localhost') {
document.domain = host;
2017-11-21 00:16:13 +02:00
}
2017-11-20 20:41:02 +02:00
2018-02-09 11:28:06 +02:00
//#region Set lang attr
const html = document.documentElement;
2018-02-24 17:18:09 +02:00
html.setAttribute('lang', lang);
2018-02-09 11:28:06 +02:00
//#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 03:02:40 +03:00
2017-05-17 23:06:55 +03: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 20:06:52 +02:00
// MiOSを初期化してコールバックする
2018-02-27 17:11:28 +02:00
export default (callback: (launch: (api?: (os: MiOS) => API) => [Vue, MiOS]) => void, sw = false) => {
2018-02-18 05:35:18 +02:00
const os = new MiOS(sw);
2017-06-06 18:04:28 +03:00
2018-02-18 05:35:18 +02:00
os.init(() => {
2017-05-17 23:06:55 +03:00
// アプリ基底要素マウント
2018-02-10 03:52:26 +02:00
document.body.innerHTML = '<div id="app"></div>';
2018-02-09 11:57:42 +02:00
2018-02-27 17:30:36 +02:00
const launch = (api?: (os: MiOS) => API) => {
os.apis = api ? api(os) : null;
2018-02-22 16:53:07 +02:00
2018-02-18 05:35:18 +02:00
Vue.mixin({
2018-02-20 22:55:19 +02:00
data() {
return {
os,
api: os.api,
apis: os.apis
};
2018-02-18 05:35:18 +02:00
}
});
2018-02-23 00:50:42 +02:00
const app = new Vue({
router: new VueRouter({
mode: 'history'
}),
created() {
this.$watch('os.i', i => {
// キャッシュ更新
localStorage.setItem('me', JSON.stringify(i));
}, {
deep: true
});
},
render: createEl => createEl(App)
});
os.app = app;
2018-02-22 16:53:07 +02:00
// マウント
app.$mount('#app');
2018-02-20 19:53:34 +02:00
return [app, os] as [Vue, MiOS];
2018-02-10 07:56:33 +02:00
};
2017-05-17 23:06:55 +03:00
try {
2018-02-11 05:08:43 +02:00
callback(launch);
2017-05-17 23:06:55 +03:00
} catch (e) {
panic(e);
}
2018-02-24 17:18:09 +02:00
//#region 更新チェック
const preventUpdate = localStorage.getItem('preventUpdate') == 'true';
if (!preventUpdate) {
setTimeout(() => {
checkForUpdate(os);
}, 3000);
}
//#endregion
2017-05-17 23:06:55 +03:00
});
2017-11-15 20:06:52 +02:00
};
2017-05-17 23:06:55 +03:00
// BSoD
function panic(e) {
console.error(e);
// Display blue screen
document.documentElement.style.background = '#1269e2';
2017-05-17 23:06:55 +03:00
document.body.innerHTML =
2017-05-17 23:18:32 +03:00
'<div id="error">'
+ '<h1>:( 致命的な問題が発生しました。</h1>'
+ '<p>お使いのブラウザ(またはOS)のバージョンを更新すると解決する可能性があります。</p>'
+ '<hr>'
+ `<p>エラーコード: ${e.toString()}</p>`
+ `<p>ブラウザ バージョン: ${navigator.userAgent}</p>`
2018-02-24 17:18:09 +02:00
+ `<p>クライアント バージョン: ${version}</p>`
2017-05-17 23:18:32 +03:00
+ '<hr>'
+ '<p>問題が解決しない場合は、上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください。</p>'
+ '<p>Thank you for using Misskey.</p>'
+ '</div>';
2017-05-17 23:06:55 +03:00
// TODO: Report the bug
}