@@ -2,7 +2,7 @@ class Kandan.Plugins.Attachments
2
2
3
3
@widget_title : " Media"
4
4
@widget_icon_url : " /assets/media_icon.png"
5
- @plugin_namespace : " Kandan.Plugins.Attachments"
5
+ @pluginNamespace : " Kandan.Plugins.Attachments"
6
6
7
7
@dropzoneInit : false
8
8
@@ -11,80 +11,80 @@ class Kandan.Plugins.Attachments
11
11
defaultDropzoneText : " Drop file here to upload"
12
12
13
13
@templates :
14
- no_files : _ .template '''
14
+ noFiles : _ .template '''
15
15
<div style="text-align:center; text-transform: uppercase; font-size: 11px; color: #999; padding: 10px;">
16
16
No media yet. Try uploading.
17
17
</div>
18
18
'''
19
19
20
20
dropzone : _ .template '''
21
- <form accept-charset="UTF-8" action="/channels/<%= channel_id %>/attachments.json" data-remote="true" html="{:multipart=>true}" id="file_upload" method="post">
21
+ <form accept-charset="UTF-8" action="/channels/<%= channelId %>/attachments.json" data-remote="true" html="{:multipart=>true}" id="file_upload" method="post">
22
22
<div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓">
23
- <input name="<%=csrf_param %>" type="hidden" value="<%= csrf_token %>"/>
23
+ <input name="<%=csrfParam %>" type="hidden" value="<%= csrfToken %>"/>
24
24
</div>
25
- <input id="channel_id_<%= channel_id %>" name="channel_id[<%= channel_id %>]" type="hidden"/>
25
+ <input id="channel_id_<%= channelId %>" name="channel_id[<%= channelId %>]" type="hidden"/>
26
26
<input id="file" name="file" type="file"/>
27
27
<div class="dropzone"><%= dropzoneText %></div>
28
28
</form>
29
29
'''
30
30
31
- @ supports_drop_upload: ()->
32
- !! (window .File && window .FileList && window .FileReader )
33
-
34
- @ channel_id: ()->
35
- Kandan .Data .Channels .activeChannelId ()
31
+ fileItemTemplate : _ .template '''
32
+ <div class="file_item">
33
+ <a href="<%= url %>">
34
+ <img src="<%= iconUrl %>"/>
35
+ <span><%= fileName %></span>
36
+ </a>
37
+ </div>
38
+ '''
36
39
37
- @ csrf_param : ->
40
+ @ csrfParam : ->
38
41
$ (' meta[name=csrf-param]' ).attr (' content' )
39
42
40
- @ csrf_token: ->
43
+
44
+ @ csrfToken: ->
41
45
$ (' meta[name=csrf-token]' ).attr (' content' )
42
46
47
+
43
48
@ truncateName: (fileName )->
44
49
return " #{ fileName .substring (0 , @options .maxFileNameLength )} ..." if fileName .length > @options .maxFileNameLength
45
50
fileName
46
51
52
+
47
53
@ fileIcon: (fileName )->
48
54
fileExtension = fileName .split (" ." ).pop ()
49
55
return " /assets/img_icon.png" if fileExtension .match (/ (png| jpeg| jpg| gif)/ i )
50
56
return " /assets/audio_icon.png" if fileExtension .match (/ (mp3| wav| m4a)/ i )
51
57
return " /assets/video_icon.png" if fileExtension .match (/ (mov| mpg| mpeg| mp4)/ i )
52
58
return " /assets/file_icon.png"
53
59
54
- @file_item_template : _ .template '''
55
- <div class="file_item">
56
- <a href="<%= url %>">
57
- <img src="<%= iconUrl %>"/>
58
- <span><%= fileName %></span>
59
- </a>
60
- </div>
61
- '''
60
+
62
61
63
62
# TODO this part is very bad for APIs! shoudnt be exposing a backbone collection in a plugin.
64
- @ render: ($widget_el )->
65
- $upload_form = @templates .dropzone ({
66
- channel_id : @ channel_id (),
67
- csrf_param : @ csrf_param (),
68
- csrf_token : @ csrf_token (),
63
+ @ render: ($widgetEl )->
64
+ $uploadForm = @templates .dropzone ({
65
+ channelId : Kandan . Data . Channels . activeChannelId (),
66
+ csrfParam : @ csrfParam (),
67
+ csrfToken : @ csrfToken (),
69
68
dropzoneText : @options .defaultDropzoneText
70
69
})
71
70
72
- $widget_el .next ().html ($upload_form )
73
- $widget_el .next (" .action_block" ).html ($upload_form )
71
+ $widgetEl .next ().html ($uploadForm )
72
+ $widgetEl .next (" .action_block" ).html ($uploadForm )
74
73
75
74
populate = (collection )=>
76
75
if collection .models .length > 0
77
- $file_list = $ (" <div class='file_list'></div>" )
76
+ $fileList = $ (" <div class='file_list'></div>" )
78
77
for model in collection .models
79
- $file_list .append (@ file_item_template ({
80
- fileName : @ truncateName (model .get (' file_file_name' )),
81
- url : model .get (' url' )
82
- iconUrl : @ fileIcon (model .get (' file_file_name' ))
83
- }))
78
+ $fileList .append (
79
+ @templates .fileItemTemplate ({
80
+ fileName : @ truncateName (model .get (' file_file_name' )),
81
+ url : model .get (' url' )
82
+ iconUrl : @ fileIcon (model .get (' file_file_name' ))
83
+ })
84
+ )
84
85
else
85
- $file_list = @templates .no_files ()
86
- $widget_el .html ($file_list)
87
-
86
+ $fileList = @templates .noFiles ()
87
+ $widgetEl .html ($fileList)
88
88
Kandan .Data .Attachments .all (populate)
89
89
90
90
@@ -116,20 +116,20 @@ class Kandan.Plugins.Attachments
116
116
progressUpdated : (i , file , progress )->
117
117
$ (" .dropzone" ).text (" #{ progress} % Uploaded" )
118
118
if progress == 100
119
- console .log " 100% done"
120
119
$ (" .dropzone" ).text (" #{ progress} % Uploaded" )
121
120
Kandan .Widgets .render " Kandan.Plugins.Attachments"
122
121
123
122
dragOver : ->
124
123
console .log " reached dropzone!"
125
124
})
126
125
126
+
127
127
@ init: ()->
128
128
@ initDropzone ()
129
- Kandan .Widgets .register @plugin_namespace
129
+ Kandan .Widgets .register @pluginNamespace
130
130
131
131
Kandan .Data .Attachments .registerCallback " change" , ()=>
132
- Kandan .Widgets .render @plugin_namespace
132
+ Kandan .Widgets .render @pluginNamespace
133
133
134
134
Kandan .Data .Channels .registerCallback " change" , ()=>
135
- Kandan .Widgets .render @plugin_namespace
135
+ Kandan .Widgets .render @pluginNamespace
0 commit comments