xref: /webtrees/resources/views/statistics/other/charts/pie.phtml (revision 39c990acdae56e02eaa7ff99ee9fcf5395c13d20)
188de55fdSRico Sonntag<?php
288de55fdSRico Sonntagdeclare(strict_types=1);
388de55fdSRico Sonntag
4dd7dd2a1SRico Sonntaguse Fisharebest\Webtrees\I18N;
5dd7dd2a1SRico Sonntag
688de55fdSRico Sonntag$id = 'google-chart-' . bin2hex(random_bytes(8));
788de55fdSRico Sonntag?>
888de55fdSRico Sonntag
9dd7dd2a1SRico Sonntag<?php if (count($data) === 1): ?>
10*39c990acSGreg Roach    <?= I18N::translate('This information is not available.') ?>
11dd7dd2a1SRico Sonntag<?php else: ?>
12dd7dd2a1SRico Sonntag
1388de55fdSRico Sonntag    <?= view('statistics/other/chart-setup') ?>
1488de55fdSRico Sonntag
1588de55fdSRico Sonntag    <div id="<?= $id ?>"></div>
1688de55fdSRico Sonntag
1788de55fdSRico Sonntag    <script>
1888de55fdSRico Sonntag
1988de55fdSRico Sonntag    var callbackPieChart = function () {
2088de55fdSRico Sonntag        google.charts.setOnLoadCallback(function () {
2188de55fdSRico Sonntag            drawPieChart(
2288de55fdSRico Sonntag                '<?= $id ?>',
2388de55fdSRico Sonntag                <?= json_encode($data) ?>,
2488de55fdSRico Sonntag                <?= json_encode($colors) ?>,
2588de55fdSRico Sonntag                '<?= $title ?>',
2688de55fdSRico Sonntag                '<?= $labeledValueText ?? 'value' ?>'
2788de55fdSRico Sonntag            );
2888de55fdSRico Sonntag        });
2988de55fdSRico Sonntag
3088de55fdSRico Sonntag        $(window).resize(function () {
3188de55fdSRico Sonntag            drawPieChart(
3288de55fdSRico Sonntag                '<?= $id ?>',
3388de55fdSRico Sonntag                <?= json_encode($data) ?>,
3488de55fdSRico Sonntag                <?= json_encode($colors) ?>,
3588de55fdSRico Sonntag                '<?= $title ?>',
3688de55fdSRico Sonntag                '<?= $labeledValueText ?? 'value' ?>'
3788de55fdSRico Sonntag            );
3888de55fdSRico Sonntag        });
3988de55fdSRico Sonntag    };
4088de55fdSRico Sonntag
4188de55fdSRico Sonntag    if (
4288de55fdSRico Sonntag        document.readyState === "complete" ||
4388de55fdSRico Sonntag        (document.readyState !== "loading" && !document.documentElement.doScroll)
4488de55fdSRico Sonntag    ) {
4588de55fdSRico Sonntag        callbackPieChart();
4688de55fdSRico Sonntag    } else {
4788de55fdSRico Sonntag        document.addEventListener("DOMContentLoaded", callbackPieChart);
4888de55fdSRico Sonntag    }
4988de55fdSRico Sonntag
5088de55fdSRico Sonntag    </script>
51dd7dd2a1SRico Sonntag<?php endif; ?>
52