. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Statistics\Google; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Registry; use Fisharebest\Webtrees\Statistics\Service\ColorService; use function count; use function view; /** * A chart showing the top used media types. */ class ChartMedia { private ColorService $color_service; /** * @param ColorService $color_service */ public function __construct(ColorService $color_service) { $this->color_service = $color_service; } /** * 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 { $color_from ??= 'ffffff'; $color_to ??= '84beff'; $data = [ [ I18N::translate('Type'), I18N::translate('Total') ], ]; $element = Registry::elementFactory()->make('OBJE:FILE:FORM:TYPE'); $values = $element->values(); foreach ($media as $type => $count) { $data[] = [ $values[$element->canonical($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(), ]); } }