codecombat/app/views/account/UnsubscribeView.coffee
2016-05-19 07:41:16 -07:00

33 lines
934 B
CoffeeScript

RootView = require 'views/core/RootView'
template = require 'templates/account/unsubscribe-view'
{me} = require 'core/auth'
module.exports = class UnsubscribeView extends RootView
id: 'unsubscribe-view'
template: template
initialize: ->
@email = @getQueryVariable 'email'
events:
'click #unsubscribe-button': 'onUnsubscribeButtonClicked'
onUnsubscribeButtonClicked: ->
@$el.find('#unsubscribe-button').hide()
@$el.find('.progress').show()
@$el.find('.alert').hide()
email = @getQueryVariable 'email'
url = "/auth/unsubscribe?email=#{encodeURIComponent(email)}"
success = =>
@$el.find('.progress').hide()
@$el.find('#success-alert').show()
me.fetch cache: false
error = =>
@$el.find('.progress').hide()
@$el.find('#fail-alert').show()
@$el.find('#unsubscribe-button').show()
$.ajax { url: url, success: success, error: error, cache: false }