2018-11-23 22:14:48 +08:00
|
|
|
import React, { PureComponent } from 'react';
|
2017-08-24 00:29:21 +08:00
|
|
|
import { injectIntl } from 'react-intl';
|
2017-06-04 10:40:14 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2017-09-26 07:45:44 +08:00
|
|
|
import injectWbResizeEvent from '/imports/ui/components/presentation/resize-wrapper/component';
|
2019-05-14 21:15:54 +08:00
|
|
|
import { styles } from './styles.scss';
|
2018-03-21 03:35:28 +08:00
|
|
|
import CustomLogo from './custom-logo/component';
|
2018-10-24 22:17:13 +08:00
|
|
|
import UserContentContainer from './user-list-content/container';
|
2016-05-20 02:22:56 +08:00
|
|
|
|
2016-06-29 03:52:03 +08:00
|
|
|
const propTypes = {
|
2017-07-28 21:43:39 +08:00
|
|
|
compact: PropTypes.bool,
|
2017-09-29 02:19:57 +08:00
|
|
|
intl: PropTypes.shape({
|
|
|
|
formatMessage: PropTypes.func.isRequired,
|
|
|
|
}).isRequired,
|
2018-11-23 22:14:48 +08:00
|
|
|
CustomLogoUrl: PropTypes.string.isRequired,
|
2017-09-22 22:24:24 +08:00
|
|
|
isPublicChat: PropTypes.func.isRequired,
|
2017-09-29 02:19:57 +08:00
|
|
|
setEmojiStatus: PropTypes.func.isRequired,
|
2021-04-07 03:41:33 +08:00
|
|
|
clearAllEmojiStatus: PropTypes.func.isRequired,
|
2017-12-07 00:53:16 +08:00
|
|
|
roving: PropTypes.func.isRequired,
|
2018-09-14 02:09:30 +08:00
|
|
|
showBranding: PropTypes.bool.isRequired,
|
2019-04-06 06:32:21 +08:00
|
|
|
requestUserInformation: PropTypes.func.isRequired,
|
2016-06-29 03:52:03 +08:00
|
|
|
};
|
2018-09-14 02:09:30 +08:00
|
|
|
|
2016-06-29 03:52:03 +08:00
|
|
|
const defaultProps = {
|
2017-07-28 21:43:39 +08:00
|
|
|
compact: false,
|
2016-06-29 03:52:03 +08:00
|
|
|
};
|
|
|
|
|
2018-11-23 22:14:48 +08:00
|
|
|
class UserList extends PureComponent {
|
2017-07-28 21:43:39 +08:00
|
|
|
render() {
|
2018-03-21 03:35:28 +08:00
|
|
|
const {
|
|
|
|
intl,
|
|
|
|
compact,
|
|
|
|
setEmojiStatus,
|
2021-04-07 03:41:33 +08:00
|
|
|
clearAllEmojiStatus,
|
2018-03-21 03:35:28 +08:00
|
|
|
isPublicChat,
|
|
|
|
roving,
|
|
|
|
CustomLogoUrl,
|
2018-09-14 02:09:30 +08:00
|
|
|
showBranding,
|
2018-10-02 21:48:12 +08:00
|
|
|
hasBreakoutRoom,
|
2019-04-06 06:32:21 +08:00
|
|
|
requestUserInformation,
|
2018-03-21 03:35:28 +08:00
|
|
|
} = this.props;
|
|
|
|
|
2017-07-28 21:43:39 +08:00
|
|
|
return (
|
|
|
|
<div className={styles.userList}>
|
2018-03-21 03:35:28 +08:00
|
|
|
{
|
2018-09-14 02:09:30 +08:00
|
|
|
showBranding
|
2019-01-14 21:23:35 +08:00
|
|
|
&& !compact
|
|
|
|
&& CustomLogoUrl
|
|
|
|
? <CustomLogo CustomLogoUrl={CustomLogoUrl} /> : null
|
2018-03-21 03:35:28 +08:00
|
|
|
}
|
2018-10-24 22:17:13 +08:00
|
|
|
{<UserContentContainer
|
2018-03-21 03:35:28 +08:00
|
|
|
{...{
|
2019-01-14 21:23:35 +08:00
|
|
|
intl,
|
|
|
|
compact,
|
|
|
|
setEmojiStatus,
|
2021-04-07 03:41:33 +08:00
|
|
|
clearAllEmojiStatus,
|
2019-01-14 21:23:35 +08:00
|
|
|
isPublicChat,
|
|
|
|
roving,
|
|
|
|
hasBreakoutRoom,
|
2019-04-06 06:32:21 +08:00
|
|
|
requestUserInformation,
|
2019-01-14 21:23:35 +08:00
|
|
|
}
|
|
|
|
}
|
2017-09-22 02:40:18 +08:00
|
|
|
/>}
|
2017-07-28 21:43:39 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-05-20 02:22:56 +08:00
|
|
|
}
|
2016-06-02 21:00:57 +08:00
|
|
|
|
2016-06-29 03:52:03 +08:00
|
|
|
UserList.propTypes = propTypes;
|
2017-07-28 21:43:39 +08:00
|
|
|
UserList.defaultProps = defaultProps;
|
|
|
|
|
2018-10-04 00:14:10 +08:00
|
|
|
export default injectWbResizeEvent(injectIntl(UserList));
|