39 lines
1.2 KiB
Text
39 lines
1.2 KiB
Text
|
# Stream
|
||
|
#================================
|
||
|
|
||
|
stream = require '../../common/scripts/stream.ls'
|
||
|
get-post-summary = require '../../common/scripts/get-post-summary.ls'
|
||
|
riot = require \riot
|
||
|
|
||
|
module.exports = (me) ~>
|
||
|
s = stream me
|
||
|
|
||
|
s.event.on \drive_file_created (file) ~>
|
||
|
n = new Notification 'ファイルがアップロードされました' do
|
||
|
body: file.name
|
||
|
icon: file.url + '?thumbnail&size=64'
|
||
|
set-timeout (n.close.bind n), 5000ms
|
||
|
|
||
|
s.event.on \mention (post) ~>
|
||
|
n = new Notification "#{post.user.name}さんから:" do
|
||
|
body: get-post-summary post
|
||
|
icon: post.user.avatar_url + '?thumbnail&size=64'
|
||
|
set-timeout (n.close.bind n), 6000ms
|
||
|
|
||
|
s.event.on \reply (post) ~>
|
||
|
n = new Notification "#{post.user.name}さんから返信:" do
|
||
|
body: get-post-summary post
|
||
|
icon: post.user.avatar_url + '?thumbnail&size=64'
|
||
|
set-timeout (n.close.bind n), 6000ms
|
||
|
|
||
|
s.event.on \quote (post) ~>
|
||
|
n = new Notification "#{post.user.name}さんが引用:" do
|
||
|
body: get-post-summary post
|
||
|
icon: post.user.avatar_url + '?thumbnail&size=64'
|
||
|
set-timeout (n.close.bind n), 6000ms
|
||
|
|
||
|
riot.mixin \stream do
|
||
|
stream: s.event
|
||
|
get-stream-state: s.get-state
|
||
|
stream-state-ev: s.state-ev
|