2019-12-17 13:29:26 +03:00
|
|
|
<div class="flex justify-between mb6 items-stretch gh-members-chart-wrapper">
|
|
|
|
|
|
|
|
{{!-- Chart title/filter graph --}}
|
|
|
|
<div class="flex-auto bg-white br3 shadow-1 bg-grouped-table mr6 gh-members-chart-box">
|
|
|
|
<div class="flex justify-between items-center gh-members-chart-header">
|
|
|
|
<h2 class="f-small ttu midgrey fw5 mb0">Total members</h2>
|
|
|
|
<div class="view-actions">
|
2020-05-22 13:38:50 +03:00
|
|
|
<div class="gh-contentfilter gh-contentfilter-menu gh-contentfilter-type">
|
2020-01-15 16:53:51 +03:00
|
|
|
<PowerSelect
|
|
|
|
@selected={{this.selectedRange}}
|
|
|
|
@options={{this.availableRange}}
|
2020-01-23 11:16:15 +03:00
|
|
|
@searchEnabled={{false}}
|
2020-01-15 16:53:51 +03:00
|
|
|
@onChange={{action "changeDateRange"}}
|
2020-05-18 00:35:53 +03:00
|
|
|
@triggerComponent="gh-power-select/trigger"
|
2020-01-15 16:53:51 +03:00
|
|
|
@triggerClass="gh-contentfilter-menu-trigger"
|
|
|
|
@dropdownClass="gh-contentfilter-menu-dropdown gh-members-chart-dropdown"
|
2020-01-23 11:16:15 +03:00
|
|
|
@matchTriggerWidth={{false}}
|
2020-01-15 16:53:51 +03:00
|
|
|
data-test-type-select="true"
|
|
|
|
as |range|
|
|
|
|
>
|
|
|
|
{{range.name}}
|
|
|
|
</PowerSelect>
|
2019-12-17 13:29:26 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="gh-members-chart-container">
|
2020-01-16 18:14:03 +03:00
|
|
|
<EmberChart @type="LineWithLine" @options={{this.subData.chartData.options}} @data={{this.subData.chartData.data}} @height={{300}} />
|
2019-12-17 13:29:26 +03:00
|
|
|
</div>
|
|
|
|
<div class="flex justify-between pa4 pt0 pb2 nt1">
|
2020-01-16 18:14:03 +03:00
|
|
|
<span class="f8 midlightgrey">{{this.subData.startDateLabel}}</span>
|
2019-12-17 13:29:26 +03:00
|
|
|
<span class="f8 midlightgrey">Today</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{!-- Summary --}}
|
|
|
|
<div class="flex flex-column justify-between gh-members-chart-summary bg-white br3 shadow-1 bg-grouped-table">
|
|
|
|
<div class="flex-auto flex flex-column justify-center items-start pa4 bb b--whitegrey">
|
|
|
|
<h3 class="f-small ttu midgrey fw5">Total Members</h3>
|
2020-01-16 18:14:03 +03:00
|
|
|
<div class="gh-members-chart-summary-data">{{this.subData.totalSubs}}</div>
|
2019-12-17 13:29:26 +03:00
|
|
|
</div>
|
|
|
|
<div class="flex-auto flex flex-column justify-center items-start pa4 bb b--whitegrey">
|
2020-01-16 18:14:03 +03:00
|
|
|
{{#if (eq this.range "all-time")}}
|
2019-12-17 13:29:26 +03:00
|
|
|
<h3 class="f-small ttu midgrey fw5">All time signups</h3>
|
|
|
|
{{else}}
|
2020-01-16 18:14:03 +03:00
|
|
|
<h3 class="f-small ttu midgrey fw5">Signed up in the last {{this.range}} days</h3>
|
2019-12-17 13:29:26 +03:00
|
|
|
{{/if}}
|
2020-01-16 18:14:03 +03:00
|
|
|
<div class="gh-members-chart-summary-data">{{this.subData.totalSubsInRange}}</div>
|
2019-12-17 13:29:26 +03:00
|
|
|
</div>
|
|
|
|
<div class="flex-auto flex flex-column justify-center items-start pa4">
|
|
|
|
<h3 class="f-small ttu midgrey fw5">Signed up today</h3>
|
2020-01-16 18:14:03 +03:00
|
|
|
<div class="gh-members-chart-summary-data">{{this.subData.totalSubsToday}}</div>
|
2019-12-17 13:29:26 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|