Retrospring/app/javascript/legacy/answerbox/comment/smile.coffee

44 lines
1.4 KiB
CoffeeScript
Raw Normal View History

$(document).on "click", "button[name=ab-smile-comment]", ->
btn = $(this)
cid = btn[0].dataset.cId
action = btn[0].dataset.action
count = Number $("span#ab-comment-smile-count-#{cid}").html()
btn[0].dataset.loadingText = "<i class=\"fa fa-fw fa-meh-o fa-spin\"></i> <span id=\"ab-smile-count-#{cid}\">#{count}</span>"
btn.button "loading"
target_url = switch action
when 'smile'
count++
'/ajax/create_comment_smile'
when 'unsmile'
count--
'/ajax/destroy_comment_smile'
success = false
$.ajax
url: target_url
type: 'POST'
data:
id: cid
success: (data, status, jqxhr) ->
success = data.success
if success
$("span#ab-comment-smile-count-#{cid}").html(count)
showNotification data.message, data.success
error: (jqxhr, status, error) ->
console.log jqxhr, status, error
2015-06-08 11:35:16 -07:00
showNotification translate('frontend.error.message'), false
complete: (jqxhr, status) ->
btn.button "reset"
window.setTimeout ->
if success
switch action
when 'smile'
btn[0].dataset.action = 'unsmile'
btn.html "<i class=\"fa fa-fw fa-frown-o\"></i> <span id=\"ab-comment-smile-count-#{cid}\">#{count}</span>"
when 'unsmile'
btn[0].dataset.action = 'smile'
btn.html "<i class=\"fa fa-fw fa-smile-o\"></i> <span id=\"ab-comment-smile-count-#{cid}\">#{count}</span>"
, 20