226 lines
6.1 KiB
JavaScript
Executable File
226 lines
6.1 KiB
JavaScript
Executable File
import React, { Component, PropTypes } from 'react';
|
|
import { withRouter } from 'react-router';
|
|
import ReactCSSTransitionGroup from 'react-addons-css-transition-group';
|
|
import styles from './styles.scss';
|
|
import cx from 'classnames';
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
import UserListItem from './user-list-item/component.jsx';
|
|
import ChatListItem from './chat-list-item/component.jsx';
|
|
|
|
const propTypes = {
|
|
openChats: PropTypes.array.isRequired,
|
|
users: PropTypes.array.isRequired,
|
|
};
|
|
|
|
const defaultProps = {
|
|
};
|
|
|
|
const listTransition = {
|
|
enter: styles.enter,
|
|
enterActive: styles.enterActive,
|
|
appear: styles.appear,
|
|
appearActive: styles.appearActive,
|
|
leave: styles.leave,
|
|
leaveActive: styles.leaveActive,
|
|
};
|
|
|
|
class UserList extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
compact: this.props.compact,
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className={styles.userList}>
|
|
{this.renderHeader()}
|
|
{this.renderContent()}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderHeader() {
|
|
const { intl } = this.props;
|
|
|
|
return (
|
|
<div className={styles.header}>
|
|
{
|
|
!this.state.compact ?
|
|
<h2 className={styles.headerTitle}>
|
|
{intl.formatMessage(intlMessages.participantsTitle)}
|
|
</h2> : null
|
|
}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderContent() {
|
|
return (
|
|
<div className={styles.content}>
|
|
{this.renderMessages()}
|
|
{this.renderParticipants()}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderMessages() {
|
|
const {
|
|
openChats,
|
|
openChat,
|
|
intl,
|
|
} = this.props;
|
|
|
|
return (
|
|
<div className={styles.messages}>
|
|
{
|
|
!this.state.compact ?
|
|
<h3 className={styles.smallTitle}>
|
|
{intl.formatMessage(intlMessages.messagesTitle)}
|
|
</h3> : <hr className={styles.separator}></hr>
|
|
}
|
|
<div className={styles.scrollableList}>
|
|
<ReactCSSTransitionGroup
|
|
transitionName={listTransition}
|
|
transitionAppear={true}
|
|
transitionEnter={true}
|
|
transitionLeave={false}
|
|
transitionAppearTimeout={0}
|
|
transitionEnterTimeout={0}
|
|
transitionLeaveTimeout={0}
|
|
component="ul"
|
|
className={cx(styles.chatsList, styles.scrollableList)}>
|
|
{openChats.map(chat => (
|
|
<ChatListItem
|
|
compact={this.state.compact}
|
|
key={chat.id}
|
|
openChat={openChat}
|
|
chat={chat} />
|
|
))}
|
|
</ReactCSSTransitionGroup>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderParticipants() {
|
|
const {
|
|
users,
|
|
currentUser,
|
|
isBreakoutRoom,
|
|
intl,
|
|
makeCall,
|
|
} = this.props;
|
|
|
|
const userActions = {
|
|
openChat: {
|
|
label: intl.formatMessage(intlMessages.ChatLabel),
|
|
handler: (router, user) => router.push(`/users/chat/${user.id}`),
|
|
icon: 'chat',
|
|
},
|
|
clearStatus: {
|
|
label: intl.formatMessage(intlMessages.ClearStatusLabel),
|
|
handler: user => makeCall('setEmojiStatus', user.id, 'none'),
|
|
icon: 'clear_status',
|
|
},
|
|
setPresenter: {
|
|
label: intl.formatMessage(intlMessages.MakePresenterLabel),
|
|
handler: user => makeCall('assignPresenter', user.id),
|
|
icon: 'presentation',
|
|
},
|
|
kick: {
|
|
label: intl.formatMessage(intlMessages.KickUserLabel),
|
|
handler: user => makeCall('kickUser', user.id),
|
|
icon: 'circle_close',
|
|
},
|
|
mute: {
|
|
label: intl.formatMessage(intlMessages.MuteUserAudioLabel),
|
|
handler: user => makeCall('muteUser', user.id),
|
|
icon: 'audio_off',
|
|
},
|
|
unmute: {
|
|
label: intl.formatMessage(intlMessages.UnmuteUserAudioLabel),
|
|
handler: user => makeCall('unmuteUser', user.id),
|
|
icon: 'audio_on',
|
|
},
|
|
};
|
|
|
|
return (
|
|
<div className={styles.participants}>
|
|
{
|
|
!this.state.compact ?
|
|
<h3 className={styles.smallTitle}>
|
|
{intl.formatMessage(intlMessages.usersTitle)}
|
|
({users.length})
|
|
</h3> : <hr className={styles.separator}></hr>
|
|
}
|
|
<ReactCSSTransitionGroup
|
|
transitionName={listTransition}
|
|
transitionAppear={true}
|
|
transitionEnter={true}
|
|
transitionLeave={true}
|
|
transitionAppearTimeout={0}
|
|
transitionEnterTimeout={0}
|
|
transitionLeaveTimeout={0}
|
|
component="ul"
|
|
className={cx(styles.participantsList, styles.scrollableList)}>
|
|
{
|
|
users.map(user => (
|
|
<UserListItem
|
|
compact={this.state.compact}
|
|
key={user.id}
|
|
isBreakoutRoom={isBreakoutRoom}
|
|
user={user}
|
|
currentUser={currentUser}
|
|
userActions={userActions}
|
|
/>
|
|
))}
|
|
</ReactCSSTransitionGroup>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
const intlMessages = defineMessages({
|
|
usersTitle: {
|
|
id: 'app.userlist.usersTitle',
|
|
description: 'Title for the Header',
|
|
},
|
|
messagesTitle: {
|
|
id: 'app.userlist.messagesTitle',
|
|
description: 'Title for the messages list',
|
|
},
|
|
participantsTitle: {
|
|
id: 'app.userlist.participantsTitle',
|
|
description: 'Title for the Users list',
|
|
},
|
|
ChatLabel: {
|
|
id: 'app.userlist.menu.chat.label',
|
|
description: 'Save the changes and close the settings menu',
|
|
},
|
|
ClearStatusLabel: {
|
|
id: 'app.userlist.menu.clearStatus.label',
|
|
description: 'Clear the emoji status of this user',
|
|
},
|
|
MakePresenterLabel: {
|
|
id: 'app.userlist.menu.makePresenter.label',
|
|
description: 'Set this user to be the presenter in this meeting',
|
|
},
|
|
KickUserLabel: {
|
|
id: 'app.userlist.menu.kickUser.label',
|
|
description: 'Forcefully remove this user from the meeting',
|
|
},
|
|
MuteUserAudioLabel: {
|
|
id: 'app.userlist.menu.muteUserAudio.label',
|
|
description: 'Forcefully mute this user',
|
|
},
|
|
UnmuteUserAudioLabel: {
|
|
id: 'app.userlist.menu.unmuteUserAudio.label',
|
|
description: 'Forcefully unmute this user',
|
|
},
|
|
});
|
|
|
|
UserList.propTypes = propTypes;
|
|
export default withRouter(injectIntl(UserList));
|