CloseButton.js
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import React,{PropTypes} from 'react';
import ReactDOM from 'react-dom';
import { Link } from 'react-router';
import cx from 'classnames';
import s from './buttons.scss';
class CloseButton extends React.Component {
constructor(props) {
super(props);
}
static propTypes = {
path: PropTypes.string,
title:PropTypes.string,
close:PropTypes.func,
style:PropTypes.object
}
static defaultProps={
title:'关闭页面',
close:()=>{
}
}
componentDidMount(){
}
componentWillReceiveProps(nextProps){
}
componentDidUpdate(prevProps,prevState){
}
componentWillUnmount() {
}
render(){
const {title,path}=this.props;
if(path){
return (
<Link to={path} className={cx(s.button)} style={this.props.style} >
<i className={cx('kr_icon')}></i>
<span>{this.props.title}</span>
</Link>
)
}else{
return (
<div className={cx(s.button)} style={this.props.style} onClick={this.props.close}>
<i className={cx('kr_icon')}></i>
<span>{this.props.title}</span>
</div>
)
}
}
}
export default CloseButton;