-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add Extension System for StructureResolver #100
base: 0.10
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,26 @@ | ||||||||||||||||||
<?php | ||||||||||||||||||
|
||||||||||||||||||
declare(strict_types=1); | ||||||||||||||||||
|
||||||||||||||||||
/* | ||||||||||||||||||
* This file is part of Sulu. | ||||||||||||||||||
* | ||||||||||||||||||
* (c) Sulu GmbH | ||||||||||||||||||
* | ||||||||||||||||||
* This source file is subject to the MIT license that is bundled | ||||||||||||||||||
* with this source code in the file LICENSE. | ||||||||||||||||||
*/ | ||||||||||||||||||
|
||||||||||||||||||
namespace Sulu\Bundle\HeadlessBundle\Content\StructureResolver; | ||||||||||||||||||
|
||||||||||||||||||
use Sulu\Component\Content\Compat\StructureInterface; | ||||||||||||||||||
|
||||||||||||||||||
interface StructureResolverExtensionInterface | ||||||||||||||||||
{ | ||||||||||||||||||
public function getKey(): string; | ||||||||||||||||||
|
||||||||||||||||||
Comment on lines
+20
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The getKey can not be used as we will have different provider providing a breadcrumb depending on instance of structure.
Suggested change
|
||||||||||||||||||
public function resolve( | ||||||||||||||||||
StructureInterface $requestedStructure, | ||||||||||||||||||
string $locale | ||||||||||||||||||
): mixed; | ||||||||||||||||||
Comment on lines
+22
to
+25
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We would more go here with if ($structure is not page structure) {
return [];
}
return [
'breadcrumbs' => $this->navigationMapper->getBreadcrumb($structure->getUuid()),
]; and the ARticleBreadcrumbProvider (living in the article bundle): if ($structure is not article structure) {
return [];
}
$parent = $structure->getPageTreeParent();
if (!$parent) {
return [];
}
return [
'breadcrumbs' => $this->navigationMapper->getBreadcrumb($parentarent()->getUuid()),
];
Suggested change
|
||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -366,6 +366,31 @@ export default HeadlessTemplatePage; | |||||||||||||||||||||||||||||||||||||||||||||||||||
Finally, you can build your frontend application by executing `npm install` and `npm run build` in the `assets/headless` | ||||||||||||||||||||||||||||||||||||||||||||||||||||
directory. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
### Extending the StructureResolver | ||||||||||||||||||||||||||||||||||||||||||||||||||||
To add more data to the json that is returned for a site, you can extend the StructureResolver by registering an service with the tag `sulu_headless.structure_resolver_extension`. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+369
to
+370
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some markdown viewers require a empty line after a headline to work correctly.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||
use Sulu\Bundle\HeadlessBundle\Content\StructureResolver\StructureResolverExtensionInterface; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
class MyStructureExtension implements StructureResolverExtensionInterface | ||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
public function getKey(): string | ||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
return 'myKey'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
public function resolve( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
StructureInterface $requestedStructure, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
string $locale | ||||||||||||||||||||||||||||||||||||||||||||||||||||
): mixed { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
return [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
'foo' => 'bar', | ||||||||||||||||||||||||||||||||||||||||||||||||||||
'fruits' => Fruits::getArray($locale), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
'webspaceKey' => $requestedStructure->getWebspaceKey() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+377
to
+391
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
## ❤️ Support and Contributions | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As written in the other comments we need to go here with a
array_merge/array_replace
as there will be multiple extensions adding a breadcrumb for example.