1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-desktop/gui/WindowCommandsAndDialogs/AppDialogs.tsx
Henry Heino 4a88d6ff7a
Desktop: Multiple window support (#11181)
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
2024-11-08 15:32:05 +00:00

29 lines
724 B
TypeScript

import * as React from 'react';
import { AppStateDialog } from '../../app.reducer';
import appDialogs from './utils/appDialogs';
import { Dispatch } from 'redux';
interface Props {
themeId: number;
dispatch: Dispatch;
appDialogStates: AppStateDialog[];
}
const AppDialogs: React.FC<Props> = props => {
if (!props.appDialogStates.length) return null;
const output: React.ReactNode[] = [];
for (const dialog of props.appDialogStates) {
const md = appDialogs[dialog.name];
if (!md) throw new Error(`Unknown dialog: ${dialog.name}`);
output.push(md.render({
key: dialog.name,
themeId: props.themeId,
dispatch: props.dispatch,
}, dialog.props));
}
return <>{output}</>;
};
export default AppDialogs;