Skip to content

Commit 41b5042

Browse files
committedApr 10, 2012
File dropzone should only be inited once. Uses the monkey patch to filedrop jquery plugin
Signed-off-by: Akash Manohar J <akash@akash.im>
1 parent d8d0d5e commit 41b5042

File tree

1 file changed

+46
-31
lines changed

1 file changed

+46
-31
lines changed
 

‎app/assets/javascripts/backbone/plugins/attachments.js.coffee

+46-31
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ class Kandan.Plugins.Attachments
44
@widget_icon_url: "/assets/media_icon.png"
55
@plugin_namespace: "Kandan.Plugins.Attachments"
66

7+
@dropzoneInit: false
8+
79
@options:
810
maxFileNameLength: 20
11+
defaultDropzoneText: "Drop file here to upload"
912

1013
@templates:
1114
no_files: _.template '''
@@ -21,7 +24,7 @@ class Kandan.Plugins.Attachments
2124
</div>
2225
<input id="channel_id_<%= channel_id %>" name="channel_id[<%= channel_id %>]" type="hidden"/>
2326
<input id="file" name="file" type="file"/>
24-
<div class="dropzone">Drop files here to upload</div>
27+
<div class="dropzone"><%= dropzoneText %></div>
2528
</form>
2629
'''
2730

@@ -54,45 +57,51 @@ class Kandan.Plugins.Attachments
5457

5558
# TODO this part is very bad for APIs! shoudnt be exposing a backbone collection in a plugin.
5659
@render: ($widget_el)->
60+
console.log "Render attachments!"
5761
$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
6166
})
6267

6368
$widget_el.next().html($upload_form)
64-
@init_dropzone @channel_id()
6569
$widget_el.next(".action_block").html($upload_form)
6670

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"
8691
$(".dropzone").filedrop({
8792
fallback_id: "file"
88-
url : "/channels/#{channel_id}/attachments.json",
93+
url : ->
94+
"/channels/#{ Kandan.Data.Channels.activeChannelId() }/attachments.json"
95+
8996
paramname : "file"
9097
maxfilesize: 100
9198
queuefiles : 1
9299

100+
93101
uploadStarted: ->
94102
$(".dropzone").text("Uploading...")
95103

104+
96105
error: (err, file)->
97106
if err == "BrowserNotSupported"
98107
$(".dropzone").text("Browser not supported")
@@ -103,20 +112,26 @@ class Kandan.Plugins.Attachments
103112

104113

105114
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+
108117

109118
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"
111124

112125
dragOver: ->
113126
console.log "reached dropzone!"
114127
})
115128

116129
@init: ()->
130+
@initDropzone()
117131
Kandan.Widgets.register @plugin_namespace
118-
Kandan.Data.Channels.register_callback "change", ()=>
119-
Kandan.Widgets.render @plugin_namespace
120132

133+
Kandan.Data.Attachments.registerCallback "change", ()=>
134+
Kandan.Widgets.render @plugin_namespace
121135

122-
# Kandan.Plugins.register "Kandan.Plugins.Attachments"
136+
Kandan.Data.Channels.registerCallback "change", ()=>
137+
Kandan.Widgets.render @plugin_namespace

0 commit comments

Comments
 (0)
Please sign in to comment.