assetsController = $assetsController; $this->pageRenderer = $pageRenderer; $this->wp = $wp; $this->automationStorage = $automationStorage; $this->registry = $registry; } public function render() { $this->assetsController->setupAutomationListingDependencies(); $this->pageRenderer->displayPage('automation.html', [ 'locale_full' => $this->wp->getLocale(), 'api' => [ 'root' => rtrim($this->wp->escUrlRaw($this->wp->restUrl()), '/'), 'nonce' => $this->wp->wpCreateNonce('wp_rest'), ], 'automationCount' => $this->automationStorage->getAutomationCount(), 'templates' => array_map( function(AutomationTemplate $template): array { return $template->toArray(); }, array_values($this->registry->getTemplates()) ), 'template_categories' => array_map( function (AutomationTemplateCategory $category): array { return [ 'slug' => $category->getSlug(), 'name' => $category->getName(), ]; }, array_values($this->registry->getTemplateCategories()) ), 'registry' => $this->buildRegistry(), 'context' => $this->buildContext(), ]); } private function buildRegistry(): array { $steps = []; foreach ($this->registry->getSteps() as $key => $step) { $steps[$key] = [ 'key' => $step->getKey(), 'name' => $step->getName(), 'args_schema' => $step->getArgsSchema()->toArray(), ]; } $subjects = []; foreach ($this->registry->getSubjects() as $key => $subject) { $subjects[$key] = [ 'key' => $subject->getKey(), 'name' => $subject->getName(), 'args_schema' => $subject->getArgsSchema()->toArray(), 'field_keys' => array_map(function ($field) { return $field->getKey(); }, $subject->getFields()), ]; } return [ 'steps' => $steps, 'subjects' => $subjects, ]; } private function buildContext(): array { $data = []; foreach ($this->registry->getContextFactories() as $key => $factory) { $data[$key] = $factory(); } return $data; } }