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' module.exports = class SubscribeModal extends ModalView id: 'subscribe-modal' template: template plain: true closesOnClickOutside: false product: amount: 999 planID: 'basic' 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 return c afterRender: -> super() popoverTitle = $.i18n.t 'subscribe.parents_title' popoverContent = "

" + $.i18n.t('subscribe.parents_blurb1') + "

" popoverContent += "

" + $.i18n.t('subscribe.parents_blurb2') + "

" popoverContent += "

" + $.i18n.t('subscribe.parents_blurb3') + "

" @$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'] onClickPurchaseButton: (e) -> @playSound 'menu-button-click' return @openModalView new AuthModal() if me.get('anonymous') application.tracker?.trackEvent 'Started subscription purchase', {} application.tracker?.trackPageView "subscription/start-purchase", ['Google Analytics'] options = { description: $.i18n.t('subscribe.stripe_description') amount: @product.amount } # SALE LOGIC # overwrite amount with sale price # maybe also put in another description with details about how long it lasts, etc # options = { # description: 'Subscription. Half price for three months!' # amount: 499 # } stripeHandler.open(options) 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'}}) onSubscriptionSuccess: -> application.tracker?.trackEvent 'Finished subscription purchase', {} application.tracker?.trackPageView "subscription/finish-purchase", ['Google Analytics'] Backbone.Mediator.publish 'subscribe-modal:subscribed', {} @playSound 'victory' @hide() 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 xhr = options.xhr if xhr.status is 402 @state = 'declined' else @state = 'unknown_error' @stateMessage = "#{xhr.status}: #{xhr.responseText}" @render()