diff --git a/Neos.Neos/Classes/Controller/Frontend/NodeController.php b/Neos.Neos/Classes/Controller/Frontend/NodeController.php index f529f9f3844..d7ef5446465 100644 --- a/Neos.Neos/Classes/Controller/Frontend/NodeController.php +++ b/Neos.Neos/Classes/Controller/Frontend/NodeController.php @@ -35,7 +35,9 @@ use Neos\Flow\Security\Context as SecurityContext; use Neos\Flow\Session\SessionInterface; use Neos\Flow\Utility\Now; +use Neos\Neos\Domain\Model\RenderingMode; use Neos\Neos\Domain\Service\NodeSiteResolvingService; +use Neos\Neos\Domain\Service\RenderingModeService; use Neos\Neos\FrontendRouting\Exception\InvalidShortcutException; use Neos\Neos\FrontendRouting\Exception\NodeNotFoundException; use Neos\Neos\FrontendRouting\NodeAddress; @@ -108,6 +110,9 @@ class NodeController extends ActionController */ protected $nodeSiteResolvingService; + #[Flow\Inject] + protected RenderingModeService $renderingModeService; + /** * @param string $node Legacy name for backwards compatibility of route components * @throws NodeNotFoundException @@ -122,6 +127,9 @@ class NodeController extends ActionController */ public function previewAction(string $node): void { + // @todo add $renderingModeName as parameter and append it for successive links again as get parameter to node uris + $renderingMode = $this->renderingModeService->findByCurrentUser(); + $visibilityConstraints = VisibilityConstraints::frontend(); if ($this->privilegeManager->isPrivilegeTargetGranted('Neos.Neos:Backend.GeneralAccess')) { $visibilityConstraints = VisibilityConstraints::withoutRestrictions(); @@ -161,6 +169,8 @@ public function previewAction(string $node): void $this->handleShortcutNode($nodeAddress, $contentRepository); } + $this->view->setOption('renderingModeName', $renderingMode->name); + $this->view->assignMultiple([ 'value' => $nodeInstance, 'site' => $site, @@ -234,6 +244,8 @@ public function showAction(string $node, bool $showInvisible = false): void $this->handleShortcutNode($nodeAddress, $contentRepository); } + $this->view->setOption('renderingModeName', RenderingMode::FRONTEND); + $this->view->assignMultiple([ 'value' => $nodeInstance, 'site' => $site, diff --git a/Neos.Neos/Classes/Domain/Model/RenderingMode.php b/Neos.Neos/Classes/Domain/Model/RenderingMode.php new file mode 100644 index 00000000000..389f23c1f2f --- /dev/null +++ b/Neos.Neos/Classes/Domain/Model/RenderingMode.php @@ -0,0 +1,80 @@ + $options + */ + public function __construct( + public readonly string $name, + public readonly bool $isEdit, + public readonly bool $isPreview, + public readonly string $title, + public readonly string $fusionPath, + public readonly array $options + ) { + } + + /** + * Creates a rendering mode from its configuration + * + * @param string $modeName + * @param array $configuration + */ + public static function createFromConfiguration(string $modeName, array $configuration): RenderingMode + { + if ($modeName === RenderingMode::FRONTEND) { + throw new Exception( + 'Cannot instantiate system rendering mode "frontend" from configuration.' + . ' Please use RenderingMode::createFrontend().', + 1694802951840 + ); + } + $mode = new RenderingMode( + $modeName, + $configuration['isEditingMode'] ?? false, + $configuration['isPreviewMode'] ?? false, + $configuration['title'] ?? $modeName, + $configuration['fusionRenderingPath'] ?? '', + $configuration['options'] ?? [], + ); + return $mode; + } + + /** + * Creates the system integrated rendering mode 'frontend' + */ + public static function createFrontend(): RenderingMode + { + return new RenderingMode( + RenderingMode::FRONTEND, + false, + false, + 'Frontend', + '', + [] + ); + } +} diff --git a/Neos.Neos/Classes/Domain/Model/UserInterfaceMode.php b/Neos.Neos/Classes/Domain/Model/UserInterfaceMode.php deleted file mode 100644 index 50e24d461ad..00000000000 --- a/Neos.Neos/Classes/Domain/Model/UserInterfaceMode.php +++ /dev/null @@ -1,187 +0,0 @@ - - */ - protected $options; - - /** - * @return string - */ - public function getName() - { - return $this->name; - } - - /** - * @param string $name - * @return void - */ - public function setName($name) - { - $this->name = $name; - } - - /** - * @return boolean - */ - public function isPreview() - { - return $this->preview; - } - - /** - * @param boolean $preview - * @return void - */ - public function setPreview($preview) - { - $this->preview = $preview; - } - - /** - * @return boolean - */ - public function isEdit() - { - return $this->edit; - } - - /** - * @param boolean $edit - * @return void - */ - public function setEdit($edit) - { - $this->edit = $edit; - } - - /** - * @return string - */ - public function getFusionPath() - { - return $this->fusionPath; - } - - /** - * @param string $fusionPath - * @return void - */ - public function setFusionPath($fusionPath) - { - $this->fusionPath = $fusionPath; - } - - /** - * @return string - */ - public function getTitle() - { - return $this->title; - } - - /** - * @param string $title - * @return void - */ - public function setTitle($title) - { - $this->title = $title; - } - - /** - * @return array - */ - public function getOptions() - { - return $this->options; - } - - public function getOptionByPath(string $path): mixed - { - return ObjectAccess::getPropertyPath($this->options, $path); - } - - /** - * @param array $options - */ - public function setOptions(array $options): void - { - $this->options = $options; - } - - /** - * Creates an UserInterfaceMode object by configuration - * - * @param string $modeName - * @param array $configuration - */ - public static function createByConfiguration($modeName, array $configuration): self - { - $mode = new self(); - $mode->setName($modeName); - $mode->setPreview($configuration['isPreviewMode']); - $mode->setEdit($configuration['isEditingMode']); - $mode->setTitle($configuration['title']); - - if (isset($configuration['fusionRenderingPath'])) { - $mode->setFusionPath($configuration['fusionRenderingPath']); - } else { - $mode->setFusionPath(''); - } - - if (isset($configuration['options']) && is_array($configuration['options'])) { - $mode->setOptions($configuration['options']); - } - - return $mode; - } -} diff --git a/Neos.Neos/Classes/Domain/Service/RenderingModeService.php b/Neos.Neos/Classes/Domain/Service/RenderingModeService.php new file mode 100644 index 00000000000..5f63b9f313b --- /dev/null +++ b/Neos.Neos/Classes/Domain/Service/RenderingModeService.php @@ -0,0 +1,109 @@ + + */ + protected $editPreviewModes; + + /** + * @Flow\InjectConfiguration(path="userInterface.defaultEditPreviewMode", package="Neos.Neos") + * @var string + */ + protected $defaultEditPreviewMode; + + /** + * @var array + */ + private array $instances = []; + + /** + * Get the current rendering mode. + * Will return a live mode when not in backend. + */ + public function findByCurrentUser(): RenderingMode + { + if ( + $this->userService->getBackendUser() === null + || !$this->privilegeManager->isPrivilegeTargetGranted('Neos.Neos:Backend.GeneralAccess') + ) { + return RenderingMode::createFrontend(); + } + + $modeName = $this->userService->getUserPreference('contentEditing.editPreviewMode'); + if ($modeName === null) { + $modeName = $this->defaultEditPreviewMode; + } + + return $this->findByName($modeName); + } + + /** + * Returns the default rendering mode. + */ + public function findDefault(): RenderingMode + { + return $this->findByName($this->defaultEditPreviewMode); + } + + /** + * Finds an rendering mode by name. + */ + public function findByName(string $modeName): RenderingMode + { + if ($instance = $this->instances[$modeName] ?? null) { + return $instance; + } + if ($modeName === RenderingMode::FRONTEND) { + $this->instances[$modeName] = RenderingMode::createFrontend(); + } elseif (isset($this->editPreviewModes[$modeName])) { + $this->instances[$modeName] = RenderingMode::createFromConfiguration($modeName, $this->editPreviewModes[$modeName]); + } else { + throw new Exception( + 'The requested rendering mode "' . $modeName . '" is not configured.' + . ' Please make sure it exists as key in the Settings path "Neos.Neos.Interface.editPreviewModes".', + 1427715962 + ); + } + return $this->instances[$modeName]; + } +} diff --git a/Neos.Neos/Classes/Domain/Service/UserInterfaceModeService.php b/Neos.Neos/Classes/Domain/Service/UserInterfaceModeService.php deleted file mode 100644 index 9a56be5731e..00000000000 --- a/Neos.Neos/Classes/Domain/Service/UserInterfaceModeService.php +++ /dev/null @@ -1,121 +0,0 @@ - - */ - protected $editPreviewModes; - - /** - * @Flow\InjectConfiguration(path="userInterface.defaultEditPreviewMode", package="Neos.Neos") - * @var string - */ - protected $defaultEditPreviewMode; - - /** - * Get the current rendering mode (editPreviewMode). - * Will return a live mode when not in backend. - * - * @return UserInterfaceMode - */ - public function findModeByCurrentUser() - { - if ( - $this->userService->getBackendUser() === null - || !$this->privilegeManager->isPrivilegeTargetGranted('Neos.Neos:Backend.GeneralAccess') - ) { - return $this->findModeByName('live'); - } - - $editPreviewMode = $this->userService->getUserPreference('contentEditing.editPreviewMode'); - if ($editPreviewMode === null) { - $editPreviewMode = $this->defaultEditPreviewMode; - } - - return $this->findModeByName($editPreviewMode); - } - - /** - * Returns the default rendering mode. - * - * @return UserInterfaceMode - */ - public function findDefaultMode() - { - $mode = $this->findModeByName($this->defaultEditPreviewMode); - - return $mode; - } - - /** - * Finds an rendering mode by name. - * - * @param string $modeName - * @return UserInterfaceMode - * @throws Exception - */ - public function findModeByName($modeName) - { - if (isset($this->editPreviewModes[$modeName])) { - if ($this->editPreviewModes[$modeName] instanceof UserInterfaceMode) { - $mode = $this->editPreviewModes[$modeName]; - } elseif (is_array($this->editPreviewModes[$modeName])) { - $mode = UserInterfaceMode::createByConfiguration($modeName, $this->editPreviewModes[$modeName]); - $this->editPreviewModes[$modeName] = $mode; - } else { - throw new Exception( - 'The requested interface render mode "' . $modeName . '" is not configured correctly.' - . ' Please make sure it is fully configured.', - 1427716331 - ); - } - } else { - throw new Exception( - 'The requested interface render mode "' . $modeName . '" is not configured.' - . ' Please make sure it exists as key in the Settings path "Neos.Neos.Interface.editPreviewModes".', - 1427715962 - ); - } - - return $mode; - } -} diff --git a/Neos.Neos/Classes/Fusion/Helper/NodeHelper.php b/Neos.Neos/Classes/Fusion/Helper/NodeHelper.php index aeecab5d191..0b3826d337f 100644 --- a/Neos.Neos/Classes/Fusion/Helper/NodeHelper.php +++ b/Neos.Neos/Classes/Fusion/Helper/NodeHelper.php @@ -95,6 +95,11 @@ public function labelForNode(Node $node): NodeLabelToken return new NodeLabelToken($node); } + /** + * @param Node $node + * @return bool + * @deprecated Remove before Neos 9.0 !!! Use ${userInterfaceMode.isEdit || userInterfaceMode.isPreview} instead + */ public function inBackend(Node $node): bool { $contentRepository = $this->contentRepositoryRegistry->get($node->subgraphIdentity->contentRepositoryId); diff --git a/Neos.Neos/Classes/View/FusionExceptionView.php b/Neos.Neos/Classes/View/FusionExceptionView.php index c9b3c4262fb..5176990ff4b 100644 --- a/Neos.Neos/Classes/View/FusionExceptionView.php +++ b/Neos.Neos/Classes/View/FusionExceptionView.php @@ -35,9 +35,11 @@ use Neos\Fusion\Core\Runtime as FusionRuntime; use Neos\Fusion\Core\RuntimeFactory; use Neos\Fusion\Exception\RuntimeException; +use Neos\Neos\Domain\Model\RenderingMode; use Neos\Neos\Domain\Repository\SiteRepository; use Neos\Neos\Domain\Service\FusionService; use Neos\Neos\Domain\Service\SiteNodeUtility; +use Neos\Neos\Domain\Service\RenderingModeService; use Neos\Neos\FrontendRouting\SiteDetection\SiteDetectionResult; class FusionExceptionView extends AbstractView @@ -87,6 +89,9 @@ class FusionExceptionView extends AbstractView #[Flow\Inject] protected ContentRepositoryRegistry $contentRepositoryRegistry; + #[Flow\Inject] + protected RenderingModeService $userInterfaceModeService; + /** * @return string * @throws \Neos\Flow\I18n\Exception\InvalidLocaleIdentifierException @@ -199,7 +204,8 @@ protected function getFusionRuntime( $fusionConfiguration = $this->fusionService->createFusionConfigurationFromSite($site); $fusionGlobals = FusionGlobals::fromArray([ - 'request' => $this->controllerContext->getRequest() + 'request' => $this->controllerContext->getRequest(), + 'renderingModeName' => RenderingMode::FRONTEND ]); $this->fusionRuntime = $this->runtimeFactory->createFromConfiguration( $fusionConfiguration, diff --git a/Neos.Neos/Classes/View/FusionView.php b/Neos.Neos/Classes/View/FusionView.php index 8264acdd06e..e9c2ba43ab7 100644 --- a/Neos.Neos/Classes/View/FusionView.php +++ b/Neos.Neos/Classes/View/FusionView.php @@ -24,9 +24,11 @@ use Neos\Fusion\Core\Runtime; use Neos\Fusion\Core\RuntimeFactory; use Neos\Fusion\Exception\RuntimeException; +use Neos\Neos\Domain\Model\RenderingMode; use Neos\Neos\Domain\Repository\SiteRepository; use Neos\Neos\Domain\Service\FusionService; use Neos\Neos\Domain\Service\SiteNodeUtility; +use Neos\Neos\Domain\Service\RenderingModeService; use Neos\Neos\Exception; use Psr\Http\Message\ResponseInterface; @@ -49,6 +51,9 @@ class FusionView extends AbstractView #[Flow\Inject] protected SiteRepository $siteRepository; + #[Flow\Inject] + protected RenderingModeService $renderingModeService; + /** * @Flow\Inject * @var ContentRepositoryRegistry @@ -96,6 +101,11 @@ public function render(): string|ResponseInterface null, 'Flag to enable content caching inside Fusion (overriding the global setting).', 'boolean' + ], + 'renderingModeName' => [ + RenderingMode::FRONTEND, + 'Name of the user interface mode to use', + 'string' ] ]; @@ -229,8 +239,11 @@ protected function getFusionRuntime(Node $currentSiteNode) $site = $this->siteRepository->findSiteBySiteNode($currentSiteNode); $fusionConfiguration = $this->fusionService->createFusionConfigurationFromSite($site); + $renderingMode = $this->renderingModeService->findByName($this->getOption('renderingModeName')); + $fusionGlobals = FusionGlobals::fromArray([ - 'request' => $this->controllerContext->getRequest() + 'request' => $this->controllerContext->getRequest(), + 'renderingMode' => $renderingMode ]); $this->fusionRuntime = $this->runtimeFactory->createFromConfiguration( $fusionConfiguration, diff --git a/Neos.Neos/Configuration/Settings.yaml b/Neos.Neos/Configuration/Settings.yaml index 6becebb2d32..16a96abe01f 100755 --- a/Neos.Neos/Configuration/Settings.yaml +++ b/Neos.Neos/Configuration/Settings.yaml @@ -271,12 +271,8 @@ Neos: defaultEditPreviewMode: inPlace editPreviewModes: - # Live mode is only configured here for consistency. You shouldn't change it. - live: - isEditingMode: false - isPreviewMode: false - fusionRenderingPath: '' - title: Live + # the system integrated rendering mode "frontend" cannot be configured + # frontend: {} inPlace: isEditingMode: true isPreviewMode: false diff --git a/Neos.Neos/Resources/Private/Fusion/Override/GlobalCacheIdentifiers.fusion b/Neos.Neos/Resources/Private/Fusion/Override/GlobalCacheIdentifiers.fusion index 6e5417ac858..fc741bf792f 100644 --- a/Neos.Neos/Resources/Private/Fusion/Override/GlobalCacheIdentifiers.fusion +++ b/Neos.Neos/Resources/Private/Fusion/Override/GlobalCacheIdentifiers.fusion @@ -6,5 +6,5 @@ prototype(Neos.Fusion:GlobalCacheIdentifiers) { workspaceChain = ${Array.join(Array.keys(Neos.Caching.getWorkspaceChain(documentNode)), ',')} workspaceChain.@if.has = ${!!documentNode} - editPreviewMode = ${editPreviewMode} + renderingMode = ${renderingMode.name} } diff --git a/Neos.Neos/Resources/Private/Fusion/Prototypes/ContentCollection.fusion b/Neos.Neos/Resources/Private/Fusion/Prototypes/ContentCollection.fusion index 995e421037b..2cd673451ce 100644 --- a/Neos.Neos/Resources/Private/Fusion/Prototypes/ContentCollection.fusion +++ b/Neos.Neos/Resources/Private/Fusion/Prototypes/ContentCollection.fusion @@ -27,7 +27,7 @@ prototype(Neos.Neos:ContentCollection) < prototype(Neos.Fusion:Tag) { attributes { class.@process.collectionClass = ${Array.push(value, 'neos-contentcollection')} data-__neos-insertion-anchor = true - data-__neos-insertion-anchor.@if.onlyRenderInBackend = ${Neos.Node.inBackend(documentNode) && node.context.currentRenderingMode.edit} + data-__neos-insertion-anchor.@if.onlyRenderInBackend = ${renderingMode.isEdit} } # Doesn't need to be set, if the node is a content collection. diff --git a/Neos.Neos/Resources/Private/Fusion/Prototypes/ContentElementWrapping.fusion b/Neos.Neos/Resources/Private/Fusion/Prototypes/ContentElementWrapping.fusion index f8f6553aee6..395eb95b8c4 100644 --- a/Neos.Neos/Resources/Private/Fusion/Prototypes/ContentElementWrapping.fusion +++ b/Neos.Neos/Resources/Private/Fusion/Prototypes/ContentElementWrapping.fusion @@ -5,6 +5,7 @@ # prototype(Neos.Neos:ContentElementWrapping) { @class = 'Neos\\Neos\\Fusion\\ContentElementWrappingImplementation' + @if.inEditMode = ${renderingMode.isEdit} node = ${node} value = ${value} # Additional attributes in the form '': '' that will be rendered in the ContentElementWrapping diff --git a/Neos.Neos/Resources/Private/Fusion/Prototypes/Editable.fusion b/Neos.Neos/Resources/Private/Fusion/Prototypes/Editable.fusion index 9693c1d04dd..dcfc63bc311 100644 --- a/Neos.Neos/Resources/Private/Fusion/Prototypes/Editable.fusion +++ b/Neos.Neos/Resources/Private/Fusion/Prototypes/Editable.fusion @@ -12,10 +12,7 @@ prototype(Neos.Neos:Editable) < prototype(Neos.Fusion:Component) { renderer = Neos.Fusion:Case { editable { - // TODO: add props.node.context.currentRenderingMode.edit - // condition = ${Neos.Node.inBackend(props.node) && props.node.context.currentRenderingMode.edit} - condition = ${Neos.Node.inBackend(props.node)} - + condition = ${renderingMode.isEdit} renderer = Neos.Fusion:Tag { tagName = ${props.block ? 'div' : 'span'} content = ${q(props.node).property(props.property)} diff --git a/Neos.Neos/Resources/Private/Fusion/Prototypes/FallbackNode.fusion b/Neos.Neos/Resources/Private/Fusion/Prototypes/FallbackNode.fusion index c2126858f69..f82b10bca43 100644 --- a/Neos.Neos/Resources/Private/Fusion/Prototypes/FallbackNode.fusion +++ b/Neos.Neos/Resources/Private/Fusion/Prototypes/FallbackNode.fusion @@ -1,4 +1,4 @@ prototype(Neos.Neos:FallbackNode) < prototype(Neos.Neos:Content) { templatePath = 'resource://Neos.Neos/Private/Templates/FusionObjects/FallbackNode.html' - @if.onlyRenderInBackend = ${Neos.Node.inBackend(node)} + @if.onlyRenderInBackend = ${renderingMode.isEdit || renderingMode.isPreview} } diff --git a/Neos.Neos/Resources/Private/Fusion/Prototypes/Page.fusion b/Neos.Neos/Resources/Private/Fusion/Prototypes/Page.fusion index e519e01980d..59216dc14a1 100644 --- a/Neos.Neos/Resources/Private/Fusion/Prototypes/Page.fusion +++ b/Neos.Neos/Resources/Private/Fusion/Prototypes/Page.fusion @@ -64,7 +64,7 @@ prototype(Neos.Neos:Page) < prototype(Neos.Fusion:Http.Message) { tagName = 'body' omitClosingTag = true attributes.class.@process.addNeosBackendClass = ${Array.push(value, 'neos-backend')} - attributes.class.@process.addNeosBackendClass.@if.onlyRenderWhenNotInLiveWorkspace = ${Neos.Node.inBackend(documentNode)} + attributes.class.@process.addNeosBackendClass.@if.onlyRenderWhenNotInLiveWorkspace = ${renderingMode.isEdit} } # Content of the body tag. To be defined by the integrator. diff --git a/Neos.Neos/Resources/Private/Fusion/RootCase.fusion b/Neos.Neos/Resources/Private/Fusion/RootCase.fusion index cd1cf2a84f7..957c8d4fd18 100644 --- a/Neos.Neos/Resources/Private/Fusion/RootCase.fusion +++ b/Neos.Neos/Resources/Private/Fusion/RootCase.fusion @@ -17,9 +17,8 @@ root { editPreviewMode { @position = 'end 9996' - possibleEditPreviewModePath = ${documentNode.context.currentRenderingMode.fusionPath} - condition = ${Neos.Node.inBackend(documentNode) && this.possibleEditPreviewModePath != null && this.possibleEditPreviewModePath != ''} - renderPath = ${'/' + this.possibleEditPreviewModePath} + condition = ${(renderingMode.isEdit || renderingMode.isPreview) && renderingMode.fusionPath} + renderPath = ${'/' + renderingMode.fusionPath} } format {