sharkey/src/client/app/init.ts

177 lines
4.4 KiB
TypeScript
Raw Normal View History

2017-05-18 05:06:55 +09:00
/**
* App initializer
*/
2018-02-09 13:32:41 +09:00
import Vue from 'vue';
2018-04-29 18:16:02 +09:00
import Vuex from 'vuex';
2018-02-09 13:32:41 +09:00
import VueRouter from 'vue-router';
2018-03-05 18:11:07 +09:00
import * as TreeView from 'vue-json-tree-view';
2018-03-10 13:22:20 +09:00
import VAnimateCss from 'v-animate-css';
2018-09-01 20:47:49 +09:00
import VModal from 'vue-js-modal';
2018-03-03 14:25:36 +09:00
2018-09-26 19:14:11 +09:00
import VueHotkey from './common/hotkey';
2018-03-03 14:25:36 +09:00
import App from './app.vue';
import checkForUpdate from './common/scripts/check-for-update';
2018-04-29 21:37:51 +09:00
import MiOS, { API } from './mios';
2018-04-05 15:50:52 +09:00
import { version, codename, lang } from './config';
2018-09-26 19:14:11 +09:00
import applyTheme from './common/scripts/theme';
const defaultTheme = require('../theme/light.json');
if (localStorage.getItem('theme') == null) {
applyTheme(defaultTheme);
}
2018-03-03 14:25:36 +09:00
Vue.use(Vuex);
2018-02-09 13:32:41 +09:00
Vue.use(VueRouter);
2018-03-05 18:11:07 +09:00
Vue.use(TreeView);
2018-03-10 13:22:20 +09:00
Vue.use(VAnimateCss);
2018-09-01 20:47:49 +09:00
Vue.use(VModal);
Vue.use(VueHotkey);
2018-02-09 13:32:41 +09:00
2018-02-12 00:17:51 +09:00
// Register global directives
require('./common/views/directives');
// Register global components
require('./common/views/components');
2018-02-25 00:18:09 +09:00
require('./common/views/widgets');
2018-02-12 00:17:51 +09:00
2018-02-20 07:56:39 +09:00
// Register global filters
2018-02-27 02:36:19 +09:00
require('./common/views/filters');
2018-02-20 07:56:39 +09:00
2018-02-17 03:53:21 +09:00
Vue.mixin({
2018-09-15 21:53:04 +09:00
methods: {
destroyDom() {
this.$destroy();
if (this.$el.parentNode) {
this.$el.parentNode.removeChild(this.$el);
}
2018-02-17 18:14:23 +09:00
}
2018-02-17 03:53:21 +09:00
}
});
2017-05-18 05:06:55 +09:00
/**
* APP ENTRY POINT!
*/
2018-03-29 14:48:47 +09:00
console.info(`Misskey v${version} (${codename})`);
2018-02-24 10:34:36 +09:00
console.info(
'%c%i18n:common.do-not-copy-paste%',
2018-03-06 14:32:15 +09:00
'color: red; background: yellow; font-size: 16px; font-weight: bold;');
2017-05-18 05:06:55 +09:00
2017-11-28 15:05:55 +09:00
// BootTimer解除
window.clearTimeout((window as any).mkBootTimer);
delete (window as any).mkBootTimer;
2018-02-09 18:28:06 +09:00
//#region Set lang attr
const html = document.documentElement;
2018-02-25 00:18:09 +09:00
html.setAttribute('lang', lang);
2018-02-09 18:28:06 +09:00
//#endregion
2017-05-18 05:06:55 +09: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-16 03:06:52 +09:00
// MiOSを初期化してコールバックする
2018-03-27 14:13:12 +09:00
export default (callback: (launch: (router: VueRouter, api?: (os: MiOS) => API) => [Vue, MiOS]) => void, sw = false) => {
2018-02-18 12:35:18 +09:00
const os = new MiOS(sw);
2017-06-07 00:04:28 +09:00
2018-02-18 12:35:18 +09:00
os.init(() => {
2017-05-18 05:06:55 +09:00
// アプリ基底要素マウント
2018-02-10 10:52:26 +09:00
document.body.innerHTML = '<div id="app"></div>';
2018-02-09 18:57:42 +09:00
2018-03-27 14:13:12 +09:00
const launch = (router: VueRouter, api?: (os: MiOS) => API) => {
2018-02-28 00:30:36 +09:00
os.apis = api ? api(os) : null;
2018-02-22 23:53:07 +09:00
2018-09-22 20:39:12 +09:00
//#region shadow
const shadow = '0 3px 8px rgba(0, 0, 0, 0.2)';
if (os.store.state.settings.useShadow) document.documentElement.style.setProperty('--shadow', shadow);
os.store.watch(s => {
return s.settings.useShadow;
}, v => {
document.documentElement.style.setProperty('--shadow', v ? shadow : 'none');
});
//#endregion
//#region rounded corners
const round = '6px';
if (os.store.state.settings.roundedCorners) document.documentElement.style.setProperty('--round', round);
os.store.watch(s => {
return s.settings.roundedCorners;
}, v => {
document.documentElement.style.setProperty('--round', v ? round : '0');
});
//#endregion
2018-02-18 12:35:18 +09:00
Vue.mixin({
2018-02-21 05:55:19 +09:00
data() {
return {
os,
api: os.api,
2018-05-27 13:49:09 +09:00
apis: os.apis
2018-02-21 05:55:19 +09:00
};
2018-04-29 18:16:02 +09:00
}
2018-02-18 12:35:18 +09:00
});
2018-02-23 07:50:42 +09:00
const app = new Vue({
2018-04-29 17:17:15 +09:00
store: os.store,
2018-03-27 14:13:12 +09:00
router,
2018-02-23 07:50:42 +09:00
render: createEl => createEl(App)
});
os.app = app;
2018-02-22 23:53:07 +09:00
// マウント
app.$mount('#app');
2018-02-21 02:53:34 +09:00
return [app, os] as [Vue, MiOS];
2018-02-10 14:56:33 +09:00
};
2017-05-18 05:06:55 +09:00
try {
2018-02-11 12:08:43 +09:00
callback(launch);
2017-05-18 05:06:55 +09:00
} catch (e) {
panic(e);
}
2018-02-25 00:18:09 +09:00
//#region 更新チェック
2018-05-21 02:13:39 +09:00
const preventUpdate = os.store.state.device.preventUpdate;
2018-02-25 00:18:09 +09:00
if (!preventUpdate) {
setTimeout(() => {
checkForUpdate(os);
}, 3000);
}
//#endregion
2017-05-18 05:06:55 +09:00
});
2017-11-16 03:06:52 +09:00
};
2017-05-18 05:06:55 +09:00
// BSoD
function panic(e) {
console.error(e);
// Display blue screen
document.documentElement.style.background = '#1269e2';
2017-05-18 05:06:55 +09:00
document.body.innerHTML =
2017-05-18 05:18:32 +09:00
'<div id="error">'
+ '<h1>:( 致命的な問題が発生しました。</h1>'
+ '<p>お使いのブラウザ(またはOS)のバージョンを更新すると解決する可能性があります。</p>'
+ '<hr>'
+ `<p>エラーコード: ${e.toString()}</p>`
+ `<p>ブラウザ バージョン: ${navigator.userAgent}</p>`
2018-02-25 00:18:09 +09:00
+ `<p>クライアント バージョン: ${version}</p>`
2017-05-18 05:18:32 +09:00
+ '<hr>'
+ '<p>問題が解決しない場合は、上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください。</p>'
+ '<p>Thank you for using Misskey.</p>'
+ '</div>';
2017-05-18 05:06:55 +09:00
// TODO: Report the bug
}