This library provides a flexible and customizable dialog component for your Angular applications. Users can integrate the dialog component using Angular services or selectors with ease. Below are the features, usage instructions, and integration details
To use the Dialog component, you can install the entire RUC library or just this specific component.
npm install @uxpractice/ruc-lib
If you only need the Dialog component
npm install @ruc-lib/dialog
To use the dialog component in your project, follow the integration guidelines provided in the documentation. Customize the dialog as per your requirements by adjusting the configuration options mentioned below.
- Import
ViewContainerRef
from@angular/core
. - Import
DialogService
from"@ruc-lib/dialog"
. - Inject
DialogService
andViewContainerRef
into your component constructor. - Call open method of
DialogService
withViewContainerRef
and dialog data. - Subscribe to
afterClosed
to get the result after dialog closure.
Example:
import { Component } from "@angular/core";
import { ViewContainerRef } from "@angular/core";
// For Complete Library
import { DialogService } from "@uxpractice/ruc-lib";
// For Individual package
import { DialogService } from "@ruc-lib/dialog";
@Component({
selector: "app-my-component",
templateUrl: "./my-component.component.html"
})
export class MyComponent {
constructor(
public dialogService: DialogService,
private viewContainerRef: ViewContainerRef
) {}
openDialog(data: any): void {
this.dialogService.open(this.viewContainerRef, data)
?.afterClosed()
.subscribe((res: any) => {
console.log(res);
});
}
}
- Import
DialogModule
intoapp.module.ts
file.import { RuclibDialogModule } from '@ruc-lib/dialog';
ORimport { RuclibDialogModule } from '@ uxpractice /ruc-lib/dialog';
- Use the dialog selector in your HTML file.
- Handle input and output bindings accordingly.
Example: in app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
// For complete Library
import { RuclibDialogModule } from '@uxpractice/ruc-lib/dialog';
// For Individual package
import { RuclibDialogModule } from '@ruc-lib/dialog';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
RuclibDialogModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
in app.component.html
<uxp-ruclib-dialog
(rucEvent)="passEvent($event)"
[buttonText]="ButtonLabelDialog"
[rucInputData]="inputObjectDataDialog"
[customTheme]="customTheme">
</uxp-ruclib-dialog>
Input | Type | Description |
---|---|---|
rucInputData |
DialogDefaultConfig |
The main configuration object for the dialog. |
customTheme |
string |
An optional CSS class for custom theming. |
buttonText |
string |
Text for the action buttons. |
Output | Type | Description |
---|---|---|
rucEvent |
any |
Event emitted from the dialog. |
This is the main configuration object for the Dialog component.
Property | Type | Description |
---|---|---|
type | 'alert' | 'prompt' | 'confirm' | Type of dialog |
title | string | Title of the dialog. |
content | string | Content of the dialog. |
buttons | DialogBoxButton[] | Array of buttons. Ex: [{ name: 'Yes', color: '', behaviour: 'Submit', btnType:'stroked' }] |
id | number | Unique identifier for the dialog. |
displayCloseButton | boolean | Whether to display the close button. |
movableDialog | boolean | Whether the dialog is movable. |
hasBackdrop | boolean | Whether to display a backdrop. |
closeOnClickAndEscape | boolean | Whether to close the dialog on click. |
fullScreenDialog | boolean | Whether the dialog is full screen. |
direction | string | Direction of the dialog. Ex, 'center' |
header | boolean | Whether to display the header. |
width | string | Width of the dialog. |
height | string | Height of the dialog. |
maxHeight | string | Maximum height of the dialog. |
maxWidth | string | Maximum width of the prompt. |
autoFocus | boolean | For prompt, to focus the first input element. |
autoComplete | boolean | Whether to enable auto-completion. |
autoCompleteList | any | List of auto-complete options. |
theme | string | Theme for the Prompt. |
defaultPromptValue | string | Default value for the prompt input. |
contentAlignment | string | Alignment of the content. |
customComponentName | any | Custom component name. |
contentAlignDirection | string | Direction of the content alignment. |
buttonsPosition | 'left' | 'right' | Position of the buttons. |
showButtonsVertically | boolean | Whether to show buttons vertically. |
backdropClass | string | CSS class for the backdrop. |
btnType | string | Type of the button. |
customTheme | string | Custom theme for the dialog. |
Here's an example of how to configure the Dialog component in your component's TypeScript file.
import { Component } from '@angular/core';
// For Complete Library
import {DialogDefaultConfig} from '@uxplib/ruc-lib/dialog';
// For Individual package
import {DialogDefaultConfig} from '@ruc-lib/dialog';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
})
export class AppComponent {
inputObjectDataDialog: DialogDefaultConfig = {
title: 'RUC Dialog',
content: 'This is RUC Dialog Content.',
buttons: [{ name: 'Yes', color: '', behaviour: 'Submit', btnType: 'stroked' }],
id: 1,
type: 'confirm',
displayCloseButton: true,
movableDialog: true,
hasBackdrop: false,
closeOnClickAndEscape: true,
fullScreenDialog: false,
direction: 'center',
header: true,
width: '350px',
height: '',
maxHeight: '',
maxWidth: '',
autoFocus: true,
theme: '',
defaultPromptValue: 'Enter Name',
contentAlignDirection: 'left', // ToDO
buttonsPosition: 'left',
showButtonsVertically: false,
backdropClass: 'backdropClass',
customTheme: 'custom-theme'
}
passEvent(event: any) {
console.log('Dialog Event:', event);
}
}
Contributions are welcome! Feel free to open issues or pull requests for any enhancements or fixes.
Thank you for choosing the Dialog Component Library. If you have any feedback or suggestions, please let us know!