2014-11-28 20:49:41 -05:00
|
|
|
ModalView = require 'views/core/ModalView'
|
2014-11-12 12:40:55 -05:00
|
|
|
template = require 'templates/play/modal/buy-gems-modal'
|
2014-11-28 20:49:41 -05:00
|
|
|
stripeHandler = require 'core/services/stripe'
|
|
|
|
utils = require 'core/utils'
|
2015-02-09 12:22:18 -05:00
|
|
|
SubscribeModal = require 'views/core/SubscribeModal'
|
2014-11-12 12:40:55 -05:00
|
|
|
|
|
|
|
module.exports = class BuyGemsModal extends ModalView
|
|
|
|
id: 'buy-gems-modal'
|
|
|
|
template: template
|
|
|
|
plain: true
|
2014-11-12 23:21:14 -05:00
|
|
|
|
|
|
|
originalProducts: [
|
2014-11-17 18:15:02 -05:00
|
|
|
{ price: '$4.99', gems: 5000, amount: 499, id: 'gems_5', i18n: 'buy_gems.few_gems' }
|
|
|
|
{ price: '$9.99', gems: 11000, amount: 999, id: 'gems_10', i18n: 'buy_gems.pile_gems' }
|
|
|
|
{ price: '$19.99', gems: 25000, amount: 1999, id: 'gems_20', i18n: 'buy_gems.chest_gems' }
|
2014-11-12 13:23:43 -05:00
|
|
|
]
|
2014-11-12 23:21:14 -05:00
|
|
|
|
2014-11-12 13:23:43 -05:00
|
|
|
subscriptions:
|
2014-11-12 13:37:09 -05:00
|
|
|
'ipad:products': 'onIPadProducts'
|
2014-11-12 13:23:43 -05:00
|
|
|
'ipad:iap-complete': 'onIAPComplete'
|
2014-11-17 18:15:02 -05:00
|
|
|
'stripe:received-token': 'onStripeReceivedToken'
|
2014-11-12 23:21:14 -05:00
|
|
|
|
2014-11-12 13:23:43 -05:00
|
|
|
events:
|
2015-02-25 17:24:32 -05:00
|
|
|
'click .product button:not(.start-subscription-button)': 'onClickProductButton'
|
2015-02-08 12:06:03 -05:00
|
|
|
'click #close-modal': 'hide'
|
2015-02-09 12:22:18 -05:00
|
|
|
'click .start-subscription-button': 'onClickStartSubscription'
|
2014-11-12 13:23:43 -05:00
|
|
|
|
|
|
|
constructor: (options) ->
|
|
|
|
super(options)
|
2014-12-12 18:27:58 -05:00
|
|
|
@timestampForPurchase = new Date().getTime()
|
2014-11-17 18:15:02 -05:00
|
|
|
@state = 'standby'
|
2014-11-12 13:37:09 -05:00
|
|
|
if application.isIPadApp
|
|
|
|
@products = []
|
2014-11-12 23:21:14 -05:00
|
|
|
Backbone.Mediator.publish 'buy-gems-modal:update-products'
|
|
|
|
else
|
|
|
|
@products = @originalProducts
|
2014-12-12 18:27:58 -05:00
|
|
|
$.post '/db/payment/check-stripe-charges', (something, somethingElse, jqxhr) =>
|
|
|
|
if jqxhr.status is 201
|
|
|
|
@state = 'recovered_charge'
|
|
|
|
@render()
|
2014-11-12 13:23:43 -05:00
|
|
|
|
2014-11-12 12:40:55 -05:00
|
|
|
getRenderData: ->
|
|
|
|
c = super()
|
2014-11-12 13:37:09 -05:00
|
|
|
c.products = @products
|
2014-11-17 18:15:02 -05:00
|
|
|
c.state = @state
|
2014-11-29 13:44:58 -05:00
|
|
|
c.stateMessage = @stateMessage
|
2014-11-12 12:40:55 -05:00
|
|
|
return c
|
2014-11-12 23:21:14 -05:00
|
|
|
|
2015-08-15 17:42:57 -04:00
|
|
|
afterRender: ->
|
|
|
|
super()
|
|
|
|
return unless @supermodel.finished()
|
|
|
|
@playSound 'game-menu-open'
|
|
|
|
|
|
|
|
onHidden: ->
|
|
|
|
super()
|
|
|
|
@playSound 'game-menu-close'
|
|
|
|
|
2014-11-12 13:37:09 -05:00
|
|
|
onIPadProducts: (e) ->
|
2014-11-12 15:14:47 -05:00
|
|
|
newProducts = []
|
|
|
|
for iapProduct in e.products
|
2014-11-12 23:21:14 -05:00
|
|
|
localProduct = _.find @originalProducts, { id: iapProduct.id }
|
2014-11-12 15:14:47 -05:00
|
|
|
continue unless localProduct
|
|
|
|
localProduct.price = iapProduct.price
|
|
|
|
newProducts.push localProduct
|
2014-11-12 23:21:14 -05:00
|
|
|
@products = _.sortBy newProducts, 'gems'
|
2014-11-12 13:37:09 -05:00
|
|
|
@render()
|
2014-11-12 12:40:55 -05:00
|
|
|
|
|
|
|
onClickProductButton: (e) ->
|
2014-11-26 09:58:23 -05:00
|
|
|
@playSound 'menu-button-click'
|
2014-11-17 18:15:02 -05:00
|
|
|
productID = $(e.target).closest('button').val()
|
|
|
|
product = _.find @products, { id: productID }
|
2014-11-12 23:21:14 -05:00
|
|
|
|
2014-11-12 12:40:55 -05:00
|
|
|
if application.isIPadApp
|
2014-11-12 13:23:43 -05:00
|
|
|
Backbone.Mediator.publish 'buy-gems-modal:purchase-initiated', { productID: productID }
|
2014-11-12 23:21:14 -05:00
|
|
|
|
2014-11-12 12:40:55 -05:00
|
|
|
else
|
2015-02-26 17:24:00 -05:00
|
|
|
application.tracker?.trackEvent 'Started gem purchase', { productID: productID }
|
2014-11-17 18:15:02 -05:00
|
|
|
stripeHandler.open({
|
|
|
|
description: $.t(product.i18n)
|
|
|
|
amount: product.amount
|
2015-02-25 14:33:51 -05:00
|
|
|
bitcoin: true
|
2015-03-24 18:39:35 -04:00
|
|
|
alipay: if me.get('chinaVersion') or (me.get('preferredLanguage') or 'en-US')[...2] is 'zh' then true else 'auto'
|
2014-11-17 18:15:02 -05:00
|
|
|
})
|
2014-11-26 09:58:23 -05:00
|
|
|
|
2014-11-17 18:15:02 -05:00
|
|
|
@productBeingPurchased = product
|
2014-11-26 09:58:23 -05:00
|
|
|
|
2014-11-17 18:15:02 -05:00
|
|
|
onStripeReceivedToken: (e) ->
|
|
|
|
data = {
|
|
|
|
productID: @productBeingPurchased.id
|
|
|
|
stripe: {
|
|
|
|
token: e.token.id
|
|
|
|
timestamp: @timestampForPurchase
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@state = 'purchasing'
|
|
|
|
@render()
|
|
|
|
jqxhr = $.post('/db/payment', data)
|
|
|
|
jqxhr.done(=>
|
2014-12-09 16:57:01 -05:00
|
|
|
application.tracker?.trackEvent 'Finished gem purchase',
|
|
|
|
productID: @productBeingPurchased.id
|
2015-03-24 18:02:57 -04:00
|
|
|
value: @productBeingPurchased.amount
|
2014-11-17 18:15:02 -05:00
|
|
|
document.location.reload()
|
|
|
|
)
|
|
|
|
jqxhr.fail(=>
|
|
|
|
if jqxhr.status is 402
|
|
|
|
@state = 'declined'
|
|
|
|
@stateMessage = arguments[2]
|
|
|
|
else if jqxhr.status is 500
|
|
|
|
@state = 'retrying'
|
|
|
|
f = _.bind @onStripeReceivedToken, @, e
|
|
|
|
_.delay f, 2000
|
|
|
|
else
|
|
|
|
@state = 'unknown_error'
|
2014-11-29 13:44:58 -05:00
|
|
|
@stateMessage = "#{jqxhr.status}: #{jqxhr.responseText}"
|
2014-11-17 18:15:02 -05:00
|
|
|
@render()
|
|
|
|
)
|
2014-11-12 23:21:14 -05:00
|
|
|
|
2014-11-12 13:23:43 -05:00
|
|
|
onIAPComplete: (e) ->
|
2014-11-12 15:14:47 -05:00
|
|
|
product = _.find @products, { id: e.productID }
|
2014-11-12 13:23:43 -05:00
|
|
|
purchased = me.get('purchased') ? {}
|
2014-11-12 15:14:47 -05:00
|
|
|
purchased = _.clone purchased
|
2014-11-12 13:23:43 -05:00
|
|
|
purchased.gems ?= 0
|
2014-11-12 15:14:47 -05:00
|
|
|
purchased.gems += product.gems
|
2014-11-12 13:23:43 -05:00
|
|
|
me.set('purchased', purchased)
|
2014-11-12 23:21:14 -05:00
|
|
|
@hide()
|
2015-02-09 12:22:18 -05:00
|
|
|
|
|
|
|
onClickStartSubscription: (e) ->
|
|
|
|
@openModalView new SubscribeModal()
|
|
|
|
window.tracker?.trackEvent 'Show subscription modal', category: 'Subscription', label: 'buy gems modal'
|