73 lines
1.7 KiB
JavaScript
73 lines
1.7 KiB
JavaScript
import React, { Component } from 'react';
|
|
import { defineMessages, intlShape } from 'react-intl';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Modal from '/imports/ui/components/modal/simple/component';
|
|
|
|
import Service from './service';
|
|
|
|
import { styles } from './styles';
|
|
|
|
const propTypes = {
|
|
intl: intlShape.isRequired,
|
|
meetingId: PropTypes.string.isRequired,
|
|
requesterUserId: PropTypes.string.isRequired,
|
|
};
|
|
|
|
const intlMessages = defineMessages({
|
|
title: {
|
|
id: 'app.user-info.title',
|
|
description: 'User info title label',
|
|
},
|
|
});
|
|
|
|
class UserInfoComponent extends Component {
|
|
renderUserInfo() {
|
|
const { UserInfo } = this.props;
|
|
const userInfoList = UserInfo.map((user, index, array) => {
|
|
const infoList = user.userInfo.map((info) => {
|
|
const key = Object.keys(info)[0];
|
|
return (
|
|
<tr key={key}>
|
|
<td className={styles.keyCell}>{key}</td>
|
|
<td className={styles.valueCell}>{info[key]}</td>
|
|
</tr>
|
|
);
|
|
});
|
|
if (array.length > 1) {
|
|
infoList.unshift(
|
|
<tr key={infoList.length}>
|
|
<th className={styles.titleCell}>{`User ${index + 1}`}</th>
|
|
</tr>,
|
|
);
|
|
}
|
|
return infoList;
|
|
});
|
|
return (
|
|
<table className={styles.userInfoTable}>
|
|
<tbody>
|
|
{userInfoList}
|
|
</tbody>
|
|
</table>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
intl, meetingId, requesterUserId,
|
|
} = this.props;
|
|
return (
|
|
<Modal
|
|
title={intl.formatMessage(intlMessages.title)}
|
|
onRequestClose={() => Service.handleCloseUserInfo(meetingId, requesterUserId)}
|
|
>
|
|
{this.renderUserInfo()}
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
UserInfoComponent.propTypes = propTypes;
|
|
|
|
export default UserInfoComponent;
|