blob: b206b4bba068a165a662d537b950e4614ee7ee6f (
plain)
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
// @flow
import moment from 'moment';
import React, { Component } from 'react';
import { withTranslation } from 'react-i18next';
import { connect } from 'react-redux';
import type { Dispatch } from 'redux';
import { compose } from 'redux';
import { push } from 'react-router-redux';
import { conferenceRemoved } from '../actions';
import {
ConferenceCard,
ConferenceTitle,
Label,
RecentListContainer,
RecentListWrapper,
TruncatedText
} from '../styled';
import type { RecentListItem } from '../types';
import Button from '@atlaskit/button';
import CrossIcon from '@atlaskit/icon/glyph/cross';
type Props = {
/**
* Redux dispatch.
*/
dispatch: Dispatch<*>;
/**
* Array of recent conferences.
*/
_recentList: Array<RecentListItem>;
/**
* I18next translation function.
*/
t: Function;
};
/**
* Recent List Component.
*/
class RecentList extends Component<Props, *> {
/**
* Render function of component.
*
* @returns {ReactElement}
*/
render() {
const { t } = this.props;
if (this.props._recentList.length === 0) {
return null;
}
return (
<RecentListWrapper>
<Label>{ t('recentListLabel') }</Label>
<RecentListContainer>
{
this.props._recentList.map(
conference => this._renderRecentListEntry(conference)
)
}
</RecentListContainer>
</RecentListWrapper>
);
}
/**
* Creates a handler for navigatint to a conference.
*
* @param {RecentListItem} conference - Conference Details.
* @returns {void}
*/
_onNavigateToConference(conference: RecentListItem) {
return () => this.props.dispatch(push('/conference', conference));
}
/**
* Creates a handler for removing a conference from the recents list.
*
* @param {RecentListItem} conference - Conference Details.
* @returns {void}
*/
_onRemoveConference(conference: RecentListItem) {
return e => {
this.props.dispatch(conferenceRemoved(conference));
e.stopPropagation();
};
}
/**
* Renders the conference card.
*
* @param {RecentListItem} conference - Conference Details.
* @returns {ReactElement}
*/
_renderRecentListEntry(conference: RecentListItem) {
return (
<ConferenceCard
key = { conference.startTime }
onClick = { this._onNavigateToConference(conference) }>
<ConferenceTitle>
{ conference.room }
</ConferenceTitle>
<TruncatedText>
{ this._renderServerURL(conference.serverURL) }
</TruncatedText>
<TruncatedText>
{ this._renderStartTime(conference) }
</TruncatedText>
<TruncatedText>
{ this._renderDuration(conference) }
</TruncatedText>
<Button
appearance = 'subtle'
iconBefore = { <CrossIcon primaryColor = 'white' /> }
onClick = { this._onRemoveConference(conference) }
spacing = 'none' />
</ConferenceCard>
);
}
/**
* Returns formatted Server URL.
*
* @param {string} serverURL - Server URL.
* @returns {string} - Formatted server URL.
*/
_renderServerURL(serverURL: string) {
// Strip protocol to make it cleaner.
return `${serverURL.replace('https://', '')}`;
}
/**
* Returns the duration of the conference in string format.
*
* @param {RecentListItem} conference - Conference Details.
* @returns {string} - Date/Time and Duration.
*/
_renderDuration(conference: RecentListItem) {
const { startTime, endTime } = conference;
const start = moment(startTime);
const end = moment(endTime || Date.now());
return moment.duration(end.diff(start)).humanize();
}
/**
* Returns the Date/Time of the conference in string format.
*
* @param {RecentListItem} conference - Conference Details.
* @returns {string} - Date/Time and Duration.
*/
_renderStartTime(conference: RecentListItem) {
const { startTime } = conference;
return moment(startTime).calendar();
}
}
/**
* Maps (parts of) the redux state to the React props.
*
* @param {Object} state - The redux state.
* @returns {{
* _recentList: Array<RecentListItem>
* }}
*/
function _mapStateToProps(state: Object) {
return {
_recentList: state.recentList.recentList
};
}
export default compose(connect(_mapStateToProps), withTranslation())(RecentList);
|