如何丰富样式AOR编辑页面

时间:2017-07-05 14:01:32

标签: redux-form admin-on-rest

必须创建一个编辑页面,在一个“故事”的实例上编辑许多参数。资源。

然而,添加任何元素(如MUI卡甚至div)会导致应用程序以各种方式冻结。

这些是我尝试过的方法。

1)添加卡片组件或将我的元素放在div中进行样式化

export const EditorEditTale = (props) => {
  return (
  <Edit {...props} title="Tale Editor">
    <SimpleForm >
      <div>
        <Image />
        <TaleCardHeader props={ props } style={taleCardHeaderStyle.editor} />
      </div>
    </SimpleForm>
  </Edit>
  )
};

这导致无法渲染。

第二种方法,假设记录和basePath没有完全传播给孩子们。尝试使用如下组件。

const Input = ({record, basePath}) => {
  return (
    <div>
      <LongTextInput source="taleText" />
    </div>
  )
}

这导致页面无法使用某种锁定循环中的所有内容呈现错误 - 无法读取未定义的属性。

如何创建具有复杂输入和样式的自定义编辑页面。

Required design

更新:到目前为止,尝试编写自定义表单来替换SimpleForm组件而没有运气。

2 个答案:

答案 0 :(得分:3)

要创建自定义表单,您可以按照以下步骤操作:

  1. 为您的项目制作SimpleForm的完整副本。
  2. 将SimpleForm重命名为您想要的内容。
  3. 修复所有相对导入。
  4. 测试新表格,直至其有效。
  5. 我根据当前的主分支SimpleForm

    制作了最低工作表格
    import React, { Children, Component } from 'react';
    import PropTypes from 'prop-types';
    import { reduxForm, Field } from 'redux-form';
    import { connect } from 'react-redux';
    import compose from 'recompose/compose';
    import getDefaultValues from 'admin-on-rest/mui/form/getDefaultValues';
    import FormField from 'admin-on-rest/mui/form/FormField';
    import Toolbar from 'admin-on-rest/mui/form/Toolbar';
    
    const formStyle = { padding: '0 1em 1em 1em' };
    
    export class PostForm extends Component {
        handleSubmitWithRedirect = (redirect = this.props.redirect) => this.props.handleSubmit(values => this.props.save(values, redirect));
    
        render() {
            const { children, invalid, record, resource, basePath, submitOnEnter, toolbar } = this.props;
            return (
                <form className="simple-form">
                    <Field name="name_of_a_field" component="input" />
                    {toolbar && React.cloneElement(toolbar, {
                        handleSubmitWithRedirect: this.handleSubmitWithRedirect,
                        invalid,
                        submitOnEnter,
                    })}
                </form>
            );
        }
    }
    
    PostForm.propTypes = {
        basePath: PropTypes.string,
        children: PropTypes.node,
        defaultValue: PropTypes.oneOfType([
            PropTypes.object,
            PropTypes.func,
        ]),
        handleSubmit: PropTypes.func, // passed by redux-form
        invalid: PropTypes.bool,
        record: PropTypes.object,
        resource: PropTypes.string,
        redirect: PropTypes.oneOfType([
            PropTypes.string,
            PropTypes.bool,
        ]),
        save: PropTypes.func, // the handler defined in the parent, which triggers the REST submission
        submitOnEnter: PropTypes.bool,
        toolbar: PropTypes.element,
        validate: PropTypes.func,
    };
    
    PostForm.defaultProps = {
        submitOnEnter: true,
        toolbar: <Toolbar />,
    };
    
    const enhance = compose(
        connect((state, props) => ({
            initialValues: getDefaultValues(state, props),
        })),
        reduxForm({
            form: 'record-form',
            enableReinitialize: true,
        }),
    );
    
    export default enhance(PostForm);
    

    以上代码适用于AOR&#39; example

    我希望这会有所帮助。

    (当你将AOR作为npm依赖时,导入可能略有不同:

    import getDefaultValues from 'admin-on-rest/lib/mui/form/getDefaultValues';
    import FormField from 'admin-on-rest/lib/mui/form/FormField';
    import Toolbar from 'admin-on-rest/lib/mui/form/Toolbar';
    

答案 1 :(得分:0)

记录我的最终答案。您必须创建自定义Redux表单。您可以直接使用AOR输入组件。他们为Redux Form预先包装。

import { Field, reduxForm } from 'redux-form';
import compose from 'recompose/compose';
import { connect } from 'react-redux';

class StyledForm extends Component {
// Newer version of aor needs this function defined and passed to save buttons. All props are being passed by parent List component. 
handleSubmitWithRedirect = (redirect = this.props.redirect) => this.props.handleSubmit(values => this.props.save(values, redirect));

render() {  
const { handleSubmit, invalid, record, resource, basePath } = this.props
return (<div>
    <form onSubmit={handleSubmit} >
      <Card >
        <CardText >

          //This component simply displays data, something not possible very easily with SimpleForm. 
          <HeaderComp basePath={basePath} record={record} />

          <Field source="category_id"
                 optionText="categoryName"
                 reference="categories"
                 resource={resource}
                 record={record}
                 basePath={basePath}
                 name="NAME OF THE FIELD IN YOUR REDUX DATASTORE"
                 component={REFERENCEFIELDCOMP} />
          //create complex div structures now. 
          <div >
            <span>Tale</span>
            <Field resource={resource} record={record} basePath={basePath} name="taleText" component={TextInput} />
          </div>

         </CardText >

          <MuiToolbar>
            <ToolbarGroup>
              <SaveButton handleSubmitWithRedirect={this.handleSubmitWithRedirect}/>
              //Add custom buttons with custom actions
              <Field record={record} name="status" component={EditButtons} />

            </ToolbarGroup>
          </MuiToolbar>
      </Card>
    </form>
  </div>)
    }
};

const enhance = compose(
    connect((state, props) => ({
        initialValues: getDefaultValues(state, props),
    })),
    reduxForm({
        form: 'record-form',
        enableReinitialize: true,
    }),
);

export default enhance(StyledForm);

您必须在节点模块中从AOR导入或复制getDefaultValues。 我把它复制到下面的文件中。

import getDefaultValues from '../functions/getDefaultValues';

如果您需要在您的字段中使用referenceField。然后将其包装在自定义组件中,如下所示

const DropDownSelector = ({optionText, ...props}) => {
  return (
      <ReferenceInput {...props} label="" >
        <SelectInput optionText={optionText} />
      </ReferenceInput>
  )
}