material-ui-next组件初始化为隐藏

时间:2018-05-17 10:35:58

标签: reactjs material-ui

我刚刚从材质测试版升级到新材料-ui-text rc1。它编译和工作正常,期望组件初始化,css属性可见性设置为隐藏,通过应用于组件的不同css类。我尝试了两个对话框组件(如下例所示)和popover组件。结果相同。两者都是在启动时隐藏的。

对话框组件已应用此类.MuiModal-hidden-224。对我来说,组件被初始化为隐藏似乎是错误的。这是模态根的HTML:

<div class="MuiModal-root-223 MuiDialog-root-216 MuiModal-hidden-224" role="dialog">

这是我正在使用的反应代码。

   import * as React from "react";
import "./SharingDialog.less";
import Dialog from "@material-ui/core/Dialog";
import Button from "@material-ui/core/Button";

interface IProps {
    locked: boolean
}

interface IState {
    open: boolean;
    anchorEl: any;
}

export default class SharingDialog extends React.Component<IProps, IState> {

    constructor(props: IProps) {
        super(props);
        this.state = {
            open: false,
            anchorEl: null
        }
    }

    handleOpen = (event:any) => {
        this.setState({open: true, anchorEl: event.currentTarget});
    }

    handleClose() {
        this.setState({open: false})
    }

    render() {
        const { locked } = this.props;

        return (
            <div className="sharing-dialog">
                <Button>Test</Button>
                <button disabled={!locked} className="btn btn-primary" onClick={(event) => this.handleOpen(event)}>Open modal</button>
                <Dialog
                open={this.state.open}>                    
                    <div className="sharing-dialog-component">
                        Testing
                    </div>

                </Dialog>
            </div>
        )
    }
}

我做错了什么?为什么模态启动为隐藏?

1 个答案:

答案 0 :(得分:6)

我有同样的问题。似乎更新到React 16.3.2将解决问题。

https://github.com/mui-org/material-ui/issues/11414