2020-12-16 12:04:33 +03:00
|
|
|
|
<div class="mt2 pb2 gh-member-settings" ...attributes>
|
|
|
|
|
<div class="flex-auto br4 shadow-1 bg-grouped-table mt2 flex flex-column justify-between items-stretch gh-member-details">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="flex items-center pa5 pb3">
|
|
|
|
|
{{#if (or this.member.name this.member.email)}}
|
|
|
|
|
<GhMemberAvatar
|
|
|
|
|
@member={{this.member}}
|
|
|
|
|
@sizeClass={{if this.member.name 'f-subheadline fw4 lh-zero tracked-1' 'f-headline fw4 lh-zero tracked-1'}}
|
|
|
|
|
@containerClass="w20 h20 mr4 gh-member-detail-avatar"
|
|
|
|
|
/>
|
|
|
|
|
{{else}}
|
|
|
|
|
<div class="flex items-center justify-center br-100 w18 h18 mr4 gh-new-member-avatar">
|
|
|
|
|
<span class="gh-member-avatar-label f-subheadline fw4 lh-zero tracked-1">N</span>
|
|
|
|
|
</div>
|
|
|
|
|
{{/if}}
|
|
|
|
|
<div>
|
|
|
|
|
<h3 class="f2 fw6 ma0 pa0">
|
|
|
|
|
{{or this.member.name this.member.email}}
|
|
|
|
|
</h3>
|
|
|
|
|
<p class="f7 pa0 ma0 midlightgrey-d1">
|
|
|
|
|
{{#if (and this.member.name this.member.email)}}
|
|
|
|
|
<a href="mailto:{{this.member.email}}" class="darkgrey fw5">{{this.member.email}}</a>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</p>
|
|
|
|
|
{{#unless this.member.isNew}}
|
|
|
|
|
<p class="f7 pa0 ma0 midgrey {{if this.member.name "nudge-bottom--2"}}">
|
|
|
|
|
{{#if this.member.geolocation}}
|
|
|
|
|
{{#if (and (eq this.member.geolocation.country_code "US") @member.geolocation.region)}}
|
|
|
|
|
{{this.member.geolocation.region}}, US
|
2020-12-09 16:26:00 +03:00
|
|
|
|
{{else}}
|
2020-12-16 12:04:33 +03:00
|
|
|
|
{{or this.member.geolocation.country "Unknown location"}}
|
2020-12-09 16:26:00 +03:00
|
|
|
|
{{/if}}
|
2020-12-16 12:04:33 +03:00
|
|
|
|
{{else}}
|
|
|
|
|
Unknown location
|
|
|
|
|
{{/if}}
|
|
|
|
|
– Created on {{moment-format @member.createdAtUTC "D MMM YYYY"}}
|
|
|
|
|
</p>
|
|
|
|
|
{{/unless}}
|
2020-12-09 16:26:00 +03:00
|
|
|
|
</div>
|
2020-12-16 12:04:33 +03:00
|
|
|
|
</div>
|
2019-11-28 14:30:21 +03:00
|
|
|
|
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<div class="flex mb5 pa5 pt3 bb b--whitegrey">
|
|
|
|
|
<div class="flex-auto flex flex-column justify-center items-start">
|
|
|
|
|
<div class="f8 fw5 midgrey">Emails received</div>
|
|
|
|
|
<div class="gh-member-email-stats">{{@member.emailCount}}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex-auto flex flex-column justify-center items-start">
|
|
|
|
|
<div class="f8 fw5 midgrey">Emails opened</div>
|
|
|
|
|
<div class="gh-member-email-stats">{{@member.emailOpenedCount}}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex-auto flex flex-column justify-center items-start">
|
|
|
|
|
<div class="f8 fw5 midgrey">Avg. open rate</div>
|
|
|
|
|
<div class="gh-member-email-stats">
|
|
|
|
|
{{#if (is-empty @member.emailOpenRate)}}
|
|
|
|
|
<span data-tooltip="Insufficient data available">–</span>
|
|
|
|
|
{{else}}
|
|
|
|
|
{{@member.emailOpenRate}}%
|
|
|
|
|
{{/if}}
|
2020-12-09 16:26:00 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-12-10 14:38:38 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<GhFormGroup @errors={{this.member.errors}} @hasValidated={{this.member.hasValidated}} @property="name" @classNames="max-width pl5 pr5">
|
|
|
|
|
<label for="member-name">Name</label>
|
|
|
|
|
<GhTextInput @id="member-name" @name="name" @value={{this.scratchMember.name}} @tabindex="1"
|
|
|
|
|
@focus-out={{action "setProperty" "name" this.scratchMember.name}} data-test-input="member-name" />
|
|
|
|
|
<GhErrorMessage @errors={{member.errors}} @property="name" />
|
2020-12-09 16:26:00 +03:00
|
|
|
|
</GhFormGroup>
|
|
|
|
|
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<GhFormGroup @errors={{this.member.errors}} @hasValidated={{this.member.hasValidated}} @property="email" @classNames="max-width pl5 pr5">
|
|
|
|
|
<label for="member-email">Email</label>
|
|
|
|
|
<GhTextInput @value={{this.scratchMember.email}} @id="member-email" @name="email" @tabindex="2"
|
|
|
|
|
@autocapitalize="off" @autocorrect="off" @autocomplete="off"
|
|
|
|
|
@focus-out={{action "setProperty" "email" this.scratchMember.email}} data-test-input="member-email"/>
|
|
|
|
|
<GhErrorMessage @errors={{this.member.errors}} @property="email" />
|
|
|
|
|
</GhFormGroup>
|
2019-11-06 14:00:03 +03:00
|
|
|
|
</div>
|
2020-12-10 14:38:38 +03:00
|
|
|
|
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<div class="pa5 pb6 bt b--whitegrey">
|
|
|
|
|
<GhFormGroup @classNames="gh-members-subscribed-checkbox mb0">
|
|
|
|
|
<div class="flex justify-between items-center">
|
|
|
|
|
<div>
|
|
|
|
|
<h4 class="gh-setting-title">Subscribed to newsletter</h4>
|
|
|
|
|
<p class="gh-setting-desc">If disabled, member will <em>not</em> receive newsletter emails</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="for-switch">
|
|
|
|
|
<label class="switch" for="subscribed-checkbox">
|
|
|
|
|
<Input @checked={{this.member.subscribed}} @type="checkbox" @id="subscribed-checkbox"
|
|
|
|
|
@name="subscribed" data-test-checkbox="member-subscribed" />
|
|
|
|
|
<span class="input-toggle-component"></span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</GhFormGroup>
|
|
|
|
|
</div>
|
2019-11-06 14:00:03 +03:00
|
|
|
|
</div>
|
2020-12-09 16:26:00 +03:00
|
|
|
|
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<div class="flex-auto br4 shadow-1 bg-grouped-table mt2 flex flex-column items-stretch gh-member-internal-info">
|
|
|
|
|
<div class="pa5">
|
|
|
|
|
<GhFormGroup @classNames="gh-member-labels">
|
|
|
|
|
<label for="label-input">Labels</label>
|
|
|
|
|
<GhMemberLabelInput @onChange={{action "setLabels"}} @labels={{this.member.labels}} @triggerId="label-input" data-test-input="" />
|
|
|
|
|
</GhFormGroup>
|
|
|
|
|
<GhFormGroup @errors={{this.member.errors}} @hasValidated={{this.member.hasValidated}} @property="note" @classNames="mb0 gh-member-note">
|
|
|
|
|
<label for="member-note">Note <span class="midgrey-l2 fw4">(not visible to member)</span></label>
|
|
|
|
|
<GhTextarea @id="member-note" @name="note" @class="gh-member-details-textarea" @tabindex="3"
|
|
|
|
|
@value={{this.scratchMember.note}} @focus-out={{action "setProperty" "note" this.scratchMember.note}} data-test-input="member-note" />
|
|
|
|
|
<GhErrorMessage @errors={{this.member.errors}} @property="note" />
|
|
|
|
|
<p> Maximum: <b>500</b> characters. You’ve used
|
|
|
|
|
{{gh-count-down-characters this.scratchMember.note 500}}</p>
|
|
|
|
|
</GhFormGroup>
|
2020-02-14 12:34:01 +03:00
|
|
|
|
</div>
|
2020-12-16 12:04:33 +03:00
|
|
|
|
</div>
|
2019-10-03 20:42:33 +03:00
|
|
|
|
|
2020-12-16 12:04:33 +03:00
|
|
|
|
{{#if this.canShowStripeInfo}}
|
|
|
|
|
<div class="gh-member-stripe">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<h4 class="midlightgrey f-small fw5 ttu mt8 gh-member-label-stripe">Stripe info</h4>
|
2019-10-04 17:31:56 +03:00
|
|
|
|
|
2020-12-10 14:38:38 +03:00
|
|
|
|
{{#if this.isLoading}}
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<div class="pa20 br4 shadow-1 bg-grouped-table mt2">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<div class="flex justify-center flex-auto">
|
|
|
|
|
<div class="gh-loading-spinner"> </div>
|
|
|
|
|
</div>
|
2019-10-07 15:26:32 +03:00
|
|
|
|
</div>
|
2020-12-10 14:38:38 +03:00
|
|
|
|
{{else}}
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<div class="br4 shadow-1 bg-grouped-table mt2">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
{{#if this.subscriptions}}
|
|
|
|
|
<div class="gh-member-header-stripeinfo">
|
|
|
|
|
<div class="flex items-center justify-between gh-btn-group w-100 ma5 mb0">
|
|
|
|
|
<button type="button" class="gh-btn gh-member-btn-stripe-toggle w-100 {{if (eq this.stripeDetailsType "subscription") "gh-btn-group-selected"}}" {{on "click" (fn this.changeStripeDetailsType "subscription")}}><span>Subscription</span></button>
|
|
|
|
|
<button type="button" class="gh-btn gh-member-btn-stripe-toggle w-100 {{if (eq this.stripeDetailsType "customer") "gh-btn-group-selected"}}" {{on "click" (fn this.changeStripeDetailsType "customer")}}><span>Customer</span></button>
|
2020-08-21 14:35:45 +03:00
|
|
|
|
</div>
|
2019-10-07 15:26:32 +03:00
|
|
|
|
</div>
|
2020-12-19 12:11:13 +03:00
|
|
|
|
{{#if (eq this.stripeDetailsType "subscription")}}
|
|
|
|
|
{{#if this.hasMultipleSubscriptions}}
|
|
|
|
|
<div class="pa2 flex flex-column flex-row-ns items-center justify-center f7 fw5 bg-whitegrey-l2 bb b--whitegrey br4 br--top">
|
|
|
|
|
{{svg-jar "info" class="gh-member-info-icon mr2 fill-darkgrey"}} Member has multiple Stripe subscriptions
|
|
|
|
|
</div>
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#each this.subscriptions as |subscription|}}
|
|
|
|
|
<section class="gh-member-stripe-info pa5 pb0 pt4 flex flex-column flex-row-ns items-start justify-between">
|
|
|
|
|
<div class="flex items-start w-100">
|
|
|
|
|
<div class="flex-auto">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<table class="gh-member-stripe-table">
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<tr class="gh-member-stripe-row">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<td class="gh-member-stripe-label">Stripe subscription ID</td>
|
2020-12-10 17:33:12 +03:00
|
|
|
|
<td class="gh-member-stripe-data gh-member-stripe-id">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<a href="https://dashboard.stripe.com/subscriptions/{{subscription.id}}" target="_blank" rel="noopener"
|
|
|
|
|
data-tooltip="View on Stripe">
|
|
|
|
|
{{subscription.id}}
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<tr class="gh-member-stripe-row">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<td class="gh-member-stripe-label">Plan</td>
|
|
|
|
|
<td class="gh-member-stripe-data">
|
|
|
|
|
{{subscription.plan.nickname}}
|
|
|
|
|
<span class="midgrey-d1">({{subscription.amount}}
|
|
|
|
|
<span class="ttu">{{subscription.plan.currency}}</span>/{{subscription.plan.interval}})
|
|
|
|
|
</span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<tr class="gh-member-stripe-row">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<td class="gh-member-stripe-label">Status</td>
|
|
|
|
|
<td class="gh-member-stripe-data">
|
|
|
|
|
{{#if (and subscription.cancelAtPeriodEnd (not-eq subscription.status 'canceled'))}}
|
|
|
|
|
<span class="gh-member-cancels-on-label">Cancels on {{subscription.validUntil}}</span>
|
|
|
|
|
{{else}}
|
|
|
|
|
<span class="gh-member-stripe-status">{{subscription.statusLabel}}</span>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{#if subscription.cancellationReason}}
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<tr class="gh-member-stripe-row">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<td class="gh-member-stripe-label">Cancellation reason</td>
|
|
|
|
|
<td class="gh-member-stripe-data">
|
|
|
|
|
<span class="gh-member-stripe-cancellation-reason">{{subscription.cancellationReason}}</span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{/if}}
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<tr class="gh-member-stripe-row">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<td class="gh-member-stripe-label">Next renewal date</td>
|
|
|
|
|
<td class="gh-member-stripe-data">
|
|
|
|
|
{{#if subscription.cancelAtPeriodEnd}}
|
|
|
|
|
No further renewal
|
|
|
|
|
{{else}}
|
|
|
|
|
{{subscription.validUntil}}
|
|
|
|
|
{{/if}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
{{#if (eq subscription.status "active")}}
|
|
|
|
|
{{#if subscription.cancelAtPeriodEnd}}
|
|
|
|
|
<GhTaskButton
|
|
|
|
|
@buttonText="Continue subscription"
|
|
|
|
|
@successText=""
|
|
|
|
|
@task={{this.continueSubscription}}
|
|
|
|
|
@taskArgs={{subscription.id}}
|
2020-12-16 12:04:33 +03:00
|
|
|
|
@class="mt1 mb6 gh-btn gh-btn-icon gh-member-btn-cancelsub"
|
2020-12-10 14:38:38 +03:00
|
|
|
|
data-test-button="continue-subscription"
|
|
|
|
|
/>
|
|
|
|
|
{{else}}
|
|
|
|
|
<GhTaskButton
|
|
|
|
|
@buttonText="Cancel subscription"
|
|
|
|
|
@successText=""
|
|
|
|
|
@task={{this.cancelSubscription}}
|
|
|
|
|
@taskArgs={{subscription.id}}
|
|
|
|
|
@class="mt1 mb6 gh-btn gh-btn-icon gh-member-btn-cancelsub"
|
|
|
|
|
data-test-button="cancel-subscription"
|
|
|
|
|
/>
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{/if}}
|
2020-12-19 12:11:13 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
{{/each}}
|
|
|
|
|
{{else}}
|
2021-01-06 14:56:15 +03:00
|
|
|
|
|
2020-12-19 12:11:13 +03:00
|
|
|
|
<section class="gh-member-stripe-info pa5 pb0 pt4 flex flex-column flex-row-ns items-start justify-between">
|
|
|
|
|
<div class="flex items-start w-100">
|
|
|
|
|
<div class="flex-auto">
|
|
|
|
|
<table class="gh-member-stripe-table">
|
|
|
|
|
<tr class="gh-member-stripe-row">
|
|
|
|
|
<td class="gh-member-stripe-label">Stripe customer ID</td>
|
|
|
|
|
<td class="gh-member-stripe-data gh-member-stripe-id">
|
2021-01-06 14:56:15 +03:00
|
|
|
|
<a href="https://dashboard.stripe.com/customers/{{customer.id}}" target="_blank" rel="noopener" data-tooltip="View on Stripe">
|
|
|
|
|
{{customer.id}}
|
2020-12-19 12:11:13 +03:00
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr class="gh-member-stripe-row">
|
|
|
|
|
<td class="gh-member-stripe-label">Name</td>
|
|
|
|
|
<td class="gh-member-stripe-data">
|
2021-01-06 14:56:15 +03:00
|
|
|
|
{{#if customer.name}}
|
|
|
|
|
{{customer.name}}
|
2020-12-19 12:11:13 +03:00
|
|
|
|
{{else}}
|
|
|
|
|
<span class="midgrey-d1">No name</span>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr class="gh-member-stripe-row">
|
|
|
|
|
<td class="gh-member-stripe-label">Email</td>
|
|
|
|
|
<td class="gh-member-stripe-data gh-member-stripe-email">
|
2021-01-06 14:56:15 +03:00
|
|
|
|
{{#if customer.email}}
|
|
|
|
|
{{customer.email}}
|
2020-12-19 12:11:13 +03:00
|
|
|
|
{{else}}
|
|
|
|
|
<span class="midgrey-d1">No email</span>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr class="gh-member-stripe-row">
|
|
|
|
|
<td class="gh-member-stripe-label">Customer since</td>
|
|
|
|
|
<td class="gh-member-stripe-data">
|
2021-01-06 14:56:15 +03:00
|
|
|
|
{{#if customer.startDate}}
|
|
|
|
|
{{customer.startDate}}
|
2020-12-19 12:11:13 +03:00
|
|
|
|
{{else}}
|
|
|
|
|
<span class="midgrey-d1">No data</span>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
2020-12-10 14:38:38 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
2020-12-19 12:11:13 +03:00
|
|
|
|
{{/if}}
|
2020-12-10 14:38:38 +03:00
|
|
|
|
{{else}}
|
|
|
|
|
<div class="pa20">
|
|
|
|
|
<p class="ma0 pa0 tc midgrey">Member doesn't have an active Stripe subscription</p>
|
2019-10-07 15:26:32 +03:00
|
|
|
|
</div>
|
2020-12-10 14:38:38 +03:00
|
|
|
|
{{/if}}
|
|
|
|
|
<div class="pa5 pb0 pt4 flex flex-column justify-between bt b--whitegrey">
|
|
|
|
|
<GhFormGroup @classNames="gh-members-comped-checkbox">
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<div class="flex justify-between items-center gh-members-comped">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<div class="mr5">
|
|
|
|
|
<h4 class="gh-setting-title">Complimentary premium plan</h4>
|
|
|
|
|
<p class="gh-setting-desc">If enabled, member will be placed onto a free of charge premium subscription</p>
|
|
|
|
|
</div>
|
2020-12-16 12:04:33 +03:00
|
|
|
|
<div class="for-switch gh-members-comped-switch">
|
2020-12-10 14:38:38 +03:00
|
|
|
|
<label class="switch" for="comped-checkbox">
|
|
|
|
|
<Input @checked={{this.member.comped}} @type="checkbox" @id="comped-checkbox" @name="comped" />
|
|
|
|
|
<span class="input-toggle-component"></span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</GhFormGroup>
|
2020-01-28 07:27:19 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-12-10 14:38:38 +03:00
|
|
|
|
{{/if}}
|
2020-12-16 12:04:33 +03:00
|
|
|
|
</div>
|
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
|
|
<GhMemberActivityFeed @emailRecipients={{this.member.emailRecipients}} />
|
|
|
|
|
|
2020-12-10 14:38:38 +03:00
|
|
|
|
</div>
|