57ab42d4ca
Recently, Discourse introduced the concept of wrapper plugin outlets, which enables plugins and theme-components lo replace the wrapped content: ``` <PluginOutlet @name="wrapper-outlet-example" @outletArgs={{hash model=@model}}> <div>Overridable content</div> </PluginOutlet> ``` This commit adds automatic outlets that are placed `before` and `after wrapper plugin outlets. Connectors them can leverage these new automatic outlets to mount content at these positions, which greatly enhances the use case of the wrapper outlets. These new auto outlets can be used in two ways: - Using the standard folder base structure: the folder name that identifies the outlet in which the connector must be mounted must add the suffixes `__before`or `__after` to the outlet name. For the outlet in the example above, the connector should be placed into the `.../connectors/wrapper-outlet-example__before`or `.../connectors/wrapper-outlet-example__after`folders. - Using API calls: this commit also introduces two new plugin APIs, `api.renderBeforeWrapperOutlet` and `renderAfterWrapperOutlet`. These new APIs can be used in the same way as `api.renderInOutlet`but will only work for wrapper outlets. For the outlet above when using these new APIs alongside the gjs file format, one could define a component to be placed before the content of the outlet like: ``` api.renderBeforeWrapperOutlet('wrapper-outlet-example', <template>Hello from before the content</template>); ``` or after: ``` api.renderAfterWrapperOutlet('wrapper-outlet-example', <template>Hello from after the content</template>); ``` |
||
---|---|---|
.. | ||
ADMIN-QUICK-START-GUIDE.md | ||
AUTHORS.md | ||
CHANGELOG-JAVASCRIPT-PLUGIN-API.md | ||
DEVELOPER-ADVANCED.md | ||
DEVELOPMENT-OSX-NATIVE.md | ||
INSTALL-cloud.md | ||
INSTALL-email.md | ||
INSTALL.md | ||
PLUGINS.md | ||
SECURITY.md | ||
TESTING.md | ||
TROUBLESHOOTING.md | ||
code-of-conduct.md |