Closed eric-burel closed 4 years ago
Any brain familiar with Webpack welcome. We could also tag those component with a specific syntax to allow static analysis, like naming them <@Datatable>
for example
A first iteration could be dropping "Components" population at runtime and replace it by an additional build step https://github.com/VulcanJS/Vulcan/issues/2406 This way "Components.DatatableHeader" could be defined correctly (and maybe overridden) before the app would even start.
Now tracked on https://github.com/VulcanJS/vulcan-npm/issues/17
Dream goal
Goal is to replace the dynamic Component replacing pattern by explicit exports that would "magically" replace components.
Imagine a component structured like this:
You may want to replace the Header, and the Content with your own components:
Then you consume them like this, business as usual:
It's probably undoable with Meteor, but it could prove doable with Webpack. The tricky part is that you want to override only certain component, that are themselves nested into other replaceable component. You get a kind of recursive/circular import issue.
What's doable today
This pattern is already implementable with one level of imports like this:
but it's not enough to handle more deeply nested component replacement, for complex components like DataTable or SmartForm that have multiple layers of replaceable component.
Possible implementation
Step 1: detecting "magic" replacement
First step is defining a syntax for magic components.
Possibilities:
Prefixing components, eg
<@Datatable>
: can be detected component by component but it's not very clean"Magic import syntax", eg
import {Ā ComponentToReplace } from "vulcan/magic-component"
/export * from "vulcan/magic-components"
: detect that we want to import "magic components" or override thema special file name for files that exports component override
explicitely declaring dependencies between components eg
export { component: Datatable, dependsOnMagic: ["DatatableContents"] }
Step 2: build
The difficulty is to handle deeply nested replaceable component.
Datatable
is defined with default componentsDatatableFooter
is overridden by userDatatableContents
with overriddenDatatableFooter
exportDatatable
, which depends onDatatableContents
which contains an overridden export.The build would probably look like a recursive structure or a tree, where we rebuild everything until all nested components are replaced by user's overrides.
@EloyID @juliensl that's for you Material UI users