Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
127 lines
3.3 KiB
TypeScript
127 lines
3.3 KiB
TypeScript
import { ComponentType } from 'react';
|
|
|
|
import { IStore } from '../../app/types';
|
|
|
|
import {
|
|
HIDE_DIALOG,
|
|
HIDE_SHEET,
|
|
OPEN_DIALOG,
|
|
OPEN_SHEET
|
|
} from './actionTypes';
|
|
import { isDialogOpen } from './functions';
|
|
import logger from './logger';
|
|
|
|
/**
|
|
* Signals Dialog to close its dialog.
|
|
*
|
|
* @param {Object} [component] - The {@code Dialog} component to close/hide. If
|
|
* {@code undefined}, closes/hides {@code Dialog} regardless of which
|
|
* component it's rendering; otherwise, closes/hides {@code Dialog} only if
|
|
* it's rendering the specified {@code component}.
|
|
* @returns {{
|
|
* type: HIDE_DIALOG,
|
|
* component: (React.Component | undefined)
|
|
* }}
|
|
*/
|
|
export function hideDialog(component?: ComponentType<any>) {
|
|
logger.info(`Hide dialog: ${getComponentDisplayName(component)}`);
|
|
|
|
return {
|
|
type: HIDE_DIALOG,
|
|
component
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Closes the active sheet.
|
|
*
|
|
* @returns {{
|
|
* type: HIDE_SHEET,
|
|
* }}
|
|
*/
|
|
export function hideSheet() {
|
|
return {
|
|
type: HIDE_SHEET
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Signals Dialog to open dialog.
|
|
*
|
|
* @param {Object} component - The component to display as dialog.
|
|
* @param {Object} [componentProps] - The React {@code Component} props of the
|
|
* specified {@code component}.
|
|
* @returns {{
|
|
* type: OPEN_DIALOG,
|
|
* component: React.Component,
|
|
* componentProps: (Object | undefined)
|
|
* }}
|
|
*/
|
|
export function openDialog(component: ComponentType<any>, componentProps?: Object) {
|
|
logger.info(`Open dialog: ${getComponentDisplayName(component)}`);
|
|
|
|
return {
|
|
type: OPEN_DIALOG,
|
|
component,
|
|
componentProps
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Opens the requested sheet.
|
|
*
|
|
* @param {Object} component - The component to display as a sheet.
|
|
* @param {Object} [componentProps] - The React {@code Component} props of the
|
|
* specified {@code component}.
|
|
* @returns {{
|
|
* type: OPEN_SHEET,
|
|
* component: React.Component,
|
|
* componentProps: (Object | undefined)
|
|
* }}
|
|
*/
|
|
export function openSheet(component: ComponentType<any>, componentProps?: Object) {
|
|
return {
|
|
type: OPEN_SHEET,
|
|
component,
|
|
componentProps
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Signals Dialog to open a dialog with the specified component if the component
|
|
* is not already open. If it is open, then Dialog is signaled to close its
|
|
* dialog.
|
|
*
|
|
* @param {Object} component - The component to display as dialog.
|
|
* @param {Object} [componentProps] - The React {@code Component} props of the
|
|
* specified {@code component}.
|
|
* @returns {Function}
|
|
*/
|
|
export function toggleDialog(component: ComponentType<any>, componentProps?: Object) {
|
|
return (dispatch: IStore['dispatch'], getState: IStore['getState']) => {
|
|
if (isDialogOpen(getState, component)) {
|
|
dispatch(hideDialog(component));
|
|
} else {
|
|
dispatch(openDialog(component, componentProps));
|
|
}
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Extracts a printable name for a dialog component.
|
|
*
|
|
* @param {Object} component - The component to extract the name for.
|
|
*
|
|
* @returns {string} The display name.
|
|
*/
|
|
function getComponentDisplayName(component?: ComponentType<any>) {
|
|
if (!component) {
|
|
return '';
|
|
}
|
|
|
|
const name = component.displayName ?? component.name ?? 'Component';
|
|
|
|
return name.replace('withI18nextTranslation(Connect(', '') // dialogs with translations
|
|
.replace('))', ''); // dialogs with translations suffix
|
|
}
|