Skip to content

Commit b8c3e00

Browse files
committed
Adds events for attachments
Signed-off-by: Akash Manohar J <akash@akash.im>
1 parent 41b5042 commit b8c3e00

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
11
class Kandan.Data.Attachments
2-
# TODO use this for the file list plugin
2+
@callbacks: { "change": [] }
3+
@cache: []
4+
5+
6+
@all: (callback)->
7+
attachments = new Kandan.Collections.Attachments([], {
8+
channel_id: Kandan.Data.Channels.activeChannelId()
9+
})
10+
attachments.fetch({ success: callback })
11+
12+
@registerCallback: (event, callback)->
13+
@callbacks[event].push(callback)
14+
15+
@runCallbacks: (event, data)->
16+
@cache = data.extra.attachments
17+
callback(data) for callback in @callbacks[event]
18+
19+
20+
@unregisterCallback: (event, callback)->
21+
delete @callbacks[@callbacks.indexOf(callback)]
22+
@callbacks.filter (element, index, array)->
23+
element!=undefined

0 commit comments

Comments
 (0)