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 pathsocial-button.js
executable file
·50 lines (46 loc) · 1.51 KB
/
social-button.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
define(
[
'react',
'create-react-class',
],
function (React, createReactClass) {
var SocialButton = createReactClass({
getDefaultProps: function() {
return {
position: '',
type: 'like',
theme: 'btn-default'
}
},
render: function() {
var position;
switch(this.props.position){
case 'left':
position = 'pull-left';
break;
case 'right':
position = 'pull-right';
break;
default:
position = ''
}
if(this.props.type === 'like'){
return (
<button className={"btn btn-xs "+position+" "+this.props.theme}>
<i className="fa fa-thumbs-o-up"></i>
Like
</button>
)
}else if(this.props.type === 'share'){
return (
<button className={"btn btn-xs "+position+" "+this.props.theme}>
<i className="fa fa-share"></i>
Share
</button>
)
}
}
});
return SocialButton;
}
)