2014-12-02 23:01:53 -05:00
|
|
|
ModalView = require 'views/core/ModalView'
|
2014-12-18 23:34:59 -05:00
|
|
|
template = require 'templates/core/subscribe-modal'
|
2014-12-02 23:01:53 -05:00
|
|
|
stripeHandler = require 'core/services/stripe'
|
|
|
|
utils = require 'core/utils'
|
2014-12-06 12:35:13 -05:00
|
|
|
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
|
2014-12-03 00:27:12 -05:00
|
|
|
planID: 'basic'
|
2014-12-02 23:01:53 -05:00
|
|
|
|
|
|
|
subscriptions:
|
|
|
|
'stripe:received-token': 'onStripeReceivedToken'
|
|
|
|
|
|
|
|
events:
|
|
|
|
'click #close-modal': 'hide'
|
2015-02-04 16:54:35 -05:00
|
|
|
'click #parent-send': 'onClickParentSendButton'
|
|
|
|
'click .purchase-button': 'onClickPurchaseButton'
|
2014-12-02 23:01:53 -05:00
|
|
|
|
|
|
|
constructor: (options) ->
|
|
|
|
super(options)
|
|
|
|
@state = 'standby'
|
|
|
|
|
|
|
|
getRenderData: ->
|
|
|
|
c = super()
|
|
|
|
c.state = @state
|
|
|
|
c.stateMessage = @stateMessage
|
2014-12-13 12:00:33 -05:00
|
|
|
c.price = @product.amount / 100
|
|
|
|
#c.price = 3.99 # Sale
|
2014-12-02 23:01:53 -05:00
|
|
|
return c
|
|
|
|
|
2014-12-03 12:13:51 -05:00
|
|
|
afterRender: ->
|
|
|
|
super()
|
2015-02-04 16:54:35 -05:00
|
|
|
@setupParentButtonPopover()
|
|
|
|
@setupParentInfoPopover()
|
|
|
|
|
|
|
|
setupParentButtonPopover: ->
|
|
|
|
popoverTitle = $.i18n.t 'subscribe.parent_email_title'
|
|
|
|
popoverTitle += '<button type="button" class="close" onclick="$('.parent-button').popover('hide');">×</button>'
|
|
|
|
popoverContent = "<div id='email-parent-form'>"
|
|
|
|
popoverContent += "<p>#{$.i18n.t('subscribe.parent_email_description')}</p>"
|
|
|
|
popoverContent += "<form>"
|
|
|
|
popoverContent += " <div class='form-group'>"
|
|
|
|
popoverContent += " <label>#{$.i18n.t('subscribe.parent_email_input_label')}</label>"
|
|
|
|
popoverContent += " <input id='parent-input' type='email' class='form-control' placeholder='#{$.i18n.t('subscribe.parent_email_input_placeholder')}'/>"
|
|
|
|
popoverContent += " <div id='parent-email-validator' class='email_invalid'>#{$.i18n.t('subscribe.parent_email_input_invalid')}</div>"
|
|
|
|
popoverContent += " </div>"
|
|
|
|
popoverContent += " <button id='parent-send' type='submit' class='btn btn-default'>#{$.i18n.t('subscribe.parent_email_send')}</button>"
|
|
|
|
popoverContent += "</form>"
|
|
|
|
popoverContent += "</div>"
|
|
|
|
popoverContent += "<div id='email-parent-complete'>"
|
|
|
|
popoverContent += " <p>#{$.i18n.t('subscribe.parent_email_sent')}</p>"
|
|
|
|
popoverContent += " <button type='button' onclick='$('.parent-button').popover('hide');'>#{$.i18n.t('modal.close')}</button>"
|
|
|
|
popoverContent += "</div>"
|
|
|
|
|
|
|
|
@$el.find('.parent-button').popover(
|
|
|
|
animation: true
|
|
|
|
html: true
|
|
|
|
placement: 'top'
|
|
|
|
trigger: 'click'
|
|
|
|
title: popoverTitle
|
|
|
|
content: popoverContent
|
|
|
|
container: @$el
|
|
|
|
).on 'shown.bs.popover', =>
|
2015-02-27 19:07:41 -05:00
|
|
|
application.tracker?.trackEvent 'Subscription ask parent button click'
|
2015-02-04 16:54:35 -05:00
|
|
|
|
|
|
|
setupParentInfoPopover: ->
|
2014-12-03 12:13:51 -05:00
|
|
|
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-13 12:00:33 -05:00
|
|
|
#popoverContent = popoverContent.replace /9[.,]99/g, '3.99' # Sale
|
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', =>
|
2015-02-27 19:07:41 -05:00
|
|
|
application.tracker?.trackEvent 'Subscription parent hover'
|
2014-12-03 12:13:51 -05:00
|
|
|
|
2015-02-04 16:54:35 -05:00
|
|
|
onClickParentSendButton: (e) ->
|
|
|
|
# TODO: Popover sometimes dismisses immediately after send
|
|
|
|
|
|
|
|
email = $('#parent-input').val()
|
|
|
|
unless /[\w\.]+@\w+\.\w+/.test email
|
|
|
|
$('#parent-input').parent().addClass('has-error')
|
|
|
|
$('#parent-email-validator').show()
|
|
|
|
return false
|
|
|
|
|
|
|
|
request = @supermodel.addRequestResource 'send_one_time_email', {
|
|
|
|
url: '/db/user/-/send_one_time_email'
|
|
|
|
data: {email: email, type: 'subscribe modal parent'}
|
|
|
|
method: 'POST'
|
|
|
|
}, 0
|
|
|
|
request.load()
|
|
|
|
|
|
|
|
$('#email-parent-form').hide()
|
|
|
|
$('#email-parent-complete').show()
|
|
|
|
false
|
|
|
|
|
2014-12-02 23:01:53 -05:00
|
|
|
onClickPurchaseButton: (e) ->
|
|
|
|
@playSound 'menu-button-click'
|
2014-12-06 12:35:13 -05:00
|
|
|
return @openModalView new AuthModal() if me.get('anonymous')
|
2015-02-27 19:07:41 -05:00
|
|
|
application.tracker?.trackEvent 'Started subscription purchase'
|
2014-12-06 15:37:54 -05:00
|
|
|
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
|
2015-03-18 20:17:30 -04:00
|
|
|
alipay: 'auto'
|
2015-03-16 13:50:15 -04:00
|
|
|
alipayReusable: true
|
2014-12-06 15:37:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
# SALE LOGIC
|
|
|
|
# overwrite amount with sale price
|
|
|
|
# maybe also put in another description with details about how long it lasts, etc
|
2014-12-09 02:43:52 -05:00
|
|
|
# NOTE: Do not change this price without updating the context.price in getRenderData
|
2014-12-11 21:39:03 -05:00
|
|
|
# NOTE: And, the popover content if necessary
|
2014-12-13 12:00:33 -05:00
|
|
|
#options = {
|
|
|
|
# description: 'Monthly Subscription (HoC sale)'
|
|
|
|
# amount: 399
|
|
|
|
#}
|
2014-12-06 15:37:54 -05:00
|
|
|
|
2014-12-09 16:57:01 -05:00
|
|
|
@purchasedAmount = options.amount
|
|
|
|
|
2014-12-06 15:37:54 -05:00
|
|
|
stripeHandler.open(options)
|
2014-12-02 23:01:53 -05:00
|
|
|
|
|
|
|
onStripeReceivedToken: (e) ->
|
|
|
|
@state = 'purchasing'
|
|
|
|
@render()
|
2014-12-03 00:27:12 -05:00
|
|
|
|
2014-12-05 17:11:38 -05:00
|
|
|
stripe = _.clone(me.get('stripe') ? {})
|
2014-12-03 00:27:12 -05:00
|
|
|
stripe.planID = @product.planID
|
|
|
|
stripe.token = e.token.id
|
|
|
|
me.set 'stripe', stripe
|
|
|
|
|
|
|
|
@listenToOnce me, 'sync', @onSubscriptionSuccess
|
|
|
|
@listenToOnce me, 'error', @onSubscriptionError
|
2014-12-05 17:11:38 -05:00
|
|
|
me.patch({headers: {'X-Change-Plan': 'true'}})
|
2014-12-03 00:27:12 -05:00
|
|
|
|
2014-12-03 12:13:51 -05:00
|
|
|
onSubscriptionSuccess: ->
|
2014-12-09 16:57:01 -05:00
|
|
|
application.tracker?.trackEvent 'Finished subscription purchase', revenue: @purchasedAmount / 100
|
2014-12-03 14:19:10 -05:00
|
|
|
Backbone.Mediator.publish 'subscribe-modal:subscribed', {}
|
2014-12-03 12:13:51 -05:00
|
|
|
@playSound 'victory'
|
2014-12-03 00:27:12 -05:00
|
|
|
@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
|
2014-12-03 00:27:12 -05:00
|
|
|
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()
|