storage = $this->entityTypeManager()->getStorage('block'); $this->renderer = $renderer; $this->currentPath = $currentPath; $this->router = $router; $this->pathProcessor = $pathProcessor; $this->currentRouteMatch = $currentRouteMatch; $this->container = $container; } /** * {@inheritdoc} */ public static function create(ContainerInterface $container) { return new static( $container->get('renderer'), $container->get('path.current'), $container->get('router'), $container->get('path_processor_manager'), $container->get('current_route_match'), $container ); } /** * Loads and renders the facet blocks via AJAX. * * @param \Symfony\Component\HttpFoundation\Request $request * The current request object. * * @return \Drupal\Core\Ajax\AjaxResponse * The ajax response. * * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException * Thrown when the view was not found. */ public function respond(Request $request) { $response = new AjaxResponse(); // Rebuild the request and the current path, needed for facets. $path = $request->request->get('link'); $blocks = $request->request->get('blocks'); // Make sure we are not updating blocks multiple times. $blocks = array_unique($blocks); if (empty($path) || empty($blocks)) { throw new NotFoundHttpException('No facet link or facet blocks found.'); } $new_request = Request::create($path); $request_stack = new RequestStack(); $processed = $this->pathProcessor->processInbound($new_request->getPathInfo(), $new_request); $this->currentPath->setPath($processed); $request->attributes->add($this->router->matchRequest($new_request)); $this->currentRouteMatch->resetRouteMatch(); $request_stack->push($new_request); $this->container->set('request_stack', $request_stack); // Build the facets blocks found for the current request and update. foreach ($blocks as $block_id => $block_selector) { $block_entity = $this->storage->load($block_id); if ($block_entity) { // Render a block, then add it to the response as a replace command. $block_view = $this->entityTypeManager ->getViewBuilder('block') ->view($block_entity); $block_view = (string) $this->renderer->renderPlain($block_view); $response->addCommand(new ReplaceCommand($block_selector, $block_view)); } } return $response; } }