// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import React from "react"; import { Dispatch } from "redux"; import { connect } from "react-redux"; import { RootState } from 'store/store'; import { withDialog, WithDialogProps } from "store/dialog/with-dialog"; import { NOT_FOUND_DIALOG_NAME } from 'store/not-found-panel/not-found-panel-action'; import { Dialog, DialogContent, DialogActions, Button, withStyles, StyleRulesCallback, WithStyles } from '@material-ui/core'; import { ArvadosTheme } from 'common/custom-theme'; import { NotFoundPanel } from "views/not-found-panel/not-found-panel"; type CssRules = 'tag'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ tag: { marginRight: theme.spacing.unit, marginBottom: theme.spacing.unit } }); interface NotFoundDialogDataProps { } interface NotFoundDialogActionProps { } const mapStateToProps = (state: RootState): NotFoundDialogDataProps => ({ }); const mapDispatchToProps = (dispatch: Dispatch): NotFoundDialogActionProps => ({ }); type NotFoundDialogProps = NotFoundDialogDataProps & NotFoundDialogActionProps & WithDialogProps<{}> & WithStyles; export const NotFoundDialog = connect(mapStateToProps, mapDispatchToProps)( withStyles(styles)( withDialog(NOT_FOUND_DIALOG_NAME)( ({ open, closeDialog }: NotFoundDialogProps) => ) ));