busiest-day-of-week.blade.php
1 year ago
busiest-time-of-day.blade.php
1 year ago
layout.blade.php
1 year ago
line-chart.blade.php
1 year ago
map.blade.php
1 year ago
new-sessions.blade.php
1 year ago
pie-chart.blade.php
1 year ago
quick-stats.blade.php
1 year ago
recent-conversions.blade.php
1 year ago
recent-views.blade.php
1 year ago
top-ten.blade.php
1 year ago
pie-chart.blade.php
27 lines
| 1 | @php /** @var \IAWP\Env $env */ @endphp |
| 2 | @php /** @var \IAWP\Overview\Modules\Module $module */ @endphp |
| 3 | @php /** @var bool $is_loaded */ @endphp |
| 4 | @php /** @var ?array $dataset */ @endphp |
| 5 | |
| 6 | @extends('overview.modules.layout') |
| 7 | |
| 8 | @section('empty') |
| 9 | <p class="no-data-message"><span class="dashicons dashicons-chart-bar"></span> {{ esc_html__('No data found in this date range.', 'independent-analytics') }}</p> |
| 10 | @endsection |
| 11 | |
| 12 | @section('content') |
| 13 | @if($is_loaded) |
| 14 | <div data-controller="pie-chart" |
| 15 | class="module-chart module-pie-chart" |
| 16 | data-pie-chart-data-value="{{ json_encode($dataset) }}" |
| 17 | data-pie-chart-locale-value="{{ esc_attr(get_bloginfo('language')) }}" |
| 18 | > |
| 19 | <canvas data-pie-chart-target="canvas"></canvas> |
| 20 | </div> |
| 21 | @else |
| 22 | <div class="loading-message"> |
| 23 | <img src="<?php echo esc_url(iawp_url_to('img/loading.svg')) ?>" /> |
| 24 | <p>{{ esc_html__('Loading data...', 'independent-analytics') }}</p> |
| 25 | </div> |
| 26 | @endif |
| 27 | @endsection |