. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Statistics\Google; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Statistics\AbstractGoogle; use Fisharebest\Webtrees\Statistics\Helper\Century; use Fisharebest\Webtrees\Tree; use Illuminate\Database\Capsule\Manager as DB; /** * */ class ChartDivorce extends AbstractGoogle { /** * @var Century */ private $centuryHelper; /** * Constructor. * * @param Tree $tree */ public function __construct(Tree $tree) { parent::__construct($tree); $this->centuryHelper = new Century(); } /** * Returns the related database records. * * @return \stdClass[] */ private function queryRecords(): array { $query = DB::table('dates') ->selectRaw('ROUND((d_year - 50) / 100) AS century') ->selectRaw('COUNT(*) AS total') ->where('d_file', '=', $this->tree->id()) ->where('d_year', '<>', 0) ->where('d_fact', '=', 'DIV') ->whereIn('d_type', ['@#DGREGORIAN@', '@#DJULIAN@']) ->groupBy(['century']) ->orderBy('century'); return $query->get()->all(); } /** * General query on divorces. * * @param string|null $color_from * @param string|null $color_to * * @return string */ public function chartDivorce(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->centuryHelper->centuryName((int) $record->century), $record->total ]; } $colors = $this->interpolateRgb($color_from, $color_to, \count($data) - 1); return view( 'statistics/other/charts/pie', [ 'title' => I18N::translate('Divorces by century'), 'data' => $data, 'colors' => $colors, ] ); } }