From 3d794980b0955738d73309901166dc5346ec9ebb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?syuilo=E2=AD=90=EF=B8=8F?= Date: Thu, 11 May 2017 04:15:54 +0900 Subject: [PATCH] Update boot.js --- src/web/app/boot.js | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/src/web/app/boot.js b/src/web/app/boot.js index 97802f89f..242df13c7 100644 --- a/src/web/app/boot.js +++ b/src/web/app/boot.js @@ -1,7 +1,9 @@ /** - * boot + * boot loader */ +"use strict"; + import * as riot from 'riot'; import api from './common/scripts/api'; import signout from './common/scripts/signout'; @@ -15,16 +17,12 @@ require('./common/tags'); * MISSKEY ENTRY POINT! */ -"use strict"; - console.info(`Misskey v${VERSION}`); document.domain = CONFIG.host; // Set global configuration -riot.mixin({ - CONFIG -}); +riot.mixin({ CONFIG }); // ↓ NodeList、HTMLCollection、FileList、DataTransferItemListで forEach を使えるようにする if (NodeList.prototype.forEach === undefined) { @@ -40,7 +38,7 @@ if (window.DataTransferItemList && DataTransferItemList.prototype.forEach === un DataTransferItemList.prototype.forEach = Array.prototype.forEach; } -// ↓ iOSでプライベートモードだとlocalStorageが使えないので既存のメソッドを上書きする +// iOSでプライベートモードだとlocalStorageが使えないので既存のメソッドを上書きする try { localStorage.setItem('kyoppie', 'yuppie'); } catch (e) { @@ -76,15 +74,18 @@ export default callback => { fetchme(i, fetched); } + // フェッチが完了したとき function fetched(me) { if (me) { riot.observable(me); + // この me オブジェクトを更新するメソッド me.update = data => { if (data) Object.assign(me, data); me.trigger('updated'); }; + // ローカルストレージにキャッシュ localStorage.setItem('me', JSON.stringify(me)); me.on('updated', () => { @@ -93,11 +94,14 @@ export default callback => { }); } + // ミックスイン初期化 mixin(me); + // ローディング画面クリア const ini = document.getElementById('ini'); ini.parentNode.removeChild(ini); + // アプリ基底要素マウント const app = document.createElement('div'); app.setAttribute('id', 'app'); document.body.appendChild(app); @@ -125,7 +129,7 @@ function fetchme(token, cb) { body: JSON.stringify({ i: token }) - }).then(res => { + }).then(res => { // When success // When failed to authenticate user if (res.status !== 200) { return signout(); @@ -138,14 +142,17 @@ function fetchme(token, cb) { // initialize it if user data is empty me.data ? done() : init(); }); - }, () => { - riot.mount(document.body.appendChild(document.createElement('mk-error'))); + }, () => { // When failure + // Display error screen + riot.mount(document.body.appendChild( + document.createElement('mk-error'))); }); function done() { if (cb) cb(me); } + // Initialize user data function init() { const data = generateDefaultUserdata(); api(token, 'i/appdata/set', { @@ -157,8 +164,11 @@ function fetchme(token, cb) { } } +// BSoD function panic(e) { console.error(e); + + // Display blue screen document.body.innerHTML = `

:( 致命的な問題が発生しました。

@@ -168,8 +178,9 @@ function panic(e) {

ブラウザ バージョン: ${navigator.userAgent}

クライアント バージョン: ${VERSION}


-

問題が解決しない場合は上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください。

+

問題が解決しない場合は、上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください。

Thank you for using Misskey.

`; + // TODO: Report the bug }