| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- import {
- type ReactNode,
- Fragment
- } from "react";
- import {
- type DialogContextType,
- type DialogDataType
- } from "../types/dialog";
- import NCoreContext, {
- type ConfigType
- } from "ncore-context";
- import Dialog from "../components/dialog";
- import {
- uuid
- } from "../utils";
- class NCoreUIKitDialog extends NCoreContext<DialogContextType, ConfigType<DialogContextType>> {
- constructor({
- data = []
- }: {
- data?: Array<DialogDataType>
- }) {
- super({
- close: () => {},
- open: () => "",
- data: data
- }, {
- key: "NCoreUIKit-DialogContext"
- });
- };
- open = (dialogData: DialogDataType) => {
- const currentData = this.state.data;
- const dialogID = dialogData.id ? dialogData.id : uuid();
- currentData.push({
- ...dialogData,
- id: dialogID
- });
- this.setState({
- data: currentData
- });
- return dialogID;
- };
- close = (props?: {
- index?: number;
- id?: string;
- }) => {
- const currentData = this.state.data;
- if (props && props.id) {
- const keyIndex = currentData.findIndex((dialog) => dialog.id === props.id);
- if (keyIndex !== -1) {
- currentData.splice(keyIndex, 1);
- this.setState({
- data: currentData
- });
- }
- return;
- }
- if (props && props.index !== undefined) {
- currentData.splice(props.index, 1);
- this.setState({
- data: currentData
- });
- return;
- }
- currentData.pop();
- this.setState({
- data: currentData
- });
- };
- Render = ({
- children
- }: {
- children: ReactNode;
- }) => {
- const {
- data
- } = this.useContext();
- return <Fragment>
- {children}
- {data.map((item: DialogDataType) => {
- return <Dialog
- key={`NCoreUIKit-Dialog-${item.id}`}
- id={item.id as string}
- onClosed={() => {
- if(item.onClosed) {
- item.onClosed({
- id: item.id as string
- });
- }
- if(item.isAutoClosed === undefined || item.isAutoClosed === true) {
- this.close({
- id: item.id
- });
- }
- }}
- {...item}
- />;
- })}
- </Fragment>;
- };
- }
- export default NCoreUIKitDialog;
|