. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Statistics\Google; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Module\ModuleThemeInterface; use Fisharebest\Webtrees\Registry; use Fisharebest\Webtrees\Statistics\Service\ColorService; use function app; use function count; /** * A chart showing the top used media types. */ class ChartMedia { /** * @var ModuleThemeInterface */ private $theme; /** * @var ColorService */ private $color_service; /** * Constructor. */ public function __construct() { $this->theme = app(ModuleThemeInterface::class); $this->color_service = new ColorService(); } /** * Create a chart of media types. * * @param array $media The list of media types to display * @param string|null $color_from * @param string|null $color_to * * @return string */ public function chartMedia( array $media, 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('Type'), I18N::translate('Total') ], ]; $values = Registry::elementFactory()->make('OBJE:FILE:FORM:TYPE')->values(); foreach ($media as $type => $count) { $data[] = [ $values[$type] ?? $type, $count ]; } $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1); return view('statistics/other/charts/pie', [ 'title' => null, 'data' => $data, 'colors' => $colors, 'language' => I18N::languageTag(), ]); } }