@@ -4,8 +4,11 @@ class Kandan.Plugins.Attachments
4
4
@widget_icon_url : " /assets/media_icon.png"
5
5
@plugin_namespace : " Kandan.Plugins.Attachments"
6
6
7
+ @dropzoneInit : false
8
+
7
9
@options :
8
10
maxFileNameLength : 20
11
+ defaultDropzoneText : " Drop file here to upload"
9
12
10
13
@templates :
11
14
no_files : _ .template '''
@@ -21,7 +24,7 @@ class Kandan.Plugins.Attachments
21
24
</div>
22
25
<input id="channel_id_<%= channel_id %>" name="channel_id[<%= channel_id %>]" type="hidden"/>
23
26
<input id="file" name="file" type="file"/>
24
- <div class="dropzone">Drop files here to upload </div>
27
+ <div class="dropzone"><%= dropzoneText %> </div>
25
28
</form>
26
29
'''
27
30
@@ -54,45 +57,51 @@ class Kandan.Plugins.Attachments
54
57
55
58
# TODO this part is very bad for APIs! shoudnt be exposing a backbone collection in a plugin.
56
59
@ render: ($widget_el )->
60
+ console .log " Render attachments!"
57
61
$upload_form = @templates .dropzone ({
58
- channel_id : @ channel_id (),
59
- csrf_param : @ csrf_param (),
60
- csrf_token : @ csrf_token ()
62
+ channel_id : @ channel_id (),
63
+ csrf_param : @ csrf_param (),
64
+ csrf_token : @ csrf_token (),
65
+ dropzoneText : @options .defaultDropzoneText
61
66
})
62
67
63
68
$widget_el .next ().html ($upload_form)
64
- @ init_dropzone @ channel_id ()
65
69
$widget_el .next (" .action_block" ).html ($upload_form)
66
70
67
- attachments = new Kandan.Collections.Attachments ([], {channel_id : @ channel_id ()})
68
- attachments .fetch ({
69
- success : (collection )=>
70
-
71
- if collection .models .length > 0
72
- $file_list = $ (" <div class='file_list'></div>" )
73
- for model in collection .models
74
- $file_list .append (@ file_item_template ({
75
- fileName : @ truncateName (model .get (' file_file_name' )),
76
- url : model .get (' url' )
77
- iconUrl : @ fileIcon (model .get (' file_file_name' ))
78
- }))
79
- else
80
- $file_list = @templates .no_files ()
81
- $widget_el .html ($file_list)
82
- })
83
-
84
-
85
- @ init_dropzone: (channel_id )->
71
+ populate = (collection )=>
72
+ console .log " render" , collection .models
73
+ if collection .models .length > 0
74
+ $file_list = $ (" <div class='file_list'></div>" )
75
+ for model in collection .models
76
+ $file_list .append (@ file_item_template ({
77
+ fileName : @ truncateName (model .get (' file_file_name' )),
78
+ url : model .get (' url' )
79
+ iconUrl : @ fileIcon (model .get (' file_file_name' ))
80
+ }))
81
+ else
82
+ $file_list = @templates .no_files ()
83
+ $widget_el .html ($file_list)
84
+
85
+ Kandan .Data .Attachments .all (populate)
86
+ console .log " render completes"
87
+
88
+
89
+ @ initDropzone: ->
90
+ console .log " init dropzone"
86
91
$ (" .dropzone" ).filedrop ({
87
92
fallback_id : " file"
88
- url : " /channels/#{ channel_id} /attachments.json" ,
93
+ url : ->
94
+ " /channels/#{ Kandan .Data .Channels .activeChannelId () } /attachments.json"
95
+
89
96
paramname : " file"
90
97
maxfilesize : 100
91
98
queuefiles : 1
92
99
100
+
93
101
uploadStarted : ->
94
102
$ (" .dropzone" ).text (" Uploading..." )
95
103
104
+
96
105
error : (err , file )->
97
106
if err == " BrowserNotSupported"
98
107
$ (" .dropzone" ).text (" Browser not supported" )
@@ -103,20 +112,26 @@ class Kandan.Plugins.Attachments
103
112
104
113
105
114
uploadFinished : (i , file , response , time )->
106
- $ ( " .dropzone " ). text ( " Drop files here to upload " )
107
- Kandan . Widgets . render " Kandan.Plugins.Attachments "
115
+ console . log " Upload finished! "
116
+
108
117
109
118
progressUpdated : (i , file , progress )->
110
- # TODO update dropzone text
119
+ $ (" .dropzone" ).text (" #{ progress} % Uploaded" )
120
+ if progress == 100
121
+ console .log " 100% done"
122
+ $ (" .dropzone" ).text (" #{ progress} % Uploaded" )
123
+ Kandan .Widgets .render " Kandan.Plugins.Attachments"
111
124
112
125
dragOver : ->
113
126
console .log " reached dropzone!"
114
127
})
115
128
116
129
@ init: ()->
130
+ @ initDropzone ()
117
131
Kandan .Widgets .register @plugin_namespace
118
- Kandan .Data .Channels .register_callback " change" , ()=>
119
- Kandan .Widgets .render @plugin_namespace
120
132
133
+ Kandan .Data .Attachments .registerCallback " change" , ()=>
134
+ Kandan .Widgets .render @plugin_namespace
121
135
122
- # Kandan.Plugins.register "Kandan.Plugins.Attachments"
136
+ Kandan .Data .Channels .registerCallback " change" , ()=>
137
+ Kandan .Widgets .render @plugin_namespace
0 commit comments