1
1
class Kandan.Plugins.Attachments
2
2
3
3
@widget_title : " Attachments"
4
+ @widget_name : " attachments"
4
5
@plugin_namespace : " Kandan.Plugins.Attachments"
5
6
6
7
@template : _ .template ('''
@@ -18,26 +19,40 @@ class Kandan.Plugins.Attachments
18
19
@ csrf_param: ->
19
20
$ (' meta[name=csrf-param]' ).attr (' content' )
20
21
21
-
22
22
@ csrf_token: ->
23
23
$ (' meta[name=csrf-token]' ).attr (' content' )
24
24
25
+ @file_item_template : _ .template ('''
26
+ <li><a href="<%= url %>"><%= file_name %></a></li>
27
+ ''' )
25
28
29
+ # TODO this part is very bad for APIs! shoudnt be exposing a backbone collection in a plugin.
26
30
@ render: ($widget_el )->
31
+ console .log " current channel" , @ channel_id ()
27
32
$upload_form = @ template ({
28
33
channel_id : @ channel_id (),
29
34
csrf_param : @ csrf_param (),
30
35
csrf_token : @ csrf_token ()
31
36
})
32
- $widget_el .append ($upload_form)
33
- # $widget_el.append($file_list)
37
+ $widget_el .html ($upload_form)
38
+
39
+ $file_list = $ (" <ul></ul>" )
40
+ attachments = new Kandan.Collections.Attachments ([], {channel_id : @ channel_id ()})
41
+ attachments .fetch ({success : (collection )=>
42
+ for model in collection .models
43
+ $file_list .append (@ file_item_template ({
44
+ file_name : model .get (' file_file_name' ),
45
+ url : model .get (' url' )
46
+ }))
47
+ $widget_el .append ($file_list)
48
+ })
34
49
35
50
36
51
@ init: ()->
37
- Kandan .Widgets .register " attachments " , @plugin_namespace
52
+ Kandan .Widgets .register @widget_name , @plugin_namespace
38
53
Kandan .Data .Channels .register_callback " change" , ()=>
39
54
console .log " channel changed"
40
- # Kandan.Widgets.render(@widget_name)
55
+ Kandan .Widgets .render (@widget_name )
41
56
42
57
43
58
Kandan .Plugins .register " Kandan.Plugins.Attachments"
0 commit comments