Template namespaces#16
Open
thekid wants to merge 8 commits into
Open
Conversation
Member
Author
|
Is there a way we can remove the hardcoded vendor path in the following? ['layout' => $this->environment->path('vendor/example/layout-lib/src/main/handlebars')]Maybe something like |
Member
Author
|
If a library wants to use another library, it would need to know the namespace under which this other library was imported into the application. For example: new TemplatesFrom($this->environment->path('src/main/handlebars'), [
'layout' => $this->environment->path('vendor/example/layout-lib/src/main/handlebars'),
'common' => $this->environment->path('vendor/example/common-lib/src/main/handlebars'),
]);Is there a way we can make this work without relying on documentation stating something along the lines of this library expects the First idea: by using the unique new TemplatesFrom($this->environment->path('src/main/handlebars'), [
'example/layout-lib' => $this->environment->path('vendor/example/layout-lib/src/main/handlebars'),
'example/common-lib' => $this->environment->path('vendor/example/common-lib/src/main/handlebars'),
]);
// Or maybe even shorter, see question above about removing hardcoded "vendor" path...
new TemplatesFrom($this->environment->path('src/main/handlebars'), [
new Library('example/layout-lib'),
new Library('example/common-lib'),
]);...and inside Handlebars: ...potentially including a namespace helper to shorten the names, e.g.: |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request adds support for organizing templates into namespaces. For example, an application could use a library providing the layout namespace.
Example
The application uses the TemplatesFrom class instead of directly passing the file path to the Handlebars class:
The default.handlebars template in the layout library:
The home.handlebars templates references this via the
namespace:namenotation: