forked from ghuser-io/ghuser.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRightPanel.js
95 lines (86 loc) · 2.81 KB
/
RightPanel.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import React from 'react';
import * as Autolinker from 'autolinker';
import * as moment from 'moment';
import * as Parser from 'html-react-parser';
import {urls} from '../../../ghuser';
import CreateYourProfile from './CreateYourProfile';
import ProfileBeingCreated from './ProfileBeingCreated';
import {Contrib} from './contrib/Contrib';
import {getShownContribs} from './contrib/getContribInfo';
import {AccordionListContainer} from '../../utils/Accordion';
export default RightPanel;
function RightPanel(props) {
return (
<div className="col-9 pl-2 pr-0" style={{fontSize: '14px'}}>{
props.contribs ? (
<React.Fragment>
<ContribList {...props} />
<div className="text-gray" style={{textAlign: 'right'}}>
<small><i>Updated {moment(props.fetchedat).fromNow()}.</i></small>
</div>
</React.Fragment>
) : (
<ProfileStatus {...props} />
)
}</div>
);
}
function ContribList(props) {
const repos = [];
const shownContribs = getShownContribs(props.contribs);
shownContribs.forEach((contrib, i) => {
const repo = props.allRepoData[contrib.full_name];
repos.push(
<Contrib key={contrib.full_name} username={props.username} contrib={contrib}
repo={repo}
i={i} />
)
});
return (
<AccordionListContainer>
{repos}
</AccordionListContainer>
);
}
function ProfileStatus(props) {
const alertCssClasses = 'alert alert-warning my-3';
if (props.deleted_because) {
return (
<React.Fragment>
<div className={alertCssClasses} role="alert">
This profile was deleted because {Parser(Autolinker.link(props.deleted_because, {
className: 'external'
}))}<br /><br />
If you want to have it again, no problem, just
<a href={urls.issues} target="_blank" className="external">create an issue</a> :)
</div>
<CreateYourProfile />
</React.Fragment>
);
}
if (props.being_created) {
return (
<React.Fragment>
<div className={alertCssClasses} role="alert">
This profile is being created...
</div>
<ProfileBeingCreated profilesBeingCreated={props.profilesBeingCreated} />
</React.Fragment>
);
}
return (
<React.Fragment>
<div key="alert" className={alertCssClasses} role="alert">
This profile doesn't exist yet.
{ /* temporary for issue143: */ }
<br /><br />
If you have clicked "Get your profile" already, don't click again. Your profile will be
here in less than 48 hours, see
<a href="https://github.com/ghuser-io/ghuser.io/issues/143" target="_blank" className="external">
#143
</a>.
</div>
<CreateYourProfile />
</React.Fragment>
);
}