2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Desktop Client
|
|
|
|
*/
|
|
|
|
|
2018-11-09 08:00:29 +01:00
|
|
|
import Vue from 'vue';
|
2018-03-27 07:13:12 +02:00
|
|
|
import VueRouter from 'vue-router';
|
|
|
|
|
2017-02-19 04:31:23 +01:00
|
|
|
// Style
|
2017-02-19 07:36:53 +01:00
|
|
|
import './style.styl';
|
2017-02-19 04:31:23 +01:00
|
|
|
|
2017-05-17 22:06:55 +02:00
|
|
|
import init from '../init';
|
2018-02-20 18:53:34 +01:00
|
|
|
import fuckAdBlock from '../common/scripts/fuck-ad-block';
|
2017-11-20 21:09:45 +01:00
|
|
|
import composeNotification from '../common/scripts/compose-notification';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-02-10 06:56:33 +01:00
|
|
|
import MkIndex from './views/pages/index.vue';
|
2018-10-19 04:10:49 +02:00
|
|
|
import MkHome from './views/pages/home.vue';
|
2018-06-05 14:36:21 +02:00
|
|
|
import MkDeck from './views/pages/deck/deck.vue';
|
2018-02-19 06:29:42 +01:00
|
|
|
import MkUser from './views/pages/user/user.vue';
|
2018-11-08 07:16:39 +01:00
|
|
|
import MkUserFollowingOrFollowers from './views/pages/user-following-or-followers.vue';
|
2018-04-20 06:31:43 +02:00
|
|
|
import MkFavorites from './views/pages/favorites.vue';
|
2018-02-20 15:37:35 +01:00
|
|
|
import MkSelectDrive from './views/pages/selectdrive.vue';
|
|
|
|
import MkDrive from './views/pages/drive.vue';
|
2018-02-21 07:30:03 +01:00
|
|
|
import MkHomeCustomize from './views/pages/home-customize.vue';
|
2018-02-22 13:15:24 +01:00
|
|
|
import MkMessagingRoom from './views/pages/messaging-room.vue';
|
2018-04-07 19:30:37 +02:00
|
|
|
import MkNote from './views/pages/note.vue';
|
2018-02-22 13:39:36 +01:00
|
|
|
import MkSearch from './views/pages/search.vue';
|
2018-06-10 05:19:19 +02:00
|
|
|
import MkTag from './views/pages/tag.vue';
|
2018-08-03 15:34:58 +02:00
|
|
|
import MkReversi from './views/pages/games/reversi.vue';
|
2018-06-16 11:42:49 +02:00
|
|
|
import MkShare from './views/pages/share.vue';
|
2018-06-24 06:08:48 +02:00
|
|
|
import MkFollow from '../common/views/pages/follow.vue';
|
2018-12-11 12:19:13 +01:00
|
|
|
import MkNotFound from '../common/views/pages/404.vue';
|
2018-11-09 08:00:29 +01:00
|
|
|
|
|
|
|
import Ctx from './views/components/context-menu.vue';
|
|
|
|
import PostFormWindow from './views/components/post-form-window.vue';
|
|
|
|
import RenoteFormWindow from './views/components/renote-form-window.vue';
|
|
|
|
import MkChooseFileFromDriveWindow from './views/components/choose-file-from-drive-window.vue';
|
|
|
|
import MkChooseFolderFromDriveWindow from './views/components/choose-folder-from-drive-window.vue';
|
|
|
|
import Notification from './views/components/ui-notification.vue';
|
|
|
|
|
|
|
|
import { url } from '../config';
|
2018-10-07 04:06:17 +02:00
|
|
|
import MiOS from '../mios';
|
2018-02-10 02:27:05 +01:00
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
/**
|
2017-05-17 22:06:55 +02:00
|
|
|
* init
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2018-02-11 04:08:43 +01:00
|
|
|
init(async (launch) => {
|
2018-11-09 08:00:29 +01:00
|
|
|
Vue.mixin({
|
|
|
|
methods: {
|
|
|
|
$contextmenu(e, menu, opts?) {
|
|
|
|
const o = opts || {};
|
|
|
|
const vm = this.$root.new(Ctx, {
|
|
|
|
menu,
|
|
|
|
x: e.pageX - window.pageXOffset,
|
|
|
|
y: e.pageY - window.pageYOffset,
|
|
|
|
});
|
|
|
|
vm.$once('closed', () => {
|
|
|
|
if (o.closed) o.closed();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
$post(opts) {
|
|
|
|
const o = opts || {};
|
|
|
|
if (o.renote) {
|
|
|
|
const vm = this.$root.new(RenoteFormWindow, {
|
|
|
|
note: o.renote,
|
|
|
|
animation: o.animation == null ? true : o.animation
|
|
|
|
});
|
|
|
|
if (o.cb) vm.$once('closed', o.cb);
|
|
|
|
} else {
|
|
|
|
const vm = this.$root.new(PostFormWindow, {
|
|
|
|
reply: o.reply,
|
|
|
|
animation: o.animation == null ? true : o.animation
|
|
|
|
});
|
|
|
|
if (o.cb) vm.$once('closed', o.cb);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
$chooseDriveFile(opts) {
|
|
|
|
return new Promise((res, rej) => {
|
|
|
|
const o = opts || {};
|
|
|
|
|
|
|
|
if (document.body.clientWidth > 800) {
|
|
|
|
const w = this.$root.new(MkChooseFileFromDriveWindow, {
|
|
|
|
title: o.title,
|
|
|
|
multiple: o.multiple,
|
|
|
|
initFolder: o.currentFolder
|
|
|
|
});
|
|
|
|
w.$once('selected', file => {
|
|
|
|
res(file);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
window['cb'] = file => {
|
|
|
|
res(file);
|
|
|
|
};
|
|
|
|
|
|
|
|
window.open(url + `/selectdrive?multiple=${o.multiple}`,
|
|
|
|
'choose_drive_window',
|
|
|
|
'height=500, width=800');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
$chooseDriveFolder(opts) {
|
|
|
|
return new Promise((res, rej) => {
|
|
|
|
const o = opts || {};
|
|
|
|
const w = this.$root.new(MkChooseFolderFromDriveWindow, {
|
|
|
|
title: o.title,
|
|
|
|
initFolder: o.currentFolder
|
|
|
|
});
|
|
|
|
w.$once('selected', folder => {
|
|
|
|
res(folder);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
$notify(message) {
|
|
|
|
this.$root.new(Notification, {
|
|
|
|
message
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-02-16 18:24:10 +01:00
|
|
|
// Register directives
|
|
|
|
require('./views/directives');
|
|
|
|
|
2018-02-11 04:08:43 +01:00
|
|
|
// Register components
|
|
|
|
require('./views/components');
|
2018-02-24 16:18:09 +01:00
|
|
|
require('./views/widgets');
|
2018-02-11 04:08:43 +01:00
|
|
|
|
2018-03-27 07:13:12 +02:00
|
|
|
// Init router
|
|
|
|
const router = new VueRouter({
|
|
|
|
mode: 'history',
|
|
|
|
routes: [
|
|
|
|
{ path: '/', name: 'index', component: MkIndex },
|
2018-10-19 04:10:49 +02:00
|
|
|
{ path: '/home', name: 'home', component: MkHome },
|
2018-06-05 14:36:21 +02:00
|
|
|
{ path: '/deck', name: 'deck', component: MkDeck },
|
2018-03-27 07:13:12 +02:00
|
|
|
{ path: '/i/customize-home', component: MkHomeCustomize },
|
2018-04-20 06:31:43 +02:00
|
|
|
{ path: '/i/favorites', component: MkFavorites },
|
2018-03-27 09:51:12 +02:00
|
|
|
{ path: '/i/messaging/:user', component: MkMessagingRoom },
|
2018-03-27 07:13:12 +02:00
|
|
|
{ path: '/i/drive', component: MkDrive },
|
|
|
|
{ path: '/i/drive/folder/:folder', component: MkDrive },
|
|
|
|
{ path: '/selectdrive', component: MkSelectDrive },
|
|
|
|
{ path: '/search', component: MkSearch },
|
2018-10-20 01:03:45 +02:00
|
|
|
{ path: '/tags/:tag', name: 'tag', component: MkTag },
|
2018-06-16 11:42:49 +02:00
|
|
|
{ path: '/share', component: MkShare },
|
2018-08-03 15:42:53 +02:00
|
|
|
{ path: '/reversi/:game?', component: MkReversi },
|
2018-10-18 23:18:33 +02:00
|
|
|
{ path: '/@:user', name: 'user', component: MkUser },
|
2018-11-08 07:16:39 +01:00
|
|
|
{ path: '/@:user/following', name: 'userFollowing', component: MkUserFollowingOrFollowers },
|
|
|
|
{ path: '/@:user/followers', name: 'userFollowers', component: MkUserFollowingOrFollowers },
|
2018-10-18 23:18:33 +02:00
|
|
|
{ path: '/notes/:note', name: 'note', component: MkNote },
|
2018-12-11 12:19:13 +01:00
|
|
|
{ path: '/authorize-follow', component: MkFollow },
|
|
|
|
{ path: '*', component: MkNotFound }
|
2018-03-27 07:13:12 +02:00
|
|
|
]
|
|
|
|
});
|
|
|
|
|
2018-02-21 18:00:30 +01:00
|
|
|
// Launch the app
|
2018-11-09 08:00:29 +01:00
|
|
|
const [app, os] = launch(router);
|
2018-02-20 18:53:34 +01:00
|
|
|
|
2018-09-24 01:00:10 +02:00
|
|
|
if (os.store.getters.isSignedIn) {
|
|
|
|
/**
|
|
|
|
* Fuck AD Block
|
|
|
|
*/
|
2018-11-09 08:00:29 +01:00
|
|
|
fuckAdBlock(app);
|
2018-09-24 01:00:10 +02:00
|
|
|
}
|
2018-02-11 04:08:43 +01:00
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Init Notification
|
|
|
|
*/
|
2018-08-25 01:39:12 +02:00
|
|
|
if ('Notification' in window && os.store.getters.isSignedIn) {
|
2016-12-28 23:49:51 +01:00
|
|
|
// 許可を得ていなかったらリクエスト
|
2017-11-13 10:05:35 +01:00
|
|
|
if ((Notification as any).permission == 'default') {
|
2017-06-06 17:04:28 +02:00
|
|
|
await Notification.requestPermission();
|
|
|
|
}
|
|
|
|
|
2017-11-13 10:05:35 +01:00
|
|
|
if ((Notification as any).permission == 'granted') {
|
2018-10-07 04:06:17 +02:00
|
|
|
registerNotifications(os);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
}
|
2017-11-21 02:01:00 +01:00
|
|
|
}, true);
|
2017-06-06 17:04:28 +02:00
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
function registerNotifications(os: MiOS) {
|
|
|
|
const stream = os.stream;
|
|
|
|
|
2017-06-07 08:19:28 +02:00
|
|
|
if (stream == null) return;
|
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
const connection = stream.useSharedConnection('main');
|
2017-11-16 17:24:44 +01:00
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
connection.on('notification', notification => {
|
|
|
|
const _n = composeNotification('notification', notification);
|
|
|
|
const n = new Notification(_n.title, {
|
|
|
|
body: _n.body,
|
|
|
|
icon: _n.icon
|
2017-06-06 17:04:28 +02:00
|
|
|
});
|
2018-10-07 04:06:17 +02:00
|
|
|
setTimeout(n.close.bind(n), 6000);
|
|
|
|
});
|
2017-06-13 21:16:58 +02:00
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
connection.on('driveFileCreated', file => {
|
|
|
|
const _n = composeNotification('driveFileCreated', file);
|
|
|
|
const n = new Notification(_n.title, {
|
|
|
|
body: _n.body,
|
|
|
|
icon: _n.icon
|
2017-06-13 21:16:58 +02:00
|
|
|
});
|
2018-10-07 04:06:17 +02:00
|
|
|
setTimeout(n.close.bind(n), 5000);
|
|
|
|
});
|
2017-11-16 17:24:44 +01:00
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
connection.on('unreadMessagingMessage', message => {
|
|
|
|
const _n = composeNotification('unreadMessagingMessage', message);
|
|
|
|
const n = new Notification(_n.title, {
|
|
|
|
body: _n.body,
|
|
|
|
icon: _n.icon
|
2017-11-16 17:24:44 +01:00
|
|
|
});
|
2018-10-07 04:06:17 +02: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 09:53:35 +01:00
|
|
|
|
2018-10-07 04:06:17 +02: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 09:53:35 +01:00
|
|
|
});
|
2018-10-07 04:06:17 +02:00
|
|
|
});
|
2017-06-06 17:04:28 +02:00
|
|
|
}
|