我有两个具有相同组件的 js 文件,调用相同的函数,但内容不同。所以基本上,当单击打开模块 A 按钮时,该功能将打开,FileA 将打开。按钮 B 也是如此。我怎样才能重写这两个组件,或者至少重写我的函数,以便这两个组件在调用同一个函数时不会受到影响?
这是 FileA.js
import React from 'react'
const moduletext = 'TEXT1'
const ModuleText= ({ text }) => {
return (
<div className="this_container">
<span>{text}</span>
<span role="button" onClick={props.close}>Close</span>
</div>
)
}
function ModuleA(props) {
return (
<div className="_this_container" style={props.show}>
<ModuleText text={moduletext} />
</div>
)
}
export default ModuleA
这是 FileB.js
import React from 'react'
const moduletext = 'TEXT2'
const ModuleText= ({ text }) => {
return (
<div className="this_container">
<span>{text}</span>
<span role="button" onClick={props.close}>Close</span>
</div>
)
}
function ModuleB(props) {
return (
<div className="_this_container" style={props.show}>
<ModuleText text={moduletext} />
</div>
)
}
export default ModuleB
然后是我的主要组件:
import ModuleA from './FileA'
import ModuleB from './FileB'
class MainComponent extends Component {
constructor() {
super()
this.state = {
show: { display: 'none' }
}
this.open = this.open.bind(this);
this.close = this.close.bind(this);
}
open(){
this.setState({show: {display: 'block'}})
}
close(){
this.setState({show: {display: 'none'}})
}
render(){
return(
<div>
<span role="button" onClick={this.open}>Open Module A</span>
<span role="button" onClick={this.open}>Open Module B</span>
<ModuleA show={this.state.show} close={this.close}/>
<ModuleB show={this.state.show} close={this.close}/>
</div>
)
}
}