This repository was archived by the owner on Sep 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 798
/
Copy pathinfo-tile.js
executable file
·60 lines (54 loc) · 2.35 KB
/
info-tile.js
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
define(
[
'react',
'create-react-class',
],
function (React, createReactClass) {
var InfoTile = createReactClass({
getDefaultProps: function() {
return {
content: '',
icon: 'fa-star-o',
stats: '0',
subject: 'Default Subject',
theme: 'bg-aqua'
}
},
render: function() {
if(this.props.children){
return (
<div className = {"col-md-"+this.props.width+" col-sm-6 col-xs-12"}>
<div className={"info-box "+this.props.theme}>
<span className="info-box-icon">
<i className={"fa "+this.props.icon}></i>
</span>
<div className="info-box-content">
<span className="info-box-text">{this.props.subject}</span>
<span className="info-box-number">{this.props.stats}</span>
{this.props.children}
</div>
{this.props.content}
</div>
</div>
)
}else{
return (
<div className = "col-md-3 col-sm-6 col-xs-12">
<div className="info-box">
<span className={"info-box-icon " + this.props.theme}>
<i className={"fa "+this.props.icon}></i>
</span>
<div className="info-box-content">
<span className="info-box-text">{this.props.subject}</span>
<span className="info-box-number">{this.props.stats}</span>
</div>
{this.props.content}
</div>
</div>
)
}
}
});
return InfoTile;
}
)