76 lines
1.7 KiB
JavaScript
76 lines
1.7 KiB
JavaScript
/**
|
|
* Desktop Client
|
|
*/
|
|
|
|
// Style
|
|
import './style.styl';
|
|
|
|
require('./tags');
|
|
require('./mixins');
|
|
import * as riot from 'riot';
|
|
import init from '../init';
|
|
import route from './router';
|
|
import fuckAdBlock from './scripts/fuck-ad-block';
|
|
import getPostSummary from '../common/scripts/get-post-summary';
|
|
|
|
/**
|
|
* init
|
|
*/
|
|
init(async (me, stream) => {
|
|
/**
|
|
* Fuck AD Block
|
|
*/
|
|
fuckAdBlock();
|
|
|
|
/**
|
|
* Init Notification
|
|
*/
|
|
if ('Notification' in window) {
|
|
// 許可を得ていなかったらリクエスト
|
|
if (Notification.permission == 'default') {
|
|
await Notification.requestPermission();
|
|
}
|
|
|
|
if (Notification.permission == 'granted') {
|
|
registerNotifications(stream);
|
|
}
|
|
}
|
|
|
|
// Start routing
|
|
route(me);
|
|
});
|
|
|
|
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);
|
|
});
|
|
}
|