Sharkey/src/web/app/desktop/script.js

76 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Desktop Client
*/
2017-02-19 05:31:23 +02:00
// Style
2017-02-19 08:36:53 +02:00
import './style.styl';
2017-02-19 05:31:23 +02:00
require('./tags');
2017-03-18 13:05:11 +02:00
require('./mixins');
import * as riot from 'riot';
2017-05-17 23:06:55 +03:00
import init from '../init';
2017-03-18 13:05:11 +02:00
import route from './router';
import fuckAdBlock from './scripts/fuck-ad-block';
2017-06-06 18:04:28 +03:00
import getPostSummary from '../common/scripts/get-post-summary';
2016-12-29 00:49:51 +02:00
/**
2017-05-17 23:06:55 +03:00
* init
2016-12-29 00:49:51 +02:00
*/
2017-06-06 18:04:28 +03:00
init(async (me, stream) => {
2016-12-29 00:49:51 +02:00
/**
* Fuck AD Block
*/
fuckAdBlock();
/**
* Init Notification
*/
if ('Notification' in window) {
// 許可を得ていなかったらリクエスト
if (Notification.permission == 'default') {
2017-06-06 18:04:28 +03:00
await Notification.requestPermission();
}
if (Notification.permission == 'granted') {
registerNotifications(stream);
2016-12-29 00:49:51 +02:00
}
}
// Start routing
route(me);
});
2017-06-06 18:04:28 +03:00
function registerNotifications(stream) {
stream.on('drive_file_created', file => {
const n = new Notification('ファイルがアップロードされました', {
body: file.name,
icon: file.url + '?thumbnail&size=64'
});
setTimeout(n.close.bind(n), 5000);
});
stream.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);
});
stream.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);
});
stream.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);
});
}