sharkey/src/client/app/desktop/script.ts

158 lines
4.5 KiB
TypeScript
Raw Normal View History

2016-12-29 07:49:51 +09:00
/**
* Desktop Client
*/
2018-03-27 14:13:12 +09:00
import VueRouter from 'vue-router';
2017-02-19 12:31:23 +09:00
// Style
2017-02-19 15:36:53 +09:00
import './style.styl';
2017-02-19 12:31:23 +09:00
2017-05-18 05:06:55 +09:00
import init from '../init';
2018-02-21 02:53:34 +09:00
import fuckAdBlock from '../common/scripts/fuck-ad-block';
2017-11-21 05:09:45 +09:00
import composeNotification from '../common/scripts/compose-notification';
2016-12-29 07:49:51 +09:00
2018-02-17 18:14:23 +09:00
import chooseDriveFolder from './api/choose-drive-folder';
2018-02-18 12:35:18 +09:00
import chooseDriveFile from './api/choose-drive-file';
import dialog from './api/dialog';
import input from './api/input';
2018-02-20 22:53:34 +09:00
import post from './api/post';
2018-02-21 02:53:34 +09:00
import notify from './api/notify';
import updateAvatar from './api/update-avatar';
import updateBanner from './api/update-banner';
2018-02-17 18:14:23 +09:00
2018-02-10 14:56:33 +09:00
import MkIndex from './views/pages/index.vue';
2018-06-05 21:36:21 +09:00
import MkDeck from './views/pages/deck/deck.vue';
2018-08-14 01:19:05 +09:00
import MkAdmin from './views/pages/admin/admin.vue';
import MkStats from './views/pages/stats/stats.vue';
2018-02-19 14:29:42 +09:00
import MkUser from './views/pages/user/user.vue';
2018-04-20 13:31:43 +09:00
import MkFavorites from './views/pages/favorites.vue';
2018-02-20 23:37:35 +09:00
import MkSelectDrive from './views/pages/selectdrive.vue';
import MkDrive from './views/pages/drive.vue';
2018-02-21 15:30:03 +09:00
import MkHomeCustomize from './views/pages/home-customize.vue';
2018-02-22 21:15:24 +09:00
import MkMessagingRoom from './views/pages/messaging-room.vue';
2018-04-08 02:30:37 +09:00
import MkNote from './views/pages/note.vue';
2018-02-22 21:39:36 +09:00
import MkSearch from './views/pages/search.vue';
2018-06-10 12:19:19 +09:00
import MkTag from './views/pages/tag.vue';
2018-08-03 22:34:58 +09:00
import MkReversi from './views/pages/games/reversi.vue';
2018-06-16 18:42:49 +09:00
import MkShare from './views/pages/share.vue';
import MkFollow from '../common/views/pages/follow.vue';
import MiOS from '../mios';
2018-02-10 10:27:05 +09:00
2016-12-29 07:49:51 +09:00
/**
2017-05-18 05:06:55 +09:00
* init
2016-12-29 07:49:51 +09:00
*/
2018-02-11 12:08:43 +09:00
init(async (launch) => {
2018-02-17 02:24:10 +09:00
// Register directives
require('./views/directives');
2018-02-11 12:08:43 +09:00
// Register components
require('./views/components');
2018-02-25 00:18:09 +09:00
require('./views/widgets');
2018-02-11 12:08:43 +09:00
2018-03-27 14:13:12 +09:00
// Init router
const router = new VueRouter({
mode: 'history',
routes: [
{ path: '/', name: 'index', component: MkIndex },
2018-06-05 21:36:21 +09:00
{ path: '/deck', name: 'deck', component: MkDeck },
2018-08-14 01:19:05 +09:00
{ path: '/admin', name: 'admin', component: MkAdmin },
{ path: '/stats', name: 'stats', component: MkStats },
2018-03-27 14:13:12 +09:00
{ path: '/i/customize-home', component: MkHomeCustomize },
2018-04-20 13:31:43 +09:00
{ path: '/i/favorites', component: MkFavorites },
2018-03-27 16:51:12 +09:00
{ path: '/i/messaging/:user', component: MkMessagingRoom },
2018-03-27 14:13:12 +09:00
{ path: '/i/drive', component: MkDrive },
{ path: '/i/drive/folder/:folder', component: MkDrive },
{ path: '/selectdrive', component: MkSelectDrive },
{ path: '/search', component: MkSearch },
2018-06-10 12:19:19 +09:00
{ path: '/tags/:tag', component: MkTag },
2018-06-16 18:42:49 +09:00
{ path: '/share', component: MkShare },
2018-08-03 22:42:53 +09:00
{ path: '/reversi/:game?', component: MkReversi },
2018-03-27 14:13:12 +09:00
{ path: '/@:user', component: MkUser },
{ path: '/notes/:note', component: MkNote },
{ path: '/authorize-follow', component: MkFollow }
2018-03-27 14:13:12 +09:00
]
});
2018-02-22 02:00:30 +09:00
// Launch the app
2018-03-27 14:13:12 +09:00
const [, os] = launch(router, os => ({
2018-05-27 13:49:09 +09:00
chooseDriveFolder: chooseDriveFolder(os),
chooseDriveFile: chooseDriveFile(os),
2018-05-27 18:12:39 +09:00
dialog: dialog(os),
input: input(os),
post: post(os),
notify: notify(os),
2018-02-21 02:53:34 +09:00
updateAvatar: updateAvatar(os),
updateBanner: updateBanner(os)
}));
if (os.store.getters.isSignedIn) {
/**
* Fuck AD Block
*/
fuckAdBlock(os);
}
2018-02-11 12:08:43 +09:00
2016-12-29 07:49:51 +09:00
/**
* Init Notification
*/
2018-08-25 08:39:12 +09:00
if ('Notification' in window && os.store.getters.isSignedIn) {
2016-12-29 07:49:51 +09:00
// 許可を得ていなかったらリクエスト
2017-11-13 18:05:35 +09:00
if ((Notification as any).permission == 'default') {
2017-06-07 00:04:28 +09:00
await Notification.requestPermission();
}
2017-11-13 18:05:35 +09:00
if ((Notification as any).permission == 'granted') {
registerNotifications(os);
2016-12-29 07:49:51 +09:00
}
}
2017-11-21 10:01:00 +09:00
}, true);
2017-06-07 00:04:28 +09:00
function registerNotifications(os: MiOS) {
const stream = os.stream;
2017-06-07 15:19:28 +09:00
if (stream == null) return;
const connection = stream.useSharedConnection('main');
2017-11-17 01:24:44 +09:00
connection.on('notification', notification => {
const _n = composeNotification('notification', notification);
const n = new Notification(_n.title, {
body: _n.body,
icon: _n.icon
2017-06-07 00:04:28 +09:00
});
setTimeout(n.close.bind(n), 6000);
});
connection.on('driveFileCreated', file => {
const _n = composeNotification('driveFileCreated', file);
const n = new Notification(_n.title, {
body: _n.body,
icon: _n.icon
});
setTimeout(n.close.bind(n), 5000);
});
2017-11-17 01:24:44 +09:00
connection.on('unreadMessagingMessage', message => {
const _n = composeNotification('unreadMessagingMessage', message);
const n = new Notification(_n.title, {
body: _n.body,
icon: _n.icon
2017-11-17 01:24:44 +09:00
});
n.onclick = () => {
n.close();
/*(riot as any).mount(document.body.appendChild(document.createElement('mk-messaging-room-window')), {
user: message.user
});*/
};
setTimeout(n.close.bind(n), 7000);
});
2018-03-17 17:53:35 +09:00
connection.on('reversiInvited', matching => {
const _n = composeNotification('reversiInvited', matching);
const n = new Notification(_n.title, {
body: _n.body,
icon: _n.icon
2018-03-17 17:53:35 +09:00
});
});
2017-06-07 00:04:28 +09:00
}