-
-
Notifications
You must be signed in to change notification settings - Fork 32.6k
Expand file tree
/
Copy pathfont-icon.jsx
More file actions
65 lines (51 loc) · 1.28 KB
/
font-icon.jsx
File metadata and controls
65 lines (51 loc) · 1.28 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
56
57
58
59
60
61
62
63
64
65
var React = require('react');
var StylePropable = require('./mixins/style-propable');
var Spacing = require('./styles/variables/spacing');
var FontIcon = React.createClass({
mixins: [StylePropable],
propTypes: {
hoverStyle: React.PropTypes.object,
},
getInitialState: function() {
return {
isHovered: false,
};
},
/** Styles */
_main: function() {
var style = this.mergeAndPrefix({
position: 'relative',
fontSize: Spacing.iconSize + 'px',
display: 'inline-block',
userSelect: 'none'
});
if (this.state.isHovered && this.props.hoverStyle) {
style = this.mergeAndPrefix(style, this.props.hoverStyle);
}
return style;
},
render: function() {
var {
style,
hoverStyle,
onMouseOver,
onMouseOut,
...other
} = this.props;
return (
<span {...other}
style={this._main()}
onMouseOver={this._onMouseOver}
onMouseOut={this._onMouseOut}/>
);
},
_onMouseOut: function(e) {
this.setState({isHovered: false});
if (this.props.onMouseOut) this.props.onMouseOut(e);
},
_onMouseOver: function(e) {
this.setState({isHovered: true});
if (this.props.onMouseOver) this.props.onMouseOver(e);
},
});
module.exports = FontIcon;