mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
38a26e8760
refs: https://github.com/TryGhost/Team/issues/1531 - charts now have basic working loading states, could be improved though - trying out staff picks description and layout tweaks - lots of small design tweaks based on feedback
41 lines
1.5 KiB
Handlebars
41 lines
1.5 KiB
Handlebars
<div class="gh-dashboard5-minichart gh-dashboard5-breakdown">
|
|
<div class="gh-dashboard5-chart" {{did-insert this.loadCharts}}>
|
|
{{#if this.loading}}
|
|
<div class="gh-dashboard5-chart-loading">
|
|
<div class="gh-loading-spinner"></div>
|
|
</div>
|
|
{{else}}
|
|
<div class="gh-dashboard5-chart-container">
|
|
<div class="gh-dashboard5-chart-box">
|
|
<EmberChart
|
|
@type={{this.chartType}}
|
|
@data={{this.chartData}}
|
|
@options={{this.chartOptions}}
|
|
@height={{110}} />
|
|
</div>
|
|
|
|
<div id="gh-dashboard5-breakdown-tooltip" class="gh-dashboard5-tooltip">
|
|
<div class="gh-dashboard5-tooltip-label">
|
|
-
|
|
</div>
|
|
<div class="gh-dashboard5-tooltip-value">
|
|
<div class="gh-dashboard5-tooltip-value-1"></div>
|
|
<div class="gh-dashboard5-tooltip-value-2"></div>
|
|
<div class="gh-dashboard5-tooltip-value-3"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
|
|
<div class="gh-dashboard5-data">
|
|
<Dashboard::v5::Parts::Metric
|
|
@label={{this.chartTitle}} />
|
|
|
|
<div class="gh-dashboard5-legend">
|
|
<div class="gh-dashboard5-legend-item">New</div>
|
|
<div class="gh-dashboard5-legend-item">Canceled</div>
|
|
</div>
|
|
</div>
|
|
</div>
|