Skip to content
Snippets Groups Projects
Commit 5f8153be authored by catch's avatar catch
Browse files

Merge branch '3496835-render-children-in' into '11.x'

Render regions in fibers

See merge request !10787
parents 78ec304c d41db014
No related branches found
No related tags found
No related merge requests found
Pipeline #385402 failed
Pipeline: drupal

#385405

    ......@@ -455,8 +455,47 @@ protected function doRender(&$elements, $is_root_call = FALSE) {
    // has an empty #children attribute, render the children now. This is the
    // same process as Renderer::render() but is inlined for speed.
    if ((!$theme_is_implemented || isset($elements['#render_children'])) && empty($elements['#children'])) {
    $fibers = [];
    // @todo use revolt.
    foreach ($children as $key) {
    $elements['#children'] .= $this->doRender($elements[$key]);
    $fibers[$key] = new \Fiber(fn() => $this->doRender($elements[$key]));
    }
    $rendered_children = [];
    $iterations = 0;
    while (count($fibers) > 0) {
    foreach ($fibers as $key => $fiber) {
    try {
    if (!$fiber->isStarted()) {
    $fiber->start();
    }
    elseif ($fiber->isSuspended()) {
    $fiber->resume();
    }
    // If the Fiber hasn't terminated by this point, move onto the next
    // placeholder, we'll resume this Fiber again when we get back here.
    if (!$fiber->isTerminated()) {
    // If we've gone through the placeholders once already, and they're
    // still not finished, then start to allow code higher up the stack
    // to get on with something else.
    if ($iterations) {
    $fiber = \Fiber::getCurrent();
    if ($fiber !== NULL) {
    $fiber->suspend();
    }
    }
    continue;
    }
    $rendered_children[$key] = $fiber->getReturn();
    unset($fibers[$key]);
    }
    catch (\Throwable $e) {
    throw $e;
    }
    }
    $iterations++;
    }
    foreach ($children as $key) {
    $elements['#children'] .= $rendered_children[$key];
    }
    $elements['#children'] = Markup::create($elements['#children']);
    }
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment