Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
layout_paragraphs
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
layout_paragraphs
Merge requests
!56
Issue
#3257758
: Error when displaying the node preview when layouts are nested
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3257758
: Error when displaying the node preview when layouts are nested
issue/layout_paragraphs-3257758:3257758-error-when-displaying
into
2.0.x
Overview
0
Commits
2
Pipelines
0
Changes
4
Merged
Justin Toupin
requested to merge
issue/layout_paragraphs-3257758:3257758-error-when-displaying
into
2.0.x
3 years ago
Overview
0
Commits
2
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Compare
2.0.x
version 1
b83712f8
3 years ago
2.0.x (base)
and
latest version
latest version
c67f17b1
2 commits,
3 years ago
version 1
b83712f8
1 commit,
3 years ago
4 files
+
108
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
src/Plugin/Field/FieldFormatter/LayoutParagraphsFormatter.php
+
12
−
10
Options
@@ -42,23 +42,25 @@ class LayoutParagraphsFormatter extends EntityReferenceRevisionsEntityFormatter
$entities
=
[];
foreach
(
$items
as
$delta
=>
$item
)
{
// Ignore items where no entity could be loaded in prepareView() and
// items that are not root level components.
if
(
!
empty
(
$item
->
_loaded
)
&&
LayoutParagraphsComponent
::
isRootComponent
(
$item
->
entity
))
{
// Ignore items where no entity could be loaded in prepareView().
if
(
!
empty
(
$item
->
_loaded
))
{
$entity
=
$item
->
entity
;
$access
=
$this
->
checkAccess
(
$entity
);
// Add the access result's cacheability, ::view() needs it.
$item
->
_accessCacheability
=
CacheableMetadata
::
createFromObject
(
$access
);
if
(
$access
->
isAllowed
())
{
// Set the entity in the correct language for display.
if
(
$entity
instanceof
TranslatableInterface
)
{
$entity
=
\Drupal
::
service
(
'entity.repository'
)
->
getTranslationFromContext
(
$entity
,
$langcode
);
}
// Add the referring item, in case the formatter needs it.
$entity
->
_referringItem
=
$items
[
$delta
];
$entities
[
$delta
]
=
$entity
;
// Only include root level components. Nested components are rendered
// by their parent respective containers.
// @see Drupal\layout_paragraphs\LayoutParagraphsRendererService.
if
(
LayoutParagraphsComponent
::
isRootComponent
(
$item
->
entity
))
{
// Set the entity in the correct language for display.
if
(
$entity
instanceof
TranslatableInterface
)
{
$entity
=
\Drupal
::
service
(
'entity.repository'
)
->
getTranslationFromContext
(
$entity
,
$langcode
);
}
$entities
[
$delta
]
=
$entity
;
}
}
}
}
Loading