. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Statistics\Google; use Fisharebest\Webtrees\DB; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Statistics\Service\CenturyService; use Fisharebest\Webtrees\Statistics\Service\ColorService; use Fisharebest\Webtrees\Tree; use Illuminate\Support\Collection; use stdClass; use function count; use function view; /** * A chart showing the deaths by century. */ class ChartDeath { private Tree $tree; private CenturyService $century_service; private ColorService $color_service; /** * @param CenturyService $century_service * @param ColorService $color_service * @param Tree $tree */ public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tree) { $this->century_service = $century_service; $this->color_service = $color_service; $this->tree = $tree; } /** * Returns the related database records. * * @return Collection */ private function queryRecords(): Collection { return DB::table('dates') ->selectRaw('ROUND((d_year + 49) / 100, 0) AS century') ->selectRaw('COUNT(*) AS total') ->where('d_file', '=', $this->tree->id()) ->where('d_year', '<>', 0) ->where('d_fact', '=', 'DEAT') ->whereIn('d_type', ['@#DGREGORIAN@', '@#DJULIAN@']) ->groupBy(['century']) ->orderBy('century') ->get() ->map(static function (object $row): object { return (object) [ 'century' => (int) $row->century, 'total' => (float) $row->total, ]; }); } /** * Create a chart of death places. * * @param string|null $color_from * @param string|null $color_to * * @return string */ public function chartDeath(string|null $color_from = null, string|null $color_to = null): string { $color_from ??= 'ffffff'; $color_to ??= '84beff'; $data = [ [ I18N::translate('Century'), I18N::translate('Total') ], ]; foreach ($this->queryRecords() as $record) { $data[] = [ $this->century_service->centuryName($record->century), $record->total ]; } $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1); return view('statistics/other/charts/pie', [ 'title' => I18N::translate('Deaths by century'), 'data' => $data, 'colors' => $colors, 'language' => I18N::languageTag(), ]); } }