40 lines
955 B
JavaScript
40 lines
955 B
JavaScript
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
|
||
|
import I18n from '../../i18n';
|
||
|
import Item from './Item';
|
||
|
|
||
|
const Channel = ({ room, theme }) => {
|
||
|
const { description, topic, announcement } = room;
|
||
|
return (
|
||
|
<>
|
||
|
<Item
|
||
|
label={I18n.t('Description')}
|
||
|
content={description || `__${ I18n.t('No_label_provided', { label: 'description' }) }__`}
|
||
|
theme={theme}
|
||
|
/>
|
||
|
<Item
|
||
|
label={I18n.t('Topic')}
|
||
|
content={topic || `__${ I18n.t('No_label_provided', { label: 'topic' }) }__`}
|
||
|
theme={theme}
|
||
|
/>
|
||
|
<Item
|
||
|
label={I18n.t('Announcement')}
|
||
|
content={announcement || `__${ I18n.t('No_label_provided', { label: 'announcement' }) }__`}
|
||
|
theme={theme}
|
||
|
/>
|
||
|
<Item
|
||
|
label={I18n.t('Broadcast_Channel')}
|
||
|
content={room.broadcast && I18n.t('Broadcast_channel_Description')}
|
||
|
theme={theme}
|
||
|
/>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
Channel.propTypes = {
|
||
|
room: PropTypes.object,
|
||
|
theme: PropTypes.string
|
||
|
};
|
||
|
|
||
|
export default Channel;
|