Retrospring/app/assets/javascripts/user.coffee

75 lines
2.2 KiB
CoffeeScript
Raw Normal View History

2014-12-08 06:42:34 -08:00
$(document).on "click", "button[name=user-action]", ->
btn = $(this)
btn.button "loading"
type = btn[0].dataset.type
2014-12-08 06:42:34 -08:00
target = btn[0].dataset.target
action = btn[0].dataset.action
if type in ['follower', 'friend']
count = Number $("h4.entry-text##{type}-count").html()
2014-12-08 06:42:34 -08:00
target_url = switch action
when 'follow'
count++
'/ajax/create_friend'
when 'unfollow'
count--
'/ajax/destroy_friend'
success = false
$.ajax
url: target_url
type: 'POST'
data:
screen_name: target
success: (data, status, jqxhr) ->
success = data.success
if data.success
if type in ['follower', 'friend']
$("h4.entry-text##{type}-count").html(count)
2014-12-08 06:42:34 -08:00
showNotification data.message, data.success
error: (jqxhr, status, error) ->
console.log jqxhr, status, error
showNotification "An error occurred, a developer should check the console for details", false
complete: (jqxhr, status) ->
btn.button "reset"
if success
switch action
when 'follow'
btn[0].dataset.action = 'unfollow'
2014-12-28 11:22:37 -08:00
btn.attr 'class', 'btn btn-default btn-block profile--follow-btn'
2014-12-08 06:42:34 -08:00
btn.html 'Unfollow'
when 'unfollow'
btn[0].dataset.action = 'follow'
2014-12-28 11:22:37 -08:00
btn.attr 'class', 'btn btn-primary btn-block profile--follow-btn'
2014-12-08 06:42:34 -08:00
btn.html 'Follow'
2014-12-28 16:47:04 -08:00
# report user
$(document).on "click", "a[data-action=report-user]", (ev) ->
ev.preventDefault()
btn = $(this)
target = btn[0].dataset.target
2015-01-03 10:45:14 -08:00
swal
title: "Really report #{target}?"
text: "A moderator will review this user and decide what happens."
type: "warning"
showCancelButton: true
confirmButtonColor: "#DD6B55"
confirmButtonText: "Report"
2015-01-03 10:49:47 -08:00
closeOnConfirm: true
2015-01-03 10:45:14 -08:00
, ->
2014-12-28 16:47:04 -08:00
$.ajax
url: '/ajax/report'
type: 'POST'
data:
id: target
type: 'user'
success: (data, status, jqxhr) ->
showNotification data.message, data.success
error: (jqxhr, status, error) ->
console.log jqxhr, status, error
showNotification "An error occurred, a developer should check the console for details", false
complete: (jqxhr, status) ->
btn.button "reset"