【发布时间】:2019-01-19 11:37:56
【问题描述】:
我正在尝试在我的 react 仪表板应用程序中实现 semantic-ui-react modal,我创建了一个 ModalManager 组件,该组件将与 Redux 一起用于管理 Modal_Open 和 Modal_Close 的状态。
Redux 部分效果很好,但是,在渲染过程中,我只看到“Semantic-UI-React-Modal 组件的问题。下面是错误消息
invariant.js?7313:42 Uncaught Error: Portal.render(): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.
at invariant (invariant.js?7313:42)
at ReactCompositeComponentWrapper._renderValidatedComponent (ReactCompositeComponent.js?063f:830)
at ReactCompositeComponentWrapper.performInitialMount (ReactCompositeComponent.js?063f:361)
at ReactCompositeComponentWrapper.mountComponent (ReactCompositeComponent.js?063f:257)
at Object.mountComponent (ReactReconciler.js?c56c:45)
at ReactCompositeComponentWrapper.performInitialMount (ReactCompositeComponent.js?063f:370)
at ReactCompositeComponentWrapper.mountComponent (ReactCompositeComponent.js?063f:257)
at Object.mountComponent (ReactReconciler.js?c56c:45)
at Object.updateChildren (ReactChildReconciler.js?c86a:121)
at ReactDOMComponent._reconcilerUpdateChildren (ReactMultiChild.js?e1f8:206)
下面是模态管理器的代码,它可以在return <span>{renderedComponent}</span>;上渲染其他组件(一些测试图表)
我怀疑问题是当渲染的组件是 Semantic-Ui-React-Modal 时,其他组件工作得很好。
我正在使用 React 16.4.1
模态管理器组件
import React, { Component } from "react";
import { connect } from "react-redux";
import { Modal } from "semantic-ui-react";
import { closeModal } from "../../Redux/actions/modalActions";
export class ModalManager extends Component {
render() {
const { modalConfiguration } = this.props;
const defaultProps = {
defaultOpen: true,
closeIcon: true,
onClose: this.props.closeModal
};
let renderedComponent;
if (modalConfiguration) {
const { modalProps = {} } = modalConfiguration;
renderedComponent = <Modal {...Object.assign({}, modalProps, defaultProps)} />;
}
return <span>{renderedComponent}</span>;
}
}
function mapStateToProps(state) {
return { modalConfiguration: state.modals };
}
export default connect(mapStateToProps, { closeModal })(ModalManager);
主页
class HomePage extends React.Component {
state = {
expanded : false,
isLoading: false,
error: null
}
componentDidMount() {
this.setState({isLoading: true});
axios.get(API)
.then(result => this.setState({
T_Bugs: result.data.map(x => Number(x.code_bugs)).reduce((a, b) => a + b, 0),
isLoading: false
}))
.catch(error => this.setState({
error,
isLoading: false
}))
}
render() {
if (this.state.expanded) {
this.setState( () => {
return {
expanded : false
};
});
}
return (
<div>
<Main expanded={this.props.expandedState}>
<h1>Welcome to Stemplot</h1>
<Card.Group stackable={true} itemsPerRow={8}>
<StatCard loading={this.state.isLoading} image={this.state.isLoading ? "/images/spinner.gif":"/images/Duplicate.svg"} description=" XXX" title="Duplicate Lines" value={nFormat(this.state.T_Duplicate_Lines)}/>
</Card.Group>
<br/>
<ModalManager />
</Main>
</div>
)
}
}
const mapStateToProps = (state) => {
return {
expandedState: state.sidebarReducer.expanded
};
}
export default connect(mapStateToProps) (HomePage);
【问题讨论】:
-
你在模态框内渲染什么?
-
您的模式实现与文档推荐的完全不同。
trigger或children在哪里? react.semantic-ui.com/modules/modal/#types-modal
标签: javascript reactjs react-router react-redux semantic-ui-react