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

128 lines
2.8 KiB
TypeScript
Raw Normal View History

2016-12-29 07:49:51 +09:00
/**
* Desktop Client
*/
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';
2017-03-18 20:05:11 +09:00
import fuckAdBlock from './scripts/fuck-ad-block';
2017-11-17 01:24:44 +09:00
import HomeStreamManager from '../common/scripts/streaming/home-stream-manager';
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-17 18:14:23 +09:00
2018-02-10 14:56:33 +09:00
import MkIndex from './views/pages/index.vue';
2018-02-19 14:29:42 +09:00
import MkUser from './views/pages/user/user.vue';
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) => {
2016-12-29 07:49:51 +09:00
/**
* Fuck AD Block
*/
fuckAdBlock();
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-17 18:14:23 +09:00
const app = launch({
2018-02-18 12:35:18 +09:00
chooseDriveFolder,
chooseDriveFile,
dialog,
input
2018-02-17 18:14:23 +09:00
});
2018-02-11 12:08:43 +09:00
2016-12-29 07:49:51 +09:00
/**
* Init Notification
*/
if ('Notification' in window) {
// 許可を得ていなかったらリクエスト
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') {
2018-02-11 12:08:43 +09:00
registerNotifications(app.$data.os.stream);
2016-12-29 07:49:51 +09:00
}
}
2018-02-10 10:27:05 +09:00
app.$router.addRoutes([{
2018-02-11 12:08:43 +09:00
path: '/', component: MkIndex
2018-02-19 14:29:42 +09:00
}, {
path: '/:user', component: MkUser
2018-02-10 10:27:05 +09:00
}]);
2017-11-21 10:01:00 +09:00
}, true);
2017-06-07 00:04:28 +09:00
2017-11-17 01:24:44 +09:00
function registerNotifications(stream: HomeStreamManager) {
2017-06-07 15:19:28 +09:00
if (stream == null) return;
2017-11-17 01:24:44 +09:00
if (stream.hasConnection) {
attach(stream.borrow());
}
stream.on('connected', connection => {
attach(connection);
2017-06-07 00:04:28 +09:00
});
2017-11-17 01:24:44 +09:00
function attach(connection) {
connection.on('drive_file_created', file => {
2017-11-21 05:09:45 +09:00
const _n = composeNotification('drive_file_created', file);
const n = new Notification(_n.title, {
body: _n.body,
icon: _n.icon
2017-11-17 01:24:44 +09:00
});
setTimeout(n.close.bind(n), 5000);
2017-06-07 00:04:28 +09:00
});
2017-11-17 01:24:44 +09:00
connection.on('mention', post => {
2017-11-21 05:09:45 +09:00
const _n = composeNotification('mention', post);
const n = new Notification(_n.title, {
body: _n.body,
icon: _n.icon
2017-11-17 01:24:44 +09:00
});
setTimeout(n.close.bind(n), 6000);
2017-06-07 00:04:28 +09:00
});
2017-11-17 01:24:44 +09:00
connection.on('reply', post => {
2017-11-21 05:09:45 +09:00
const _n = composeNotification('reply', post);
const n = new Notification(_n.title, {
body: _n.body,
icon: _n.icon
2017-11-17 01:24:44 +09:00
});
setTimeout(n.close.bind(n), 6000);
2017-06-07 00:04:28 +09:00
});
2017-11-17 01:24:44 +09:00
connection.on('quote', post => {
2017-11-21 05:09:45 +09:00
const _n = composeNotification('quote', post);
const n = new Notification(_n.title, {
body: _n.body,
icon: _n.icon
2017-11-17 01:24:44 +09:00
});
setTimeout(n.close.bind(n), 6000);
});
2017-11-17 01:24:44 +09:00
connection.on('unread_messaging_message', message => {
2017-11-21 05:09:45 +09:00
const _n = composeNotification('unread_messaging_message', 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();
2018-02-10 10:27:05 +09:00
/*(riot as any).mount(document.body.appendChild(document.createElement('mk-messaging-room-window')), {
2017-11-17 01:24:44 +09:00
user: message.user
2018-02-10 10:27:05 +09:00
});*/
2017-11-17 01:24:44 +09:00
};
setTimeout(n.close.bind(n), 7000);
});
}
2017-06-07 00:04:28 +09:00
}