2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Desktop Client
|
|
|
|
*/
|
|
|
|
|
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-02-02 21:22:12 +01:00
|
|
|
require('./tags');
|
2017-03-18 12:05:11 +01:00
|
|
|
require('./mixins');
|
|
|
|
import * as riot from 'riot';
|
2017-05-17 22:06:55 +02:00
|
|
|
import init from '../init';
|
2017-03-18 12:05:11 +01:00
|
|
|
import route from './router';
|
|
|
|
import fuckAdBlock from './scripts/fuck-ad-block';
|
2017-11-13 10:05:35 +01:00
|
|
|
import getPostSummary from '../../../common/get-post-summary';
|
2017-11-15 19:06:52 +01:00
|
|
|
import MiOS from '../common/mios';
|
2017-11-16 17:24:44 +01:00
|
|
|
import HomeStreamManager from '../common/scripts/streaming/home-stream-manager';
|
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
|
|
|
*/
|
2017-11-15 19:06:52 +01:00
|
|
|
init(async (mios: MiOS) => {
|
2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Fuck AD Block
|
|
|
|
*/
|
|
|
|
fuckAdBlock();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init Notification
|
|
|
|
*/
|
|
|
|
if ('Notification' in window) {
|
|
|
|
// 許可を得ていなかったらリクエスト
|
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') {
|
2017-11-15 19:06:52 +01:00
|
|
|
registerNotifications(mios.stream);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start routing
|
2017-11-15 19:06:52 +01:00
|
|
|
route(mios);
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
2017-06-06 17:04:28 +02:00
|
|
|
|
2017-11-16 17:24:44 +01:00
|
|
|
function registerNotifications(stream: HomeStreamManager) {
|
2017-06-07 08:19:28 +02:00
|
|
|
if (stream == null) return;
|
|
|
|
|
2017-11-16 17:24:44 +01:00
|
|
|
if (stream.hasConnection) {
|
|
|
|
attach(stream.borrow());
|
|
|
|
}
|
|
|
|
|
|
|
|
stream.on('connected', connection => {
|
|
|
|
attach(connection);
|
2017-06-06 17:04:28 +02:00
|
|
|
});
|
|
|
|
|
2017-11-16 17:24:44 +01:00
|
|
|
function attach(connection) {
|
|
|
|
connection.on('drive_file_created', file => {
|
|
|
|
const n = new Notification('ファイルがアップロードされました', {
|
|
|
|
body: file.name,
|
|
|
|
icon: file.url + '?thumbnail&size=64'
|
|
|
|
});
|
|
|
|
setTimeout(n.close.bind(n), 5000);
|
2017-06-06 17:04:28 +02:00
|
|
|
});
|
|
|
|
|
2017-11-16 17:24:44 +01:00
|
|
|
connection.on('mention', post => {
|
|
|
|
const n = new Notification(`${post.user.name}さんから:`, {
|
|
|
|
body: getPostSummary(post),
|
|
|
|
icon: post.user.avatar_url + '?thumbnail&size=64'
|
|
|
|
});
|
|
|
|
setTimeout(n.close.bind(n), 6000);
|
2017-06-06 17:04:28 +02:00
|
|
|
});
|
|
|
|
|
2017-11-16 17:24:44 +01:00
|
|
|
connection.on('reply', post => {
|
|
|
|
const n = new Notification(`${post.user.name}さんから返信:`, {
|
|
|
|
body: getPostSummary(post),
|
|
|
|
icon: post.user.avatar_url + '?thumbnail&size=64'
|
|
|
|
});
|
|
|
|
setTimeout(n.close.bind(n), 6000);
|
2017-06-06 17:04:28 +02:00
|
|
|
});
|
2017-06-13 21:16:58 +02:00
|
|
|
|
2017-11-16 17:24:44 +01:00
|
|
|
connection.on('quote', post => {
|
|
|
|
const n = new Notification(`${post.user.name}さんが引用:`, {
|
|
|
|
body: getPostSummary(post),
|
|
|
|
icon: post.user.avatar_url + '?thumbnail&size=64'
|
|
|
|
});
|
|
|
|
setTimeout(n.close.bind(n), 6000);
|
2017-06-13 21:16:58 +02:00
|
|
|
});
|
2017-11-16 17:24:44 +01:00
|
|
|
|
|
|
|
connection.on('unread_messaging_message', message => {
|
|
|
|
const n = new Notification(`${message.user.name}さんからメッセージ:`, {
|
|
|
|
body: message.text, // TODO: getMessagingMessageSummary(message),
|
|
|
|
icon: message.user.avatar_url + '?thumbnail&size=64'
|
2017-06-13 21:16:58 +02:00
|
|
|
});
|
2017-11-16 17:24:44 +01: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);
|
|
|
|
});
|
|
|
|
}
|
2017-06-06 17:04:28 +02:00
|
|
|
}
|