Sharkey/src/client/app/init.ts

232 lines
6.1 KiB
TypeScript
Raw Normal View History

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