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