mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
35 lines
1.2 KiB
Handlebars
35 lines
1.2 KiB
Handlebars
|
{{#if this.hasMultipleTiers }}
|
||
|
<div class="gh-dashboard5-select">
|
||
|
<PowerSelect
|
||
|
@selected={{this.selectedModeOption}}
|
||
|
@options={{this.modeOptions}}
|
||
|
@searchEnabled={{false}}
|
||
|
@onChange={{this.onSwitchMode}}
|
||
|
@triggerComponent="gh-power-select/trigger"
|
||
|
@triggerClass="gh-contentfilter-menu-trigger"
|
||
|
@dropdownClass="gh-contentfilter-menu-dropdown"
|
||
|
@matchTriggerWidth={{false}}
|
||
|
as |option|
|
||
|
>
|
||
|
{{#if option.name}}{{option.name}}{{else}}<span class="red">Unknown option</span>{{/if}}
|
||
|
</PowerSelect>
|
||
|
</div>
|
||
|
{{/if}}
|
||
|
|
||
|
<Dashboard::v5::Parts::Metric
|
||
|
@label="Paid mix" />
|
||
|
|
||
|
<div class="gh-dashboard5-chart" {{did-insert this.loadCharts}}>
|
||
|
{{#if this.loading}}
|
||
|
<div class="gh-dashboard5-chart-loading" style={{html-safe (concat "height: " this.chartHeight "px;")}}/>
|
||
|
{{else}}
|
||
|
<div class="gh-dashboard5-chart-container">
|
||
|
<EmberChart
|
||
|
@type={{this.chartType}}
|
||
|
@data={{this.chartData}}
|
||
|
@options={{this.chartOptions}}
|
||
|
@height={{this.chartHeight}} />
|
||
|
</div>
|
||
|
{{/if}}
|
||
|
</div>
|