iceshrimp-legacy/src/web/app/desktop/script.js

78 lines
1.7 KiB
JavaScript
Raw Normal View History

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
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-06-06 17:04:28 +02:00
import getPostSummary from '../common/scripts/get-post-summary';
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-06-06 17:04:28 +02:00
init(async (me, stream) => {
2016-12-28 23:49:51 +01:00
/**
* Fuck AD Block
*/
fuckAdBlock();
/**
* Init Notification
*/
if ('Notification' in window) {
// 許可を得ていなかったらリクエスト
if (Notification.permission == 'default') {
2017-06-06 17:04:28 +02:00
await Notification.requestPermission();
}
if (Notification.permission == 'granted') {
registerNotifications(stream);
2016-12-28 23:49:51 +01:00
}
}
// Start routing
route(me);
});
2017-06-06 17:04:28 +02:00
function registerNotifications(stream) {
2017-06-07 08:19:28 +02:00
if (stream == null) return;
2017-06-06 17:04:28 +02:00
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);
});
}