Skip to content

Commit bd32246

Browse files
committedMar 16, 2012
Adds a per-channel file list
Signed-off-by: Akash Manohar J <akash@akash.im>
1 parent 91af3b6 commit bd32246

File tree

4 files changed

+27
-7
lines changed

4 files changed

+27
-7
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
class Kandan.Collections.Attachments extends Backbone.Collection
22
url: ()->
3-
"/channels/#{@options.channel_id}/attachments"
3+
"/channels/#{@channel_id}/attachments"
4+
5+
initialize: (models, options)->
6+
@channel_id = options.channel_id
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
class Kandan.Data.Attachments
2+
# TODO use this for the file list plugin

‎app/assets/javascripts/backbone/kandan.js.coffee

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ window.Kandan =
4848
$(".container").html(chat_area.render().el)
4949
chatbox = new Kandan.Views.Chatbox()
5050
$(".container").append(chatbox.render().el)
51-
$('#channels').tabs({select: ()->
51+
$('#channels').tabs({select: (event, ui)->
52+
console.log "channel changed to index", ui.index
5253
Kandan.Data.Channels.run_callbacks('change')
5354
})
5455

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

+20-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
class Kandan.Plugins.Attachments
22

33
@widget_title: "Attachments"
4+
@widget_name: "attachments"
45
@plugin_namespace: "Kandan.Plugins.Attachments"
56

67
@template: _.template('''
@@ -18,26 +19,40 @@ class Kandan.Plugins.Attachments
1819
@csrf_param: ->
1920
$('meta[name=csrf-param]').attr('content')
2021

21-
2222
@csrf_token: ->
2323
$('meta[name=csrf-token]').attr('content')
2424

25+
@file_item_template: _.template('''
26+
<li><a href="<%= url %>"><%= file_name %></a></li>
27+
''')
2528

29+
# TODO this part is very bad for APIs! shoudnt be exposing a backbone collection in a plugin.
2630
@render: ($widget_el)->
31+
console.log "current channel", @channel_id()
2732
$upload_form = @template({
2833
channel_id: @channel_id(),
2934
csrf_param: @csrf_param(),
3035
csrf_token: @csrf_token()
3136
})
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+
})
3449

3550

3651
@init: ()->
37-
Kandan.Widgets.register "attachments", @plugin_namespace
52+
Kandan.Widgets.register @widget_name, @plugin_namespace
3853
Kandan.Data.Channels.register_callback "change", ()=>
3954
console.log "channel changed"
40-
#Kandan.Widgets.render(@widget_name)
55+
Kandan.Widgets.render(@widget_name)
4156

4257

4358
Kandan.Plugins.register "Kandan.Plugins.Attachments"

0 commit comments

Comments
 (0)
Please sign in to comment.