2020-04-10 01:01:46 +08:00
|
|
|
import React, { PureComponent } from 'react';
|
2020-05-14 21:35:25 +08:00
|
|
|
import { FormattedTime, defineMessages, injectIntl } from 'react-intl';
|
2020-04-10 01:01:46 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2020-05-14 21:35:25 +08:00
|
|
|
import cx from 'classnames';
|
|
|
|
import UserAvatar from '/imports/ui/components/user-avatar/component';
|
|
|
|
import SlowConnection from '/imports/ui/components/slow-connection/component';
|
2020-04-10 01:01:46 +08:00
|
|
|
import Modal from '/imports/ui/components/modal/simple/component';
|
|
|
|
import { styles } from './styles';
|
|
|
|
|
|
|
|
const intlMessages = defineMessages({
|
|
|
|
ariaTitle: {
|
|
|
|
id: 'app.connection-status.ariaTitle',
|
|
|
|
description: 'Connection status aria title',
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
id: 'app.connection-status.title',
|
|
|
|
description: 'Connection status title',
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
id: 'app.connection-status.description',
|
|
|
|
description: 'Connection status description',
|
|
|
|
},
|
2020-05-14 21:35:25 +08:00
|
|
|
empty: {
|
|
|
|
id: 'app.connection-status.empty',
|
|
|
|
description: 'Connection status empty',
|
|
|
|
},
|
2020-04-10 01:01:46 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
const propTypes = {
|
|
|
|
closeModal: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.shape({
|
|
|
|
formatMessage: PropTypes.func.isRequired,
|
|
|
|
}).isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
class ConnectionStatusComponent extends PureComponent {
|
2020-05-14 21:35:25 +08:00
|
|
|
renderEmpty() {
|
|
|
|
const { intl } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={styles.item}>
|
|
|
|
<div className={styles.left}>
|
|
|
|
<div className={styles.name}>
|
|
|
|
<div className={styles.text}>
|
|
|
|
{intl.formatMessage(intlMessages.empty)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderConnections() {
|
|
|
|
const { connectionStatus } = this.props;
|
|
|
|
|
|
|
|
if (connectionStatus.length === 0) return this.renderEmpty();
|
|
|
|
|
|
|
|
return connectionStatus.map((conn, index) => {
|
|
|
|
const dateTime = new Date(conn.timestamp);
|
|
|
|
const itemStyle = {};
|
|
|
|
itemStyle[styles.even] = index % 2 === 0;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
key={index}
|
|
|
|
className={cx(styles.item, itemStyle)}
|
|
|
|
>
|
|
|
|
<div className={styles.left}>
|
|
|
|
<div className={styles.avatar}>
|
|
|
|
<UserAvatar
|
|
|
|
className={styles.icon}
|
|
|
|
you={conn.you}
|
|
|
|
moderator={conn.moderator}
|
|
|
|
>
|
|
|
|
{conn.name.toLowerCase().slice(0, 2)}
|
|
|
|
</UserAvatar>
|
|
|
|
</div>
|
|
|
|
<div className={styles.name}>
|
|
|
|
<div className={styles.text}>
|
|
|
|
{conn.name}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className={styles.status}>
|
|
|
|
<SlowConnection effectiveConnectionType={conn.level} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className={styles.right}>
|
|
|
|
<div className={styles.time}>
|
|
|
|
<time dateTime={dateTime}>
|
|
|
|
<FormattedTime value={dateTime} />
|
|
|
|
</time>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-04-10 01:01:46 +08:00
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
closeModal,
|
|
|
|
connectionStatus,
|
|
|
|
intl,
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
overlayClassName={styles.overlay}
|
|
|
|
className={styles.modal}
|
|
|
|
onRequestClose={closeModal}
|
|
|
|
hideBorder
|
|
|
|
contentLabel={intl.formatMessage(intlMessages.ariaTitle)}
|
|
|
|
>
|
|
|
|
<div className={styles.container}>
|
|
|
|
<div className={styles.header}>
|
|
|
|
<h2 className={styles.title}>
|
|
|
|
{intl.formatMessage(intlMessages.title)}
|
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
<div className={styles.description}>
|
|
|
|
{intl.formatMessage(intlMessages.description)}
|
|
|
|
</div>
|
|
|
|
<div className={styles.content}>
|
2020-05-14 21:35:25 +08:00
|
|
|
<div className={styles.wrapper}>
|
|
|
|
{this.renderConnections()}
|
|
|
|
</div>
|
2020-04-10 01:01:46 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ConnectionStatusComponent.propTypes = propTypes;
|
|
|
|
|
|
|
|
export default injectIntl(ConnectionStatusComponent);
|