2017-05-17 22:06:55 +02:00
|
|
|
/**
|
|
|
|
* App initializer
|
|
|
|
*/
|
|
|
|
|
2018-02-09 05:32:41 +01:00
|
|
|
import Vue from 'vue';
|
2018-04-29 11:16:02 +02:00
|
|
|
import Vuex from 'vuex';
|
2018-02-09 05:32:41 +01:00
|
|
|
import VueRouter from 'vue-router';
|
2018-02-10 08:22:14 +01:00
|
|
|
import VModal from 'vue-js-modal';
|
2018-03-05 10:11:07 +01:00
|
|
|
import * as TreeView from 'vue-json-tree-view';
|
2018-03-10 05:22:20 +01:00
|
|
|
import VAnimateCss from 'v-animate-css';
|
2018-03-01 22:26:31 +01:00
|
|
|
import Element from 'element-ui';
|
2018-03-03 06:25:36 +01:00
|
|
|
import ElementLocaleEn from 'element-ui/lib/locale/lang/en';
|
|
|
|
import ElementLocaleJa from 'element-ui/lib/locale/lang/ja';
|
|
|
|
|
|
|
|
import App from './app.vue';
|
|
|
|
import checkForUpdate from './common/scripts/check-for-update';
|
2018-04-29 14:37:51 +02:00
|
|
|
import MiOS, { API } from './mios';
|
2018-04-05 08:50:52 +02:00
|
|
|
import { version, codename, lang } from './config';
|
2018-03-03 06:25:36 +01:00
|
|
|
|
|
|
|
let elementLocale;
|
|
|
|
switch (lang) {
|
|
|
|
case 'ja': elementLocale = ElementLocaleJa; break;
|
|
|
|
case 'en': elementLocale = ElementLocaleEn; break;
|
|
|
|
default: elementLocale = ElementLocaleEn; break;
|
|
|
|
}
|
2018-02-09 05:32:41 +01:00
|
|
|
|
2018-04-21 08:37:02 +02:00
|
|
|
Vue.use(Vuex);
|
2018-02-09 05:32:41 +01:00
|
|
|
Vue.use(VueRouter);
|
2018-02-10 08:22:14 +01:00
|
|
|
Vue.use(VModal);
|
2018-03-05 10:11:07 +01:00
|
|
|
Vue.use(TreeView);
|
2018-03-10 05:22:20 +01:00
|
|
|
Vue.use(VAnimateCss);
|
2018-03-03 06:25:36 +01:00
|
|
|
Vue.use(Element, { locale: elementLocale });
|
2018-02-09 05:32:41 +01:00
|
|
|
|
2018-02-11 16:17:51 +01:00
|
|
|
// Register global directives
|
|
|
|
require('./common/views/directives');
|
|
|
|
|
|
|
|
// Register global components
|
|
|
|
require('./common/views/components');
|
2018-02-24 16:18:09 +01:00
|
|
|
require('./common/views/widgets');
|
2018-02-11 16:17:51 +01:00
|
|
|
|
2018-02-19 23:56:39 +01:00
|
|
|
// Register global filters
|
2018-02-26 18:36:19 +01:00
|
|
|
require('./common/views/filters');
|
2018-02-19 23:56:39 +01:00
|
|
|
|
2018-02-16 19:53:21 +01:00
|
|
|
Vue.mixin({
|
|
|
|
destroyed(this: any) {
|
2018-02-17 10:14:23 +01:00
|
|
|
if (this.$el.parentNode) {
|
|
|
|
this.$el.parentNode.removeChild(this.$el);
|
|
|
|
}
|
2018-02-16 19:53:21 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-04-20 00:59:01 +02:00
|
|
|
// Dark/Light
|
2018-04-22 10:28:21 +02:00
|
|
|
const bus = new Vue();
|
2018-04-20 00:59:01 +02:00
|
|
|
Vue.mixin({
|
|
|
|
data() {
|
|
|
|
return {
|
2018-04-22 10:28:21 +02:00
|
|
|
_darkmode_: localStorage.getItem('darkmode') == 'true'
|
2018-04-20 00:59:01 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
beforeCreate() {
|
2018-04-22 10:28:21 +02:00
|
|
|
// なぜか警告が出るので
|
|
|
|
this._darkmode_ = localStorage.getItem('darkmode') == 'true';
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
bus.$off('updated', this._onDarkmodeUpdated_);
|
2018-04-20 00:59:01 +02:00
|
|
|
},
|
|
|
|
mounted() {
|
2018-04-22 10:28:21 +02:00
|
|
|
this._onDarkmodeUpdated_(this._darkmode_);
|
|
|
|
bus.$on('updated', this._onDarkmodeUpdated_);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
_updateDarkmode_(v) {
|
|
|
|
localStorage.setItem('darkmode', v.toString());
|
|
|
|
if (v) {
|
2018-04-20 00:59:01 +02:00
|
|
|
document.documentElement.setAttribute('data-darkmode', 'true');
|
|
|
|
} else {
|
|
|
|
document.documentElement.removeAttribute('data-darkmode');
|
2018-04-22 10:28:21 +02:00
|
|
|
}
|
2018-04-22 10:43:02 +02:00
|
|
|
bus.$emit('updated', v);
|
2018-04-22 10:28:21 +02:00
|
|
|
},
|
|
|
|
_onDarkmodeUpdated_(v) {
|
|
|
|
if (!this.$el || !this.$el.setAttribute) return;
|
|
|
|
if (v) {
|
|
|
|
this.$el.setAttribute('data-darkmode', 'true');
|
|
|
|
} else {
|
2018-04-20 00:59:01 +02:00
|
|
|
this.$el.removeAttribute('data-darkmode');
|
|
|
|
}
|
2018-04-22 10:28:21 +02:00
|
|
|
this._darkmode_ = v;
|
|
|
|
this.$forceUpdate();
|
|
|
|
}
|
2018-04-20 00:59:01 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-05-17 22:06:55 +02:00
|
|
|
/**
|
|
|
|
* APP ENTRY POINT!
|
|
|
|
*/
|
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
console.info(`Misskey v${version} (${codename})`);
|
2018-02-24 02:34:36 +01:00
|
|
|
console.info(
|
|
|
|
'%cここにコードを入力したり張り付けたりしないでください。アカウントが不正利用される可能性があります。',
|
2018-03-06 06:32:15 +01:00
|
|
|
'color: red; background: yellow; font-size: 16px; font-weight: bold;');
|
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;
|
|
|
|
|
2018-02-09 10:28:06 +01:00
|
|
|
//#region Set lang attr
|
|
|
|
const html = document.documentElement;
|
2018-02-24 16:18:09 +01:00
|
|
|
html.setAttribute('lang', lang);
|
2018-02-09 10:28:06 +01:00
|
|
|
//#endregion
|
|
|
|
|
|
|
|
//#region Set description meta tag
|
|
|
|
const head = document.getElementsByTagName('head')[0];
|
|
|
|
const meta = document.createElement('meta');
|
|
|
|
meta.setAttribute('name', 'description');
|
2018-05-20 13:26:38 +02:00
|
|
|
meta.setAttribute('content', '%i18n:common.misskey%');
|
2018-02-09 10:28:06 +01:00
|
|
|
head.appendChild(meta);
|
|
|
|
//#endregion
|
2017-10-26 02:02:40 +02: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-03-27 07:13:12 +02:00
|
|
|
export default (callback: (launch: (router: VueRouter, api?: (os: MiOS) => API) => [Vue, MiOS]) => void, sw = false) => {
|
2018-02-18 04:35:18 +01:00
|
|
|
const os = new MiOS(sw);
|
2017-06-06 17:04:28 +02:00
|
|
|
|
2018-02-18 04:35:18 +01:00
|
|
|
os.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-03-27 07:13:12 +02:00
|
|
|
const launch = (router: VueRouter, api?: (os: MiOS) => API) => {
|
2018-02-27 16:30:36 +01:00
|
|
|
os.apis = api ? api(os) : null;
|
2018-02-22 15:53:07 +01:00
|
|
|
|
2018-02-18 04:35:18 +01:00
|
|
|
Vue.mixin({
|
2018-02-20 21:55:19 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
os,
|
|
|
|
api: os.api,
|
2018-04-29 11:16:02 +02:00
|
|
|
apis: os.apis,
|
|
|
|
clientSettings: os.store.state.settings.data
|
2018-02-20 21:55:19 +01:00
|
|
|
};
|
2018-04-29 11:16:02 +02:00
|
|
|
}
|
2018-02-18 04:35:18 +01:00
|
|
|
});
|
|
|
|
|
2018-02-22 23:50:42 +01:00
|
|
|
const app = new Vue({
|
2018-04-29 10:17:15 +02:00
|
|
|
store: os.store,
|
2018-03-27 07:13:12 +02:00
|
|
|
router,
|
2018-02-22 23:50:42 +01:00
|
|
|
render: createEl => createEl(App)
|
|
|
|
});
|
|
|
|
|
|
|
|
os.app = app;
|
|
|
|
|
2018-02-22 15:53:07 +01:00
|
|
|
// マウント
|
|
|
|
app.$mount('#app');
|
2018-02-20 18:53:34 +01:00
|
|
|
|
|
|
|
return [app, os] as [Vue, MiOS];
|
2018-02-10 06:56:33 +01:00
|
|
|
};
|
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);
|
|
|
|
}
|
|
|
|
|
2018-02-24 16:18:09 +01:00
|
|
|
//#region 更新チェック
|
|
|
|
const preventUpdate = localStorage.getItem('preventUpdate') == 'true';
|
|
|
|
if (!preventUpdate) {
|
|
|
|
setTimeout(() => {
|
|
|
|
checkForUpdate(os);
|
|
|
|
}, 3000);
|
|
|
|
}
|
|
|
|
//#endregion
|
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
|
2017-06-12 20:20:43 +02:00
|
|
|
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>`
|
2018-02-24 16:18:09 +01:00
|
|
|
+ `<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
|
|
|
|
}
|