@clavis/lfr-js-portlet-bootstrapper
v0.3.0
Published
Parses a Liferay Page and returns all JS Portlets ID's and its HTML
Downloads
3
Readme
Idea
The idea behind this tool is that you can download a Liferay page with JS portlets and remvoing the initialization.
It prepares a Liferay page for webpack.
npx lfr-js-portlet-bootstrapper
or
npx lfr-js-portlet-bootstrapper liferay.portlet.config.js
What does it?
It generates a public folder with the following content:
- index.html (Indexpage for Webpack)
- parameters.json (data all JS portlet calls)
How it works
It scans for the following attribute on a HTML-tag:
- If the script finds selector it copies the id and generates a json file.
Development with Webpack (Recommended)
Why Webpack and not Liferay Blade Deploy?
There are some drawbacks with the Liferay development and Vue. When you use the webpack you work around this problems.
The mains advantages are:
- No caching
- Build needs 1 sec
- Hotreload (reloads the page when build is finished)
- Vue Devtools are working
- Good Errormessages
How to set it up
- create a liferay.portlet.config.js in the root of the module.
- Add
auth.token.check.enabled=false
to the portal-ext.properties - Configure your http to redirect to webpack
Example for liferay.portal.config.js
module.exports = {
protocol: 'http',
host: 'localhost',
originPort: 8080,
port: 3000,
remove: {
script: [],
selector: '[id^=js-portlet-] + script'
},
initCall: {
selector: '[id^=js-portlet-] + script',
id: 'portletElementId'
}
}
But there is also the possiblity to only give the missing values and your and the default config get merged
How to update your index.html
npx liferay-js-portlet-bootstrapper
or
npx liferay-js-portlet-bootstrapper liferay.portlet.config.js