-
-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FEATURE: Implement EditPreviewModes for Neos 9 with the new CR
Since nodes have no context in Neos 9 the edit preview mode cannot be decided by asking the node any more. This change renovates the `UserInterfaceMode` and the `UserInterfaceModeService` to use php 8 value objects. The UserInterfaceMode object is then added as globalValue `userInterfaceMode` to the `Neos\Neos\FusionView`. The uses of the following fusion expressions have to be adjusted as follows: - `node.context.live` - `!renderingMode.isEdit` - `node.context.currentRenderingMode.edit` - `renderingMode.isEdit` - `node.context.currentRenderingMode.preview` - `renderingMode.isPreview` - `node.context.currentRenderingMode.name` - `renderingMode.name` Resolves: #4086
- Loading branch information
Showing
15 changed files
with
219 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Neos.Neos package. | ||
* | ||
* (c) Contributors of the Neos Project - www.neos.io | ||
* | ||
* This package is Open Source Software. For the full copyright and license | ||
* information, please view the LICENSE file which was distributed with this | ||
* source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Neos\Neos\Domain\Model; | ||
|
||
use Neos\Utility\ObjectAccess; | ||
|
||
/** | ||
* Describes the mode in which the Neos interface is rendering currently, | ||
* mainly distinguishing between edit and preview modes currently. | ||
*/ | ||
class RenderingMode | ||
{ | ||
/** | ||
* @param array<string,mixed> $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 an UserInterfaceMode object by configuration | ||
* | ||
* @param string $modeName | ||
* @param array<string,mixed> $configuration | ||
*/ | ||
public static function createFromConfiguration(string $modeName, array $configuration): RenderingMode | ||
{ | ||
$mode = new RenderingMode( | ||
$modeName, | ||
$configuration['isEditingMode'] ?? false, | ||
$configuration['isPreviewMode'] ?? false, | ||
$configuration['title'] ?? $modeName, | ||
$configuration['fusionRenderingPath'] ?? '', | ||
$configuration['options'] ?? [], | ||
); | ||
return $mode; | ||
} | ||
|
||
/** | ||
* Creates the live User interface mode | ||
*/ | ||
public static function createFrontend(): RenderingMode | ||
{ | ||
return new RenderingMode( | ||
'frontend', | ||
false, | ||
false, | ||
'Frontend', | ||
'', | ||
[] | ||
); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.