Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lbgm/tiny-dialog
Tiny Javascript dialog box made with TypeScript,
https://github.com/lbgm/tiny-dialog
alert angular dialog javascript nodejs prompt typescript vuejs
Last synced: 4 days ago
JSON representation
Tiny Javascript dialog box made with TypeScript,
- Host: GitHub
- URL: https://github.com/lbgm/tiny-dialog
- Owner: lbgm
- License: mit
- Created: 2021-10-15T11:18:25.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-27T12:03:06.000Z (about 1 year ago)
- Last Synced: 2024-09-19T16:17:30.755Z (about 2 months ago)
- Topics: alert, angular, dialog, javascript, nodejs, prompt, typescript, vuejs
- Language: TypeScript
- Homepage:
- Size: 7.81 KB
- Stars: 12
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
- [TinyDialog](#tinydialog)
- [Description](#description)
- [Using on Node Js](#using-on-node-js)
- [Example with HTML](#example-with-html)
- [Docs](#docs)
- [Types \& Interfaces](#types--interfaces)
- [Options](#options)
- [Prototype public functions](#prototype-public-functions)
- [ClassName](#classname)# TinyDialog
Tiny Javascript dialog box made with TypeScript## Description
Tiny, flexible and featured javascript dialog box wrote in TypeScript.
You can add it to any web project with Angular, Vue, React, and others Front-End Framework.
Fully compatible with FontAwesome Icons.## Using on Node Js
```sh
npm install @lbgm/tiny-dialog
``````ts
// import style only once
import "@lbgm/tiny-dialog/style"import { TinyDialog } from "@lbgm/tiny-dialog";
const mydialog = new TinyDialog({
closeIcon: true,
ctrlOpen: false,
timer: "ok|36000",
icon: "far fa-grin-beam",
title: "",
content: "Are you confirming your participation for the Friday event?",
buttons: {
ok: {
className: "as-button btn-accept",
text: ' Confirm',
action: function () {
// do something
}
},
cancel: {
hide: false,
className: "as-button btn-cancel",
text: ' Refuse',
action: function () {
// do something
}
}
},
onContentReady: function () {
// do something
},
onOpenBefore: function () {
// do something
},
onOpen: function () {
// do something
},
onAction: function () {
// do something
},
onClose: function () {
// do something
},
onDestroy: function () {
// do something
}
});
```## Example with HTML
- clone and build by running `npm run compile`;
- Copy `build/src`(`c.js|js.map`, `index.js|js.map`) into your destination.```html
const mydialog = new TinyDialog({
closeIcon: true,
ctrlOpen: false,
timer: "ok|36000",
title: "",
content: "Are you confirming your participation for the Friday event?",
buttons: {
ok: {
className: "as-button btn-accept",
text: '<i class="fa fa-check-circle"></i> Confirm',
action: function () {
// do something
}
},
cancel: {
hide: false,
className: "as-button btn-cancel",
text: '<i class="fa fa-times"></i> Refuse',
action: function () {
// do something
}
}
},
});```
# Docs
## Types & Interfaces
```ts
type TinyDialogContent = string | HTMLElement | Node | Node[];
export type TinyDialogButton = {
hide?: boolean;
className?: string;
text?: TinyDialogContent;
action: (...args: any[]) => any;
};
export type TinyDialogButtons = {
[id_button: string]: TinyDialogButton;
};
export interface TinyDialogArg {
closeIcon?: boolean;
ctrlOpen?: boolean;
timer?: string;
title?: string;
content?: TinyDialogContent;
icon?: string;
buttons?: TinyDialogButtons;
onContentReady?: (...args: any[]) => any;
onOpenBefore?: (...args: any[]) => any;
onOpen?: (...args: any[]) => any;
onAction?: (...args: any[]) => any;
onClose?: (...args: any[]) => any;
onDestroy?: (...args: any[]) => any;
}
export declare class TinyDialog {
#private;
arg: TinyDialogArg;
$$content: HTMLDivElement;
$$title: HTMLDivElement;
$$buttons: HTMLDivElement;
$$icon: HTMLDivElement;
constructor(arg: TinyDialogArg);
destroy(): boolean;
close(): boolean | void;
open(): boolean | void;
isOpen(): boolean;
domResized(): void;
}
```## Options
| Option | Type | Description |
| :--- | :--- | :--- |
| closeIcon | `boolean` | This option displays an icon to close the box. the widget is directly linked to the close and action functions `onClose`, `onAction`. Code inside these functions will be executed. |
| ctrlOpen | `boolean` | This option controls the automatic opening of the box. it is linked to the pre-opening and opening functions `onOpenBefore`, `onOpen`. Code inside these functions will be executed. When the option is `true` you must call `.open()` to open the box. If it is `false`, the box will open automatically. |
| timer | `string` | `id_button\|delay_time`
This option automatically executes a `click` on a button `id_button` located on the box after a given time in milliseconds `delay_time`. This function is linked to the `onAction` function, and the action function linked to the targeted button. Code found inside these functions will be executed. |
| icon | `string` | This option displays a main icon. use a [fontAwesome](https://fontawesome.com/) className or a className displaying a personal icon. The displayed content is accessible via `this.$$icon` |
| title | `string` | `text or html`
This option displays a main title. The displayed content is accessible via `this.$$title` . |
| content | `string` | `text or html`
This option displays html or text content in the main container. The displayed content is accessible via `this.$$content` . |
| buttons | `TinyDialogButtons` | This option creates buttons.
- `id_button`: button identifier equal to `id_button` for the timer option.
- `hide`: to hide the button.< /li>
- `className`: One or more to style the button.
- `text`: text or html content to be displayed on the button.
- ` action`: javascript function which will be executed when the button is clicked. the function passes the event and the button as parameters. The dialog box accessible with `this`.
| onContentReady | `Function` | This function runs when the box instance is created and ready for use. Code inside this function will be executed. within the function, `this` refers to the box instance. Thus its elements like `this.$$title`, `this.$$icon`, `this.$$buttons`, `this.$$content` are accessible (the same for the functions below). |
| onOpenBefore | `Function` | This function runs before opening the box. Code inside this function will be executed. |
| onOpen | `Function` | This function runs when the box is opened. Code inside this function will be executed. |
| onAction | `Function` | This function is executed when an action is triggered on the box. Code inside this function will be executed. |
| onClose | `Function` | This function runs when the box is closed. Code inside this function will be executed. |
| onDestroy | `Function` | This function is executed when the box is destroyed. Code inside this function will be executed. |
## Prototype public functions
| Function | Description |
| :--- | :--- |
| .open() | This function opens the box. It returns true on success or void on failure. |
| .close() | This function closes the box. It returns true on success or void on failure. Note that closing does not destroy the box on DOM. We can reopen the box by calling .open() |
| .destroy() | This function closes and destroys the box on DOM. It returns true on success or false on failure. |
| .isOpen() | This function checks if the box is open or closed. It returns true or false. |
## ClassName
| Name | Description |
| :--- | :--- |
| tiny-dialog-cross | svg icon className of closeIcon option. If you need to change the color of the icon, use the `tiny-dialog-cross-path` className then define some css.
ex: `fill: #fff;`. |
| tiny-dialog-closer | container className of the button to close the box. |
| tiny-dialog-icon | container className of box icon. |
| tiny-dialog-wrp | box overlay className. |
| tiny-dialog-bw | className of the box container. Flexible, centered and no selection of content possible. |
| tiny-dialog-head | header container className. It extends over the available width. |
| tiny-dialog-title | box title container className. It extends over the available width. |
| tiny-dialog-content | className of the container of the content you are displaying. It extends over the available width. |
| tiny-dialog-btns | Dialog button container className. Flexible, it extends over the available width. |
> All containers are `HTMLDivElement`