This library provides a set of Angular components and services for creating consistent and configurable application layouts, including headers, footers, side navigation, and content areas. It offers features such as dynamic navigation, external application integration, and customizable themes. The library also includes directives for extending header and footer areas with custom content.
Add the package to your workspace:
yarn add @rxap/layout
Install peer dependencies:
yarn add @angular/animations @angular/cdk @angular/common @angular/core @angular/material @angular/router @rxap/browser-utilities @rxap/config @rxap/data-source @rxap/environment @rxap/material-directives @rxap/ngx-pub-sub @rxap/ngx-theme @rxap/pattern @rxap/utilities rxjs
Execute the init generator:
yarn nx g @rxap/layout:init
Create a new file layout.routes.ts
in the app
folder. This file will contain all child routes that should be loaded within the layout component.
import { LayoutComponent, provideLayout } from '@rxap/layout';
const ROUTES: Route[] = [
{
path: '',
component: LayoutComponent,
children: [ ],
providers: [ provideLayout() ],
},
];
Import the layout routes into the app.routes.ts
file.
export const appRoutes: Route[] = [
{
path: '',
loadChildren: () => import('./layout.routes'),
},
{
path: '**',
redirectTo: '',
},
];
Create a new file app.navigation.ts
in the app
folder. This file will contain the navigation items that should be displayed in the layout component.
export const APP_NAVIGATION: () => NavigationWithInserts = () => [];
Provide the app navigation in the layout routes:
import {
LayoutComponent,
ProvideNavigationConfig,
withNavigationService,
} from '@rxap/layout';
import { APP_NAVIGATION } from './app.navigation';
const ROUTES: Route[] = [
{
path: '',
component: LayoutComponent,
children: [ ],
providers: [
provideLayout(
withNavigationConfig(APP_NAVIGATION),
),
],
},
];
A navigation item represents a single item in the navigation sidebar. Each item has the required properties label
and routerLink
. The label
property is the text that should be displayed in the sidebar. The routerLink
property is the path that should be navigated to when the item is clicked.
const item: NavigationItem = {
label: 'Home',
routerLink: '/',
};
With the children
property, a navigation item can have child items. The child items are displayed in a dropdown menu when the parent item is clicked.
const item: NavigationItem = {
label: 'Home',
routerLink: '/',
children: [
{
label: 'Child',
routerLink: '/child',
},
],
};
With the icon
property, the item can be assigned an icon. The icon is displayed to the left of the label. If the navigation sidebar is collapsed, only the icon is displayed.
const item: NavigationItem = {
label: 'Home',
routerLink: '/',
icon: { icon: 'home' },
};
With the status
property, a injectable token, class or function can be assigned to the item. The object must have the method isVisible
which returns a boolean. If the method returns false
, the item is not displayed in the navigation sidebar.
@Injectable()
class SetNavStatus {
isVisible(item: NavigationItem): boolean {
return false;
}
}
const item: NavigationItem = {
label: 'Home',
routerLink: '/',
status: SetNavStatus,
};
A navigation divider item is a horizontal line that separates navigation items. It is used to group items in the navigation sidebar. It is required to set the property divider
to true
. With the optional property title
, a title can be defined that is displayed below the divider.
const item: NavigationDividerItem = {
divider: true,
title: 'Group',
};
A navigation insert item is a placeholder for a navigation item that should be inserted into the navigation sidebar.
The item is used to define where a dynamic navigation should be inserted. The insert
property is the key that is used
identify the insert item. The insert
property is required.
const item: NavigationInsertItem = {
insert: 'insert-key',
};
The header is composed of the components from left to right: AppsButtonComponent, SettingsButtonComponent and UserProfileIconComponent.
The apps buttons allow for a navigation between different applications. To configure the apps button, the config path
navigation.apps
must be set with an array of object with the property title
and ether routerLink
or href
. If the
property href
is set, the link is opened in a new tab. If the property routerLink
the router is used to navigate.
{
"navigation": {
"apps": [
{
"title": "App 1",
"routerLink": ["/", "app1"]
},
{
"title": "App 2",
"href": "https://app2.com"
}
]
}
}
If the application is in production mode, the current
localId
is appended to the url defined in thehref
property.
It is possible to add custom items to the settings menu. This custom item can be a component or a configuration object.
The action function is called when the item is clicked. It is possible to use the inject
function to inject services.
import {
LayoutComponent,
ProvideNavigationConfig,
withNavigationService,
} from '@rxap/layout';
import { APP_NAVIGATION } from './app.navigation';
const ROUTES: Route[] = [
{
path: '',
component: LayoutComponent,
children: [ ],
providers: [
provideLayout(
withNavigationConfig(APP_NAVIGATION),
withSettingsMenuItems(
{
label: 'Custom Item',
icon: { icon: 'home' },
action: () => inject(MatDialog).open(MyCustomDialogComponent),
}
)
),
],
},
];
If a component is provided ensure the component template uses the mat-menu-item
component:
<button mat-menu-item>My Custom Item</button>
import {
LayoutComponent,
ProvideNavigationConfig,
withNavigationService,
} from '@rxap/layout';
import { APP_NAVIGATION } from './app.navigation';
const ROUTES: Route[] = [
{
path: '',
component: LayoutComponent,
children: [ ],
providers: [
provideLayout(
withNavigationConfig(APP_NAVIGATION),
withSettingsMenuItems(
MyCustomMenuItemComponent
)
),
],
},
];
...
With the directive rxapFooter
it is possible to define a dynamic footer. When the directive is used on a <ng-template>
in a component,
that is rendered in the layout component, the template is rendered in the footer of the layout component.
<mat-card>
...
</mat-card>
<ng-template rxapFooter>
<button mat-button>A button in the layout footer</button>
</ng-template>
Initialize the package in the workspace
nx g @rxap/layout:init