Cli Freemarker Prototypes
Package for @magnolia/cli-create-component-plugin and @magnolia/cli-create-page-plugin that provides Freemarker component and page prototypes.
Usage
To use these prototypes with @magnolia/cli-create-component-plugin or @magnolia/cli-create-page-plugin, follow these steps:
1) Running the Command:
If the framework is not configured in mgnl.config.js, running:
``
bash
npm run mgnl -- create-component Hero
`
will prompt you to choose a framework. The selected framework will then be saved in mgnl.config.js.
2) Configuring the Framework:
Alternatively, you can predefine the framework in mgnl.config.js to use it automatically:
`
javascript
import CreatePagePlugin from "@magnolia/cli-create-page-plugin";
import CreateComponentPlugin from "@magnolia/cli-create-component-plugin";
export default {
// Other configurations...
plugins: [
new CreatePagePlugin({
framework: '@magnolia/cli-freemarker-prototypes@',
// Additional properties...
}),
new CreateComponentPlugin({
framework: '@magnolia/cli-freemarker-prototypes@',
// Additional properties...
}),
]
};
``
Available prototypes
$3
-
basic: variant contains a component in dialogs folder with example properties
-
empty: variant does not contain any component in dialogs folder and dialog: \_\_dialog\_\_ is missing in .ftl file
-
with-js-model: variant contains a component in dialogs folder with example properties and contains an example .js file which can be used in .ftl file
$3
-
basic: variant contains a page in dialogs folder with example properties
-
empty: variant does not contain any page in dialogs folder and dialog: \_\_dialog\_\_ is missing in .ftl file
-
with-js-model: variant contains a page in dialogs folder with example properties and contains an example .js file which can be used in .ftl file
Prototype Documentation
For detailed documentation of the Freemarker Prototypes, please refer to
Prototype DocumentationPlugins Documentation
For more information on using the plugins with these prototypes, refer to the
Create Page and
Create Component plugin documentation.