mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Add recent cancellations table to dashboard
This commit is contained in:
parent
4f54b4432f
commit
0353be4fc4
3 changed files with 74 additions and 10 deletions
app
server/payments
|
@ -61,7 +61,7 @@ block content
|
|||
each subscriber in subscribers
|
||||
tr
|
||||
td
|
||||
a(href="https://dashboard.stripe.com/customers/#{subscriber.customerID}", target="_blank")= subscriber.subID
|
||||
a(href="https://dashboard.stripe.com/customers/#{subscriber.customerID}", target="_blank")= subscriber.subscriptionID
|
||||
td= subscriber.user.dateCreated.substring(0, 10)
|
||||
td= subscriber.start.substring(0, 10)
|
||||
td
|
||||
|
@ -82,6 +82,54 @@ block content
|
|||
else
|
||||
td
|
||||
|
||||
h2 Recent Cancellations
|
||||
if !cancellations || cancellations.length < 1
|
||||
h4 Fetching recent cancellations...
|
||||
else
|
||||
table.table.table-striped.table-condensed
|
||||
thead.subscribers-thead
|
||||
tr
|
||||
th Sub ID
|
||||
th User ID
|
||||
th User Start
|
||||
th Sub Start
|
||||
th Sub Cancel
|
||||
th Length
|
||||
th Level
|
||||
th Age
|
||||
th Spoken
|
||||
th Clans
|
||||
tbody.subscribers-tbody
|
||||
each cancellation in cancellations
|
||||
tr
|
||||
td
|
||||
a(href="https://dashboard.stripe.com/customers/#{cancellation.customerID}", target="_blank")= cancellation.subscriptionID
|
||||
if cancellation.userID
|
||||
td
|
||||
a(href="/user/#{cancellation.userID}")= cancellation.userID
|
||||
else
|
||||
td
|
||||
if cancellation.user
|
||||
td= cancellation.user.dateCreated.substring(0, 10)
|
||||
else
|
||||
td
|
||||
td= cancellation.start.substring(0, 10)
|
||||
td= cancellation.cancel.substring(0, 10)
|
||||
td= moment.duration(new Date(cancellation.cancel) - new Date(cancellation.start)).humanize()
|
||||
td= cancellation.level
|
||||
if cancellation.user
|
||||
td= cancellation.user.ageRange
|
||||
td= cancellation.user.preferredLanguage
|
||||
if cancellation.user.clans
|
||||
td= cancellation.user.clans.length
|
||||
else
|
||||
td
|
||||
else
|
||||
td
|
||||
td
|
||||
td
|
||||
td
|
||||
|
||||
h2 Subscriptions
|
||||
if !subs || subs.length < 1
|
||||
h4 Fetching subscriptions...
|
||||
|
|
|
@ -22,6 +22,7 @@ module.exports = class AnalyticsSubscriptionsView extends RootView
|
|||
getRenderData: ->
|
||||
context = super()
|
||||
context.analytics = @analytics ? graphs: []
|
||||
context.cancellations = @cancellations ? []
|
||||
context.subs = _.cloneDeep(@subs ? []).reverse()
|
||||
context.subscribers = @subscribers ? []
|
||||
context.subscriberCancelled = _.find context.subscribers, (subscriber) -> subscriber.cancel
|
||||
|
@ -60,6 +61,10 @@ module.exports = class AnalyticsSubscriptionsView extends RootView
|
|||
console.error 'Failed to get cancellations', response
|
||||
options.success = (cancellations, response, options) =>
|
||||
return if @destroyed
|
||||
@cancellations = cancellations
|
||||
@cancellations.sort (a, b) -> b.cancel.localeCompare(a.cancel)
|
||||
for cancellation in @cancellations when cancellation.user?
|
||||
cancellation.level = User.levelFromExp cancellation.user.points
|
||||
done(cancellations)
|
||||
@supermodel.addRequestResource('get_cancellations', options, 0).load()
|
||||
|
||||
|
@ -111,7 +116,7 @@ module.exports = class AnalyticsSubscriptionsView extends RootView
|
|||
subDayMap[endDay]['end'] ?= 0
|
||||
subDayMap[endDay]['end']++
|
||||
for cancellation in cancellations
|
||||
if cancellation.subID is sub.subID
|
||||
if cancellation.subscriptionID is sub.subscriptionID
|
||||
sub.cancel = cancellation.cancel
|
||||
cancelDay = cancellation.cancel.substring(0, 10)
|
||||
subDayMap[cancelDay] ?= {}
|
||||
|
|
|
@ -28,7 +28,7 @@ class SubscriptionHandler extends Handler
|
|||
getByRelationship: (req, res, args...) ->
|
||||
return @getCancellations(req, res) if args[1] is 'cancellations'
|
||||
return @getRecentSubscribers(req, res) if args[1] is 'subscribers'
|
||||
return @getSubscriptions(req, res) if args[1] is 'subscriptions'
|
||||
return @getActiveSubscriptions(req, res) if args[1] is 'subscriptions'
|
||||
super(arguments...)
|
||||
|
||||
getCancellations: (req, res) =>
|
||||
|
@ -72,14 +72,26 @@ class SubscriptionHandler extends Handler
|
|||
return done() unless subscription?.cancel_at_period_end
|
||||
cancellations.push
|
||||
cancel: new Date(subscription.canceled_at * 1000)
|
||||
subID: subscription.id
|
||||
customerID: customerID
|
||||
start: new Date(subscription.start * 1000)
|
||||
subscriptionID: subscriptionID
|
||||
userID: subscription.metadata?.id
|
||||
done()
|
||||
tasks = []
|
||||
for cancellationEvent in cancellationEvents
|
||||
tasks.push createCheckSubFn(cancellationEvent.customerID, cancellationEvent.subscriptionID)
|
||||
async.parallel tasks, (err, results) =>
|
||||
return @sendDatabaseError(res, err) if err
|
||||
@sendSuccess(res, cancellations)
|
||||
|
||||
# TODO: Lookup userID via customer object, for cancellations that are missing them
|
||||
userIDs = _.map cancellations, (a) -> a.userID
|
||||
User.find {_id: {$in: userIDs}}, (err, users) =>
|
||||
return @sendDatabaseError(res, err) if err
|
||||
userMap = {}
|
||||
userMap[user.id] = user.toObject() for user in users
|
||||
for cancellation in cancellations
|
||||
cancellation.user = userMap[cancellation.userID] if cancellation.userID of userMap
|
||||
@sendSuccess(res, cancellations)
|
||||
|
||||
getRecentSubscribers: (req, res) ->
|
||||
# console.log 'subscription_handler getRecentSubscribers'
|
||||
|
@ -126,9 +138,8 @@ class SubscriptionHandler extends Handler
|
|||
log.debug 'Analytics error:\n' + err
|
||||
@sendSuccess(res, userMap)
|
||||
|
||||
getSubscriptions: (req, res) ->
|
||||
# console.log 'subscription_handler getSubscriptions'
|
||||
# Returns a list of active subscriptions
|
||||
getActiveSubscriptions: (req, res) ->
|
||||
# console.log 'subscription_handler getActiveSubscriptions'
|
||||
# TODO: does not return free subs
|
||||
# TODO: add tests
|
||||
# TODO: take date range as input
|
||||
|
@ -212,9 +223,9 @@ class SubscriptionHandler extends Handler
|
|||
subs = []
|
||||
for subID of subMap
|
||||
sub =
|
||||
start: subMap[subID].first
|
||||
subID: subID
|
||||
customerID: subMap[subID].customerID
|
||||
start: subMap[subID].first
|
||||
subscriptionID: subID
|
||||
sub.cancel = subMap[subID].cancel if subMap[subID].cancel
|
||||
oneMonthAgo = new Date()
|
||||
oneMonthAgo.setUTCMonth(oneMonthAgo.getUTCMonth() - 1)
|
||||
|
|
Loading…
Add table
Reference in a new issue