1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import React from 'react';
6 import { connect } from 'react-redux';
7 import { DialogState } from './dialog-reducer';
8 import { Dispatch } from 'redux';
9 import { dialogActions } from './dialog-actions';
11 export type WithDialogStateProps<T> = {
16 export type WithDialogDispatchProps = {
17 closeDialog: () => void;
20 export type WithDialogProps<T> = WithDialogStateProps<T> & WithDialogDispatchProps;
21 export const withDialog =
23 // TODO: How to make compiler happy with & P instead of & any?
24 // eslint-disable-next-line
25 <T, P>(component: React.ComponentType<WithDialogProps<T> & any>) =>
26 connect(mapStateToProps(id), mapDispatchToProps(id))(component);
30 export const mapStateToProps =
32 <T>(state: { dialog: DialogState }): WithDialogStateProps<T> => {
33 const dialog = state.dialog[id];
34 return dialog ? dialog : { open: false, data: emptyData };
37 export const mapDispatchToProps =
39 (dispatch: Dispatch): WithDialogDispatchProps => ({
41 dispatch(dialogActions.CLOSE_DIALOG({ id }));