When to Use UI.Frontend in AEM
Benefits
Folder Structure in UI.Frontend
1. UI.Frontend
This is the main folder created by default when you set up an AEM project. It’s where all your front-end code lives.
2. Dist Folder
The dist folder is important. When you build your project (using commands like npm run prod), your CSS and JS files are compiled and placed here. From dist, these files move to ui.apps/clientlibs/(your clientlibs name) and then get exported to the AEM server.
Pro Tip: If you delete the dist folder, don’t worry! Just run the build command again, and it will recreate the folder with all your compiled SCSS and JS files.
3. ProjectName Folder
Inside the src folder, you can create a separate folder (like projectName) to keep all your SCSS, JS, and assets organized. Alternatively, you can use the default components and resources folders. In the screenshot, I’ve created a separate folder for better organization.
4. JS Folder
The js folder is where you store all your JavaScript files. If you’re using packages like Bootstrap, you can either:
- Install them via npm and reference them in package.json.
- Download the files manually and place them in js/global/. Both approaches have their benefits:
- npm approach: Easier to manage and update packages.
- From resources: background: url("../resources/images/dotted-pattern.svg");
- From DAM: background-image: url(/content/dam/your-folder/img/common/Plus.svg);
6. Styles Folder
The styles folder is where your SCSS files live. You can organize it further:
- styles/base: For global files like _variables.scss or package files like _bootstrap.min.scss.
- styles/components: For component-specific SCSS files.
You can create more folders inside styles as needed. (Points 6, 7, and 8 from the Main SS are addressed here.)
7. main.js + main.scss
These are the entry points for your project:
- In main.scss, import all your SCSS files. Start with package files (if using downloaded packages) and then your custom SCSS files.
- In main.js, import main.scss at the top, followed by all your JS files.
Examples
Important Configuration Files
- clintlib.config.js
This file is a configuration file for AEM Client Libraries (ClientLibs), using aem-clientlib-generator to manage JavaScript, CSS, and other assets for Adobe Experience Manager (AEM). Let’s go through it step by step:
2. webpack.common.js
webpack.common.js is used to store shared configurations like entry points, output, and loaders.
Conclusion
In conclusion, using UI.Frontend in AEM helps organize and manage front-end code efficiently. It ensures fast loading through optimized, minified CSS and JS files, and maintains a clear folder structure for scalability. Proper configuration files like `clintlib.config.js` and `webpack.common.js` further streamline the build process, making it easier to maintain and update the site.