. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Statistics\Google; use function count; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Module\ModuleThemeInterface; use Fisharebest\Webtrees\Statistics\Service\CenturyService; use Fisharebest\Webtrees\Statistics\Service\ColorService; use Fisharebest\Webtrees\Tree; use Illuminate\Database\Capsule\Manager as DB; use stdClass; /** * A chart showing birth by century. */ class ChartBirth { /** * @var Tree */ private $tree; /** * @var ModuleThemeInterface */ private $theme; /** * @var CenturyService */ private $century_service; /** * @var ColorService */ private $color_service; /** * Constructor. * * @param Tree $tree */ public function __construct(Tree $tree) { $this->tree = $tree; $this->theme = app(ModuleThemeInterface::class); $this->century_service = new CenturyService(); $this->color_service = new ColorService(); } /** * Returns the related database records. * * @return stdClass[] */ private function queryRecords(): array { $query = DB::table('dates') ->selectRaw('ROUND((d_year + 49) / 100) AS century') ->selectRaw('COUNT(*) AS total') ->where('d_file', '=', $this->tree->id()) ->where('d_year', '<>', 0) ->where('d_fact', '=', 'BIRT') ->whereIn('d_type', ['@#DGREGORIAN@', '@#DJULIAN@']) ->groupBy(['century']) ->orderBy('century'); return $query->get()->all(); } /** * Create a chart of birth places. * * @param string|null $color_from * @param string|null $color_to * * @return string */ public function chartBirth(string $color_from = null, string $color_to = null): string { $chart_color1 = (string) $this->theme->parameter('distribution-chart-no-values'); $chart_color2 = (string) $this->theme->parameter('distribution-chart-high-values'); $color_from = $color_from ?? $chart_color1; $color_to = $color_to ?? $chart_color2; $data = [ [ I18N::translate('Century'), I18N::translate('Total') ], ]; foreach ($this->queryRecords() as $record) { $data[] = [ $this->century_service->centuryName((int) $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('Births by century'), 'data' => $data, 'colors' => $colors, ] ); } }