- Issue created by @justafish
- Merge request !5032Issue #3394815: Show default functionality is missing for single directory components → (Closed) created by justafish
- last update
over 1 year ago 30,414 pass, 1 fail - First commit to issue fork.
- Status changed to Needs review
over 1 year ago 9:38pm 11 November 2023 - 🇵🇱Poland wotnak
Added props default value functionality implementation in https://git.drupalcode.org/project/drupal/-/merge_requests/5353. It passes test modified by justafish.
I implemented it in `sdc_additional_context` twig function that is executed in ComponentNodeVisitor and already used to add things to component context. The implementation loops through component props and if a given prop has a default value set and doesn't already have a value in the current context, the default value is added to the context (which makes it available in the component template). - Status changed to Needs work
over 1 year ago 2:40pm 17 November 2023 - 🇺🇸United States smustgrave
Can the issue summary be updated please, left some TBD if they need to be filled in, can put NA if it doesn't apply to this issue.
- 🇺🇸United States FrankieD3
Any updates on this functionality? If this has still yet to be implemented, the documentation should be altered to reflect the current state of the module so not to mislead developers.
- Status changed to RTBC
12 months ago 4:25pm 15 April 2024 - 🇵🇪Peru marvil07
@justafish, thanks for opening this issue, and providing a clear test change to reproduce it 👍
@wotnak, thanks for implementing a fix! 👍
Apart from the test fix, I also verified with another use-case on a custom theme that the default value is being used.
@smustgrave, I have updated the issue summary with a few more details.
Marking as RTBC.
- 🇮🇳India pravesh_poonia
@wotnak, changes are looking fine to me
@justafish, you can check and close the issue - First commit to issue fork.
- Status changed to Needs work
12 months ago 10:38am 16 April 2024 - e0ipso Can Picafort
This has come up in the past in Slack. See this thread. Screenshooting for convenience:
In that thread @pdureau mentions:
Prop default values are not automatically injected into the template and that's a good thing IMHO. They can be used by the SDC ecosystem to build admin pages forms, where they will be the form element default value. You can set a default value in the template with the
default()
filter.I tend to agree. The JSON-Schema specification allows the
default
keyword, and we support JSON-Schema. However, I don't think the intention for it should be to inject data into the template. I think the correct use for it is to inform the application of a default value when building forms, or generating synthetic example renderings of a component, etc.While we could do what the IS seeks, we would face significant challenges down the road. Imagine when we need to translate the default value, or if the default value is a site URL and the site is installed in a subdirectory, or the default date should follow the site configured time zone, ...
In general, imagine that we need to use dynamically processed data as the default (which I think is a common use case). For that we need a place to declare the default with access to a runtime. The current recommendation is to use Twig to do so. This makes sense for me because:
- It is the place where the data is provided to the component. That be via mapping fields from a content type, providing a hard-coded value, ... or doing any of those but with a defauls. Ex:
content.field_foo|default('my default'|t)
. - It is a place that can access the necessary APIs for those dynamic behaviors mentioned above.
- It is a common established practice in Twig that front-end developers already know.
However, I acknowledge that there is confusion around this. The fact that it has come up more than once is an indicator. I wonder if adding a section in the official FAQs is the way to fix this.
- It is the place where the data is provided to the component. That be via mapping fields from a content type, providing a hard-coded value, ... or doing any of those but with a defauls. Ex:
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
We need to update https://www.drupal.org/docs/develop/theming-drupal/using-single-director... → for sure as that's what as caused some of the confusion.
- 🇺🇸United States agentrickard Georgia (US)
I tend to agree with the assessment that this is a documentation/schema feature and not a means to inject data into Twig, which would make this a documentation issue.
I wonder if this part:
generating synthetic example renderings of a component
is something that might be implemented by modules like Storybook. If so, we could open a similar issue there. - 🇫🇷France pdureau Paris
The JSON-Schema specification allows the default keyword, and we support JSON-Schema. However, I don't think the intention for it should be to inject data into the template. I think the correct use for it is to inform the application of a default value when building forms, or generating synthetic example renderings of a component, etc.
🙏
The current recommendation is to use Twig to do so.
As a side note, using
default()
filter is a better practice than the collapsed (?:
) or null (??
) ternary operator:- The filter provides a more readable way of doing so.
- The very low precedence of this operator may be surprising and confusing: https://twig.symfony.com/doc/3.x/templates.html#expressions
- fabpot, the Twig project leader, consider default filter as better solution: https://github.com/twigphp/Twig/issues/134
- This filter is shared with Jinja, the industry standard for such templating language, but the operators are not
- 🇺🇸United States FrankieD3
I feel as though the updated text "Provide a default value. It isn't used in Twig template." does not include enough context. If I were looking at this with fresh eyes, I would be thinking to myself, "then where is it being used?"
An example of a Twig template containing the use of the
default()
filter would be useful somewhere within the documentation. Something to that effect of{% set text = text|default('Placeholder'|t) %}
.