gitlabhq/app/assets/javascripts/wall.js.coffee

82 lines
2.3 KiB
CoffeeScript
Raw Normal View History

2013-03-19 11:35:55 +01:00
@Wall =
note_ids: []
notes_path: null
notes_params: null
project_id: null
init: (project_id) ->
Wall.project_id = project_id
Wall.notes_path = "/api/" + gon.api_version + "/projects/" + project_id + "/notes.json"
Wall.getContent()
Wall.initRefresh()
2013-03-19 12:28:29 +01:00
Wall.initForm()
2013-03-19 11:35:55 +01:00
#
# Gets an initial set of notes.
#
getContent: ->
$.ajax
url: Wall.notes_path,
data:
private_token: gon.api_token
gfm: true
recent: true
dataType: "json"
success: (notes) ->
notes.sort (a, b) ->
return a.id - b.id
$.each notes, (i, note)->
if $.inArray(note.id, Wall.note_ids) == -1
Wall.note_ids.push(note.id)
Wall.renderNote(note)
2013-03-19 12:28:29 +01:00
Wall.scrollDown()
2013-03-19 13:39:32 +01:00
$("abbr.timeago").timeago()
2013-03-19 11:35:55 +01:00
initRefresh: ->
setInterval("Wall.refresh()", 10000)
refresh: ->
Wall.getContent()
2013-03-19 12:28:29 +01:00
scrollDown: ->
notes = $('ul.notes')
$('body, html').scrollTop(notes.height())
2013-03-19 12:28:29 +01:00
initForm: ->
2013-03-19 13:39:32 +01:00
form = $('.wall-note-form')
2013-03-19 12:28:29 +01:00
form.find("#target_type").val('wall')
form.on 'ajax:success', ->
Wall.refresh()
form.find(".js-note-text").val("").trigger("input")
form.on 'ajax:complete', ->
form.find(".js-comment-button").removeAttr('disabled')
form.find(".js-comment-button").removeClass('disabled')
form.on "click", ".js-choose-note-attachment-button", ->
form.find(".js-note-attachment-input").click()
form.on "change", ".js-note-attachment-input", ->
filename = $(this).val().replace(/^.*[\\\/]/, '')
form.find(".js-attachment-filename").text(filename)
2013-03-20 08:53:39 +01:00
form.find('.note_text').keydown (e) ->
if e.ctrlKey && e.keyCode == 13
form.find('.js-comment-button').submit()
2013-03-19 12:28:29 +01:00
form.show()
2013-03-19 13:39:32 +01:00
renderNote: (note) ->
author = '<strong class="wall-author">' + note.author.name + '</strong>'
body = '<span class="wall-text">' + linkify(sanitize(note.body)) + '</span>'
2013-03-19 13:39:32 +01:00
file = ''
time = '<abbr class="timeago" title="' + note.created_at + '">' + note.created_at + '</time>'
if note.attachment
file = '<span class="wall-file"><a href="/files/note/' + note.id + '/' + note.attachment + '">' + note.attachment + '</a></span>'
html = '<li>' + author + body + file + time + '</li>'
$('ul.notes').append(html)