blob: 702d9059c9e88cf47ee6495040139c40d76f0ddd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import * as Utils from 'utils/utils.jsx';
import Constants from 'utils/constants.jsx';
import {FormattedMessage} from 'react-intl';
import {Modal} from 'react-bootstrap';
import TeamStore from 'stores/team_store.jsx';
import * as TextFormatting from 'utils/text_formatting.jsx';
import React from 'react';
export default class ChannelInfoModal extends React.Component {
constructor(props) {
super(props);
this.onHide = this.onHide.bind(this);
this.state = {show: true};
}
onHide() {
this.setState({show: false});
}
render() {
let channel = this.props.channel;
let channelIcon;
if (!channel) {
const notFound = Utils.localizeMessage('channel_info.notFound', 'No Channel Found');
channel = {
display_name: notFound,
name: notFound,
purpose: notFound,
header: notFound,
id: notFound
};
}
if (channel.type === 'O') {
channelIcon = (<span className='fa fa-globe'/>);
} else if (channel.type === 'P') {
channelIcon = (<span className='fa fa-lock'/>);
}
const channelURL = TeamStore.getCurrentTeamUrl() + '/channels/' + channel.name;
let channelPurpose;
if (channel.purpose) {
channelPurpose = channel.purpose;
} else if (channel.name === Constants.DEFAULT_CHANNEL) {
channelPurpose = (
<FormattedMessage
id='default_channel.purpose'
defaultMessage='Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.'
/>
);
}
let channelPurposeElement;
if (channelPurpose) {
channelPurposeElement = (
<div className='form-group'>
<div className='info__label'>
<FormattedMessage
id='channel_info.purpose'
defaultMessage='Purpose:'
/>
</div>
<div className='info__value'>{channelPurpose}</div>
</div>
);
}
let channelHeader = null;
if (channel.header) {
channelHeader = (
<div className='form-group'>
<div className='info__label'>
<FormattedMessage
id='channel_info.header'
defaultMessage='Header:'
/>
</div>
<div
className='info__value'
dangerouslySetInnerHTML={{__html: TextFormatting.formatText(channel.header, {singleline: false, mentionHighlight: false})}}
/>
</div>
);
}
return (
<Modal
dialogClassName='about-modal'
show={this.state.show}
onHide={this.onHide}
onExited={this.props.onHide}
>
<Modal.Header closeButton={true}>
<Modal.Title>
<FormattedMessage
id='channel_info.about'
defaultMessage='About'
/>
<strong>{channelIcon}{channel.display_name}</strong>
</Modal.Title>
</Modal.Header>
<Modal.Body ref='modalBody'>
{channelPurposeElement}
{channelHeader}
<div className='form-group'>
<div className='info__label'>
<FormattedMessage
id='channel_info.url'
defaultMessage='URL:'
/>
</div>
<div className='info__value'>{channelURL}</div>
</div>
<div className='about-modal__hash form-group padding-top x2'>
<p>
<FormattedMessage
id='channel_info.id'
defaultMessage='ID: '
/>
{channel.id}
</p>
</div>
</Modal.Body>
</Modal>
);
}
}
ChannelInfoModal.propTypes = {
onHide: React.PropTypes.func.isRequired,
channel: React.PropTypes.object.isRequired
};
|