File size: 9,393 Bytes
1e92f2d |
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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
// @flow
import * as React from 'react';
import compose from 'recompose/compose';
import { connect } from 'react-redux';
import { withRouter } from 'react-router';
import { Link } from 'react-router-dom';
import editChannelMutation from 'shared/graphql/mutations/channel/editChannel';
import type { EditChannelType } from 'shared/graphql/mutations/channel/editChannel';
import type { GetChannelType } from 'shared/graphql/queries/channel/getChannel';
import deleteChannelMutation from 'shared/graphql/mutations/channel/deleteChannel';
import { openModal } from 'src/actions/modals';
import Tooltip from 'src/components/tooltip';
import { addToastWithTimeout } from 'src/actions/toasts';
import { Notice } from 'src/components/listItems/style';
import { PrimaryOutlineButton } from 'src/components/button';
import Icon from 'src/components/icon';
import { NullCard } from 'src/components/upsell';
import {
Input,
UnderlineInput,
TextArea,
Error,
} from 'src/components/formElements';
import { SectionCard, SectionTitle } from 'src/components/settingsViews/style';
import {
whiteSpaceRegex,
oddHyphenRegex,
} from 'src/views/viewHelpers/textValidationHelper';
import {
Form,
TertiaryActionContainer,
Description,
Actions,
GeneralNotice,
Location,
} from 'src/components/editForm/style';
import type { Dispatch } from 'redux';
type State = {
name: string,
nameError: boolean,
slug: string,
description: ?string,
descriptionError: boolean,
isPrivate: boolean,
channelId: string,
channelData: Object,
isLoading: boolean,
};
type Props = {
editChannel: Function,
dispatch: Dispatch<Object>,
channel: GetChannelType,
};
class ChannelWithData extends React.Component<Props, State> {
constructor(props) {
super(props);
const { channel } = this.props;
this.state = {
name: channel.name,
nameError: false,
slug: channel.slug,
description: channel.description,
descriptionError: false,
isPrivate: channel.isPrivate || false,
channelId: channel.id,
channelData: channel,
isLoading: false,
};
}
handleChange = e => {
const key = e.target.id;
const value = e.target.value;
const { isPrivate } = this.state;
const newState = {};
// checkboxes should reverse the value
if (key === 'isPrivate') {
newState[key] = !isPrivate;
} else {
newState[key] = value;
let hasInvalidChars = value.search(whiteSpaceRegex) >= 0;
let hasOddHyphens = value.search(oddHyphenRegex) >= 0;
this.updateStateOnError(newState, key, hasInvalidChars || hasOddHyphens);
}
this.setState(prevState => {
return Object.assign({}, prevState, {
...newState,
});
});
};
updateStateOnError(state, key, setError) {
if (key === 'name') {
state['nameError'] = setError;
} else {
state['descriptionError'] = setError;
}
}
save = e => {
e.preventDefault();
const { name, slug, description, isPrivate, channelId } = this.state;
const input = {
name,
slug,
description,
isPrivate,
channelId,
};
this.setState({
isLoading: true,
});
// if privacy changed in this edit
if (this.props.channel.isPrivate !== isPrivate) {
}
this.props
.editChannel(input)
.then(({ data }: EditChannelType) => {
const { editChannel: channel } = data;
this.setState({
isLoading: false,
});
// the mutation returns a channel object. if it exists,
if (channel !== undefined) {
this.props.dispatch(addToastWithTimeout('success', 'Channel saved!'));
}
return;
})
.catch(err => {
this.setState({
isLoading: false,
});
this.props.dispatch(addToastWithTimeout('error', err.message));
});
};
triggerDeleteChannel = (e, channelId) => {
e.preventDefault();
const { name, channelData } = this.state;
const message = (
<div>
<p>
Are you sure you want to delete{' '}
<b>
{channelData.community.name}/{name}
</b>
?
</p>
<p>All conversations posted in this channel will be deleted.</p>
<p>
All messages, reactions, and media shared in this channel will be
deleted.
</p>
<p>
<b>This cannot be undone.</b>
</p>
</div>
);
return this.props.dispatch(
openModal('DELETE_DOUBLE_CHECK_MODAL', {
id: channelId,
entity: 'channel',
message,
redirect: `/${channelData.community.slug}`,
})
);
};
render() {
const {
name,
nameError,
slug,
description,
descriptionError,
isPrivate,
isLoading,
} = this.state;
const { channel } = this.props;
if (!channel) {
return (
<NullCard
bg="channel"
heading={"This channel doesn't exist yet."}
copy={'Want to make it?'}
>
{/* TODO: wire up button */}
<PrimaryOutlineButton>Create</PrimaryOutlineButton>
</NullCard>
);
} else {
return (
<SectionCard>
<Location>
<Link to={`/${channel.community.slug}/${channel.slug}`}>
View Channel
</Link>
</Location>
<SectionTitle>Channel Settings</SectionTitle>
<Form onSubmit={this.save}>
<Input
defaultValue={name}
id="name"
onChange={this.handleChange}
dataCy="channel-name-input"
>
Name
</Input>
{nameError && (
<Error>Channel name can`t have invalid characters.</Error>
)}
<UnderlineInput defaultValue={slug} disabled>
{`URL: /${channel.community.slug}/`}
</UnderlineInput>
<TextArea
id="description"
defaultValue={description}
onChange={this.handleChange}
dataCy="channel-description-input"
>
Description
</TextArea>
{descriptionError && (
<Error>
Oops, there may be some invalid characters - try fixing that up.
</Error>
)}
{/* {slug !== 'general' &&
<Checkbox
id="isPrivate"
checked={isPrivate}
onChange={this.handleChange}
>
Private channel
</Checkbox>} */}
{isPrivate ? (
<Description>
Only channel members can see the threads, messages, and members
in this channel. You can manually approve users who request to
join this channel.
</Description>
) : channel.community.isPrivate ? (
<Description>
Members in your private community will be able to join this
channel, post threads and messages, and will be able to see
other members.
</Description>
) : (
<Description>
Anyone on Spectrum can join this channel, post threads and
messages, and will be able to see other members.
</Description>
)}
{// if the user is moving from private to public
this.props.channel.isPrivate && !isPrivate && (
<Notice>
When a private channel is made public all pending users will be
added as members of the channel. Blocked users will remain
blocked from viewing all content in this channel but in the
future any new person will be able to join.
</Notice>
)}
<Actions>
<PrimaryOutlineButton
onClick={this.save}
disabled={nameError || descriptionError}
loading={isLoading}
data-cy="save-button"
>
{isLoading ? 'Saving...' : 'Save'}
</PrimaryOutlineButton>
{slug !== 'general' && (
<TertiaryActionContainer>
<Tooltip content={`Delete ${name}`}>
<span>
<Icon
glyph="delete"
color="text.placeholder"
hoverColor="warn.alt"
onClick={e => this.triggerDeleteChannel(e, channel.id)}
data-cy="delete-channel-button"
/>
</span>
</Tooltip>
</TertiaryActionContainer>
)}
</Actions>
{slug === 'general' && (
<GeneralNotice>
The General channel is the default channel for your community.
It can’t be deleted or private, but you can still change the
name and description.
</GeneralNotice>
)}
</Form>
</SectionCard>
);
}
}
}
const Channel = compose(
deleteChannelMutation,
editChannelMutation,
withRouter
)(ChannelWithData);
export default connect()(Channel);
|