codecombat/app/views/play/modal/SubscribeModal.coffee

109 lines
3.5 KiB
CoffeeScript
Raw Normal View History

2014-12-02 23:01:53 -05:00
ModalView = require 'views/core/ModalView'
template = require 'templates/play/modal/subscribe-modal'
stripeHandler = require 'core/services/stripe'
utils = require 'core/utils'
AuthModal = require 'views/core/AuthModal'
2014-12-02 23:01:53 -05:00
module.exports = class SubscribeModal extends ModalView
id: 'subscribe-modal'
template: template
plain: true
closesOnClickOutside: false
product:
amount: 999
planID: 'basic'
2014-12-02 23:01:53 -05:00
subscriptions:
'stripe:received-token': 'onStripeReceivedToken'
events:
'click .purchase-button': 'onClickPurchaseButton'
'click #close-modal': 'hide'
constructor: (options) ->
super(options)
@state = 'standby'
getRenderData: ->
c = super()
c.state = @state
c.stateMessage = @stateMessage
2014-12-09 09:06:14 -05:00
#c.price = @product.amount / 100
c.price = 5.99 # Sale
c.BTest = me.getSubscribeCopyGroup() is 'new'
2014-12-02 23:01:53 -05:00
return c
2014-12-03 12:13:51 -05:00
afterRender: ->
super()
popoverTitle = $.i18n.t 'subscribe.parents_title'
2014-12-03 14:00:42 -05:00
popoverContent = "<p>" + $.i18n.t('subscribe.parents_blurb1') + "</p>"
popoverContent += "<p>" + $.i18n.t('subscribe.parents_blurb2') + "</p>"
popoverContent += "<p>" + $.i18n.t('subscribe.parents_blurb3') + "</p>"
2014-12-09 09:06:14 -05:00
popoverContent = popoverContent.replace /9[.,]99/g, '5.99' # Sale
window.popoverContent = popoverContent
2014-12-03 12:13:51 -05:00
@$el.find('#parents-info').popover(
animation: true
html: true
placement: 'top'
trigger: 'hover'
title: popoverTitle
content: popoverContent
container: @$el
).on 'shown.bs.popover', =>
application.tracker?.trackEvent 'Subscription parent hover', {}
application.tracker?.trackPageView "subscription/parent-hover", ['Google Analytics']
2014-12-03 12:13:51 -05:00
2014-12-02 23:01:53 -05:00
onClickPurchaseButton: (e) ->
@playSound 'menu-button-click'
return @openModalView new AuthModal() if me.get('anonymous')
2014-12-02 23:01:53 -05:00
application.tracker?.trackEvent 'Started subscription purchase', {}
application.tracker?.trackPageView "subscription/start-purchase", ['Google Analytics']
options = {
2014-12-04 16:44:27 -05:00
description: $.i18n.t('subscribe.stripe_description')
2014-12-02 23:01:53 -05:00
amount: @product.amount
}
# SALE LOGIC
# overwrite amount with sale price
# maybe also put in another description with details about how long it lasts, etc
# NOTE: Do not change this price without updating the context.price in getRenderData
2014-12-09 09:06:14 -05:00
options = {
description: 'Monthly Subscription (HoC sale)'
amount: 599
}
stripeHandler.open(options)
2014-12-02 23:01:53 -05:00
onStripeReceivedToken: (e) ->
@state = 'purchasing'
@render()
stripe = _.clone(me.get('stripe') ? {})
stripe.planID = @product.planID
stripe.token = e.token.id
me.set 'stripe', stripe
@listenToOnce me, 'sync', @onSubscriptionSuccess
@listenToOnce me, 'error', @onSubscriptionError
me.patch({headers: {'X-Change-Plan': 'true'}})
2014-12-03 12:13:51 -05:00
onSubscriptionSuccess: ->
application.tracker?.trackEvent 'Finished subscription purchase', {}
application.tracker?.trackPageView "subscription/finish-purchase", ['Google Analytics']
Backbone.Mediator.publish 'subscribe-modal:subscribed', {}
2014-12-03 12:13:51 -05:00
@playSound 'victory'
@hide()
2014-12-03 12:13:51 -05:00
onSubscriptionError: (user, response, options) ->
console.error 'We got an error subscribing with Stripe from our server:', response
stripe = me.get('stripe') ? {}
delete stripe.token
delete stripe.planID
2014-12-03 12:13:51 -05:00
xhr = options.xhr
if xhr.status is 402
@state = 'declined'
else
@state = 'unknown_error'
@stateMessage = "#{xhr.status}: #{xhr.responseText}"
@render()