Retrospring/app/assets/javascripts/moderation/ban.coffee

67 lines
1.6 KiB
CoffeeScript
Raw Normal View History

2015-05-11 00:01:48 -07:00
load = ->
parent = $ "#ban-control-super"
2015-05-11 00:01:48 -07:00
return unless parent.length > 0
parent.find('#_ban').on "change", (event) ->
$t = $ this
if $t.is(":checked")
$("#ban-controls").show()
else
$("#ban-controls").hide()
parent.find('#_permaban').on "change", (event) ->
$t = $ this
if $t.is(":checked")
$("#ban-controls-time").hide()
else
$("#ban-controls-time").show()
2015-04-23 12:21:58 -07:00
parent.find("#until").datetimepicker
defaultDate: parent.find("#until").val()
sideBySide: true
2015-04-23 12:07:39 -07:00
icons:
time: "fa fa-clock-o"
date: "fa fa-calendar"
up: "fa fa-chevron-up"
down: "fa fa-chevron-down"
previous: "fa fa-chevron-left"
next: "fa fa-chevron-right"
today: "fa fa-home"
clear: "fa fa-trash-o"
close: "fa fa-times"
parent.parent()[0].addEventListener "submit", (event) ->
event.preventDefault();
$("#modal-ban").modal "hide"
checktostr = (selector) ->
if $(selector)[0].checked
"1"
else
"0"
data = {
ban: checktostr "#_ban"
permaban: checktostr "#_permaban"
2015-04-23 12:21:58 -07:00
until: $("#until")[0].value.trim()
reason: $("#reason")[0].value.trim()
user: $("#_user")[0].value
}
$.ajax
url: '/ajax/mod/ban'
type: 'POST'
data: data
success: (data, status, jqxhr) ->
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) ->
2015-05-11 00:01:48 -07:00
$(document).on "DOMContentLoaded", ->
load()
$(document).on "page:load", ->
load()