You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Neos 9 we introduced an explicit renderingMode and replaced all workspace based inBackend checks. That makes it possible to set the renderingMode via the controller directly in the view.
Currently, we still fetch the renderingMode from the users' session, so the "Show Preview" will still render as edit mode instead of preview. (See todo in the NodeController)
Following new Neos 9 differences to 8.3 currently exist:
✅ the preview always redirects to the live workspace instead of the base workspace
The button "Open page in 'Foo' workspace" in the workspace module will use a preview editPreviewMode and evaluate renderingMode.isPreview to true and isEdit to false.
The button "Show Preview" in the content module will use a preview editPreviewMode and evaluate renderingMode.isPreview to true and isEdit to false.
Navigating inside a preview page will keep the preview renderingMode
The text was updated successfully, but these errors were encountered:
The "Show Preview" button in the content module, as well as the "Open page in 'Foo' workspace" in the workspace module does not work as executed.
History
/neos/preview?node=...
endpoint was introduced to avoid cache flooding of the show-action's/my-page@user-admin;language=en_US
syntax.renderingMode
and replaced all workspace basedinBackend
checks. That makes it possible to set therenderingMode
via the controller directly in the view.renderingMode
semantic correctinBackend
#4396Current state
Currently, we still fetch the
renderingMode
from the users' session, so the "Show Preview" will still render asedit
mode instead of preview. (See todo in the NodeController)Following new Neos 9 differences to 8.3 currently exist:
BackendController::redirectToAction
andNodeInfoHelper::createRedirectToNode
to behave again like Neos 8.3These issues also exits in Neos 8.3 and should be fixable via the new
renderingMode
:renderingMode
Acceptance criteria
renderingMode.isPreview
totrue
andisEdit
to false.renderingMode.isPreview
totrue
andisEdit
to false.The text was updated successfully, but these errors were encountered: