bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/user-list/component.jsx

44 lines
1.0 KiB
React
Raw Normal View History

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import injectWbResizeEvent from '/imports/ui/components/presentation/resize-wrapper/component';
2021-10-20 22:17:16 +08:00
import Styled from './styles';
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,
CustomLogoUrl: PropTypes.string.isRequired,
showBranding: PropTypes.bool.isRequired,
2016-06-29 03:52:03 +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
};
class UserList extends PureComponent {
2017-07-28 21:43:39 +08:00
render() {
2018-03-21 03:35:28 +08:00
const {
compact,
CustomLogoUrl,
showBranding,
2018-03-21 03:35:28 +08:00
} = this.props;
2017-07-28 21:43:39 +08:00
return (
2021-10-20 22:17:16 +08:00
<Styled.UserList>
2018-03-21 03:35:28 +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
}
2021-12-07 00:32:41 +08:00
<UserContentContainer compact={compact} />
2021-10-20 22:17:16 +08:00
</Styled.UserList>
2017-07-28 21:43:39 +08:00
);
}
2016-05-20 02:22:56 +08:00
}
2016-06-29 03:52:03 +08:00
UserList.propTypes = propTypes;
2017-07-28 21:43:39 +08:00
UserList.defaultProps = defaultProps;
2021-12-07 00:32:41 +08:00
export default injectWbResizeEvent(UserList);