gpt4 book ai didi

modal-dialog - React Admin - 在模态中创建和编辑

转载 作者:行者123 更新时间:2023-12-04 17:43:18 25 4
gpt4 key购买 nike

https://github.com/marmelab/react-admin/issues/850 中的讨论,是否有人设法将创建/编辑表单变成模态?

谢谢,

尼古拉斯

最佳答案

我之前的答案已被删除,因为它不包含实际代码而仅包含链接。这是一个新的,两者兼而有之:
这是一个教程,展示了如何做到这一点:https://marmelab.com/blog/2018/08/27/react-admin-tutorials-custom-forms-related-records.html .
您可以在此处找到代码和框:https://codesandbox.io/s/ypp9ljxqlj
例如,假设我们想在处理新评论时创建一个新帖子。您可以自定义 PostReferenceInput这将显示一个按钮,用于在输入旁边创建一个新帖子:

import React, { Fragment } from 'react';
import { Field } from 'redux-form';
import { ReferenceInput, SelectInput } from 'react-admin';

import PostQuickCreateButton from './PostQuickCreateButton';

const PostReferenceInput = props => (
<Fragment>
<ReferenceInput {...props}>
<SelectInput optionText="title" />
</ReferenceInput>

<PostQuickCreateButton />
</Fragment>
);

export default PostReferenceInput;
PostQuickCreateButton然后将负责显示模式/侧面板/任何内容并处理实际创建。请注意,我们直接使用 dataProvider 以便我们知道何时关闭模态:
import React, { Component, Fragment } from 'react';
import { connect } from 'react-redux';
import { change, submit, isSubmitting } from 'redux-form';
import {
fetchEnd,
fetchStart,
required,
showNotification,
crudGetMatching,
Button,
SaveButton,
SimpleForm,
TextInput,
LongTextInput,
CREATE,
REDUX_FORM_NAME
} from 'react-admin';
import IconContentAdd from '@material-ui/icons/Add';
import IconCancel from '@material-ui/icons/Cancel';
import Dialog from '@material-ui/core/Dialog';
import DialogTitle from '@material-ui/core/DialogTitle';
import DialogContent from '@material-ui/core/DialogContent';
import DialogActions from '@material-ui/core/DialogActions';

import dataProvider from '../dataProvider';

class PostQuickCreateButton extends Component {
state = {
error: false,
showDialog: false
};

handleClick = () => {
this.setState({ showDialog: true });
};

handleCloseClick = () => {
this.setState({ showDialog: false });
};

handleSaveClick = () => {
const { submit } = this.props;

// Trigger a submit of our custom quick create form
// This is needed because our modal action buttons are oustide the form
submit('post-quick-create');
};

handleSubmit = values => {
const {
change,
crudGetMatching,
fetchStart,
fetchEnd,
showNotification
} = this.props;

// Dispatch an action letting react-admin know a API call is ongoing
fetchStart();

// As we want to know when the new post has been created in order to close the modal, we use the
// dataProvider directly
dataProvider(CREATE, 'posts', { data: values })
.then(({ data }) => {
// Refresh the choices of the ReferenceInput to ensure our newly created post
// always appear, even after selecting another post
crudGetMatching(
'posts',
'comments@post_id',
{ page: 1, perPage: 25 },
{ field: 'id', order: 'DESC' },
{}
);

// Update the main react-admin form (in this case, the comments creation form)
change(REDUX_FORM_NAME, 'post_id', data.id);
this.setState({ showDialog: false });
})
.catch(error => {
showNotification(error.message, 'error');
})
.finally(() => {
// Dispatch an action letting react-admin know a API call has ended
fetchEnd();
});
};

render() {
const { showDialog } = this.state;
const { isSubmitting } = this.props;

return (
<Fragment>
<Button onClick={this.handleClick} label="ra.action.create">
<IconContentAdd />
</Button>
<Dialog
fullWidth
open={showDialog}
onClose={this.handleCloseClick}
aria-label="Create post"
>
<DialogTitle>Create post</DialogTitle>
<DialogContent>
<SimpleForm
// We override the redux-form name to avoid collision with the react-admin main form
form="post-quick-create"
resource="posts"
// We override the redux-form onSubmit prop to handle the submission ourselves
onSubmit={this.handleSubmit}
// We want no toolbar at all as we have our modal actions
toolbar={null}
>
<TextInput source="title" validate={required()} />
<LongTextInput
source="teaser"
validate={required()}
/>
</SimpleForm>
</DialogContent>
<DialogActions>
<SaveButton
saving={isSubmitting}
onClick={this.handleSaveClick}
/>
<Button
label="ra.action.cancel"
onClick={this.handleCloseClick}
>
<IconCancel />
</Button>
</DialogActions>
</Dialog>
</Fragment>
);
}
}

const mapStateToProps = state => ({
isSubmitting: isSubmitting('post-quick-create')(state)
});

const mapDispatchToProps = {
change,
crudGetMatching,
fetchEnd,
fetchStart,
showNotification,
submit
};

export default connect(mapStateToProps, mapDispatchToProps)(
PostQuickCreateButton
);

关于modal-dialog - React Admin - 在模态中创建和编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51306591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com