File size: 18,595 Bytes
f5071ca |
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 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 |
import React, { useState, KeyboardEvent } from 'react';
import { useSelector, useDispatch } from 'react-redux';
import {
Paper,
Button,
Card,
CardContent,
Typography,
CardActionArea,
CardMedia,
Slide,
TextField,
Grid
} from '@material-ui/core';
import { GroupAdd, AddToQueue } from '@material-ui/icons';
import axios from '../Api/api';
import { addChannel, addServer } from '../../actions';
import { StoreState } from '../../reducers';
interface ActionsModalProps {
handleSnackMessage: (response: string, pass: boolean) => void;
modalType: string;
}
export default function ActionsModal(props: ActionsModalProps) {
// Get State from Redux Store
const { userId } = useSelector((state: StoreState) => state.user);
const { activeServer, activeChannel } = useSelector((state: StoreState) => state.chat);
const dispatch = useDispatch();
// Get data from props
const { handleSnackMessage, modalType } = props;
// Local state to control Modal Windows + Data fields
const [mainVisible, setMainVisible] = useState(true);
const [mainDirection, setMainDirection]: any = useState('left');
const [createVisible, setCreateVisible] = useState(false);
const [createDirection, setCreateDirection]: any = useState('left');
const [joinVisible, setJoinVisible] = useState(false);
const [joinDirection, setJoinDirection]: any = useState('left');
const [serverName, setServerName] = useState('');
const [serverId, setServerId] = useState('');
const [channelName, setChannelName] = useState('');
// Handles showing the Join Server window
const showhandleJoinServer = () => {
setMainDirection('right');
setCreateDirection('left');
setJoinVisible(true);
setMainVisible(false);
};
// Handles showing the Create Server window
const showhandleCreateServer = () => {
setMainDirection('right');
setJoinDirection('left');
setCreateVisible(true);
setMainVisible(false);
};
// Method to handle creation of servers
const handleCreateServer = async (serverName: string, userId: string) => {
try {
const response = await axios.post(`/server/create?serverName=${serverName}&userId=${userId}`);
dispatch(addServer(response.data));
const message = `Server ${response.data.server.split('-')[0]} with ID ${
response.data.server.split('-')[1]
} created`;
handleSnackMessage(message, false);
} catch (err) {
handleSnackMessage(err.response.data, false);
}
};
// Method to handle joining of servers
const handleJoinServer = async (serverId: string, userId: string) => {
try {
const response = await axios.post(`/server/join?serverId=${serverId}&userId=${userId}`);
handleSnackMessage(response.data, true);
} catch (err) {
handleSnackMessage(err.response.data, false);
}
};
// Method to handle renaming of servers
const handleRenameServer = async (serverName: string, serverId: string) => {
try {
const response = await axios.post(
`/server/rename?serverName=${serverName}&serverId=${serverId}&userId=${userId}`
);
handleSnackMessage(response.data, true);
} catch (err) {
handleSnackMessage(err.response.data, false);
}
};
// Method to handle deleting servers
const handleDeleteServer = async (serverId: string, userId: string) => {
try {
const response = await axios.delete(`/server/delete?serverId=${serverId}&userId=${userId}`);
handleSnackMessage(response.data, true);
} catch (err) {
handleSnackMessage(err.response.data, false);
}
};
// Method to handle creation of channels
const handleCreateChannel = async (channelName: string, server: string) => {
try {
const response = await axios.post(`/channel/create?channelName=${channelName}&server=${server}&userId=${userId}`);
dispatch(addChannel(response.data));
const message = `Server ${response.data.channel.split('-')[0]} with ID ${response.data.channel.split(
'-'[1]
)} created`;
handleSnackMessage(message, false);
} catch (err) {
handleSnackMessage(err.response.data, false);
}
};
// Method to handle renaming of channels
const handleRenameChannel = async (channelName: string, channelId: string) => {
try {
const response = await axios.post(
`/channel/rename?channelName=${channelName}&channelId=${channelId}&serverId=${
activeServer.split('-')[1]
}&userId=${userId}`
);
handleSnackMessage(response.data, true);
} catch (err) {
handleSnackMessage(err.response.data, false);
}
};
// Method to handle deleting of channels
const handleDeleteChannel = async (channelName: string, channelId: string) => {
try {
const response = await axios.delete(
`/channel/delete?channelId=${channelId}&serverId=${activeServer.split('-')[1]}&userId=${userId}`
);
handleSnackMessage(response.data, true);
} catch (err) {
handleSnackMessage(err.response.data, false);
}
};
// Handles keypress and calls the callback method
const handleKeyPress = (e: KeyboardEvent, callbackMethod: Function) => {
if (e.key === 'Enter') {
callbackMethod();
}
};
// Renders the Main Modal Window with options to Create / Join server
const renderMainServer = () => {
return (
<Slide direction={mainDirection} in={mainVisible} timeout={500} mountOnEnter unmountOnExit>
<Grid container spacing={3} justify="center" alignItems="center">
<Grid item xs={12}>
<Typography variant="h5" color="primary" align="center">
Another server? Wow you're popular!
</Typography>
</Grid>
<Grid item sm={6} xs={12}>
<Card className="grid-card">
<CardActionArea onClick={() => showhandleCreateServer()}>
<CardContent>
<Typography variant="h5" color="primary" gutterBottom>
Create
</Typography>
<Typography variant="body1" paragraph>
Create a server and invite all your buddies.
</Typography>
<CardMedia>
<AddToQueue className="modal-card-icon" />
</CardMedia>
<Button variant="contained" color="primary" className="modal-button">
Create a server
</Button>
</CardContent>
</CardActionArea>
</Card>
</Grid>
<Grid item sm={6} xs={12}>
<Card className="grid-card">
<CardActionArea onClick={() => showhandleJoinServer()}>
<CardContent>
<Typography variant="h5" color="secondary" gutterBottom>
Join
</Typography>
<Typography variant="body1" paragraph>
Join a friends server and pwn some noobs!
</Typography>
<CardMedia>
<GroupAdd className="modal-card-icon" />
</CardMedia>
<Button variant="contained" color="secondary" className="modal-button">
Join a server
</Button>
</CardContent>
</CardActionArea>
</Card>
</Grid>
</Grid>
</Slide>
);
};
// Renders the Server Create Modal Window
const renderServerCreate = () => {
return (
<Slide direction={createDirection} in={createVisible} mountOnEnter unmountOnExit timeout={500}>
<Grid container spacing={3} justify="center" alignItems="center">
<Grid item xs={12}>
<Typography variant="h5" color="primary" align="center">
Create a Server!
</Typography>
</Grid>
<Grid item xs={12} className="grid-textfield">
<Typography variant="body1" paragraph>
{' '}
Enter a Server Name to create a server and get access to unlimited chat channels!{' '}
</Typography>
<TextField
id="create-server-field"
label="Server Name"
value={serverName}
onChange={e => setServerName(e.target.value)}
onKeyPress={e => handleKeyPress(e, () => handleCreateServer(serverName, userId))}
margin="dense"
variant="outlined"
autoComplete="off"
/>
</Grid>
<Grid item xs={12} className="grid-button">
<Button
className="modal-button"
variant="contained"
color="primary"
onClick={() => handleCreateServer(serverName, userId)}
>
Create Server
</Button>
</Grid>
</Grid>
</Slide>
);
};
// Renders a modal with an input
const renderServerRename = () => {
return (
<Slide direction="left" in={true} mountOnEnter unmountOnExit timeout={500}>
<Grid container spacing={3} justify="center" alignItems="center">
<Grid item xs={12}>
<Typography variant="h5" color="primary" align="center">
Rename Server
</Typography>
</Grid>
<Grid item xs={12} className="grid-textfield">
<Typography variant="body1" paragraph>
{' '}
Enter a new Server Name for Server - {activeServer.split('-')[0]}{' '}
</Typography>
<TextField
id="create-channel-field"
label="Channel Name"
value={serverName}
onChange={e => setServerName(e.target.value)}
onKeyPress={e => handleKeyPress(e, () => handleRenameServer(serverName, activeServer.split('-')[1]))}
margin="dense"
variant="outlined"
autoComplete="off"
/>
</Grid>
<Grid item xs={12} className="grid-button">
<Button
className="modal-button"
variant="contained"
color="primary"
onClick={() => handleRenameServer(serverName, activeServer.split('-')[1])}
>
Rename Server
</Button>
</Grid>
</Grid>
</Slide>
);
};
// Renders a modal to delete a server
const renderServerDelete = () => {
return (
<Slide direction="left" in={true} mountOnEnter unmountOnExit timeout={500}>
<Grid container spacing={3} justify="center" alignItems="center">
<Grid item xs={12}>
<Typography variant="h5" color="primary" align="center">
Delete Server
</Typography>
</Grid>
<Grid item xs={12} className="grid-textfield">
<Typography variant="body1" paragraph>
{' '}
Are you sure you want to delete - {activeServer.split('-')[0]}{' '}
</Typography>
</Grid>
<Grid item xs={12} className="grid-button">
<Button
className="modal-button"
variant="contained"
color="primary"
style={{ backgroundColor: 'green', marginRight: '8px' }}
onClick={() => handleDeleteServer(activeServer.split('-')[1], userId)}
>
Yes
</Button>
<Button
className="modal-button"
variant="contained"
color="primary"
style={{ backgroundColor: 'red', marginLeft: '8px' }}
onClick={() => handleSnackMessage('Not deleting channel', false)}
>
No
</Button>
</Grid>
</Grid>
</Slide>
);
};
// Renders the Server Join Modal Window
const renderServerJoin = () => {
return (
<Slide direction={joinDirection} in={joinVisible} mountOnEnter unmountOnExit timeout={500}>
<Grid container spacing={3} justify="center" alignItems="center">
<Grid item xs={12}>
<Typography variant="h5" color="primary" align="center">
Join a Server!
</Typography>
</Grid>
<Grid item xs={12} className="grid-textfield">
<Typography variant="body1" paragraph>
{' '}
Enter a the Server Id provided by your friend and start chatting right now!{' '}
</Typography>
<TextField
id="join-server-field"
label="Server Id"
value={serverId}
onChange={e => setServerId(e.target.value)}
onKeyPress={e => handleKeyPress(e, () => handleJoinServer(serverId, userId))}
margin="dense"
variant="outlined"
autoComplete="off"
/>
</Grid>
<Grid item xs={12} className="grid-button">
<Button
className="modal-button"
variant="contained"
color="primary"
onClick={() => handleJoinServer(serverId, userId)}
>
Join Server
</Button>
</Grid>
</Grid>
</Slide>
);
};
// Renders the Channel Create Modal Window
const renderChannelCreate = () => {
return (
<Slide direction="left" in={true} mountOnEnter unmountOnExit timeout={500}>
<Grid container spacing={3} justify="center" alignItems="center">
<Grid item xs={12}>
<Typography variant="h5" color="primary" align="center">
Create a Channel!
</Typography>
</Grid>
<Grid item xs={12} className="grid-textfield">
<Typography variant="body1" paragraph>
{' '}
Enter a Channel Name for your new channel and start chatting right now!{' '}
</Typography>
<TextField
id="create-channel-field"
label="Channel Name"
value={channelName}
onChange={e => setChannelName(e.target.value)}
onKeyPress={e => handleKeyPress(e, () => handleCreateChannel(channelName, activeServer))}
margin="dense"
variant="outlined"
autoComplete="off"
/>
</Grid>
<Grid item xs={12} className="grid-button">
<Button
className="modal-button"
variant="contained"
color="primary"
onClick={() => handleCreateChannel(channelName, activeServer)}
>
Create Channel
</Button>
</Grid>
</Grid>
</Slide>
);
};
// Renders a modal to rename a channel
const renderChannelRename = () => {
return (
<Slide direction="left" in={true} mountOnEnter unmountOnExit timeout={500}>
<Grid container spacing={3} justify="center" alignItems="center">
<Grid item xs={12}>
<Typography variant="h5" color="primary" align="center">
Rename Chanel
</Typography>
</Grid>
<Grid item xs={12} className="grid-textfield">
<Typography variant="body1" paragraph>
{' '}
Enter a new Channel Name for Channel - {activeChannel.split('-')[0]}{' '}
</Typography>
<TextField
id="create-channel-field"
label="Channel Name"
value={channelName}
onChange={e => setChannelName(e.target.value)}
onKeyPress={e => handleKeyPress(e, () => handleRenameChannel(channelName, activeChannel.split('-')[1]))}
margin="dense"
variant="outlined"
autoComplete="off"
/>
</Grid>
<Grid item xs={12} className="grid-button">
<Button
className="modal-button"
variant="contained"
color="primary"
onClick={() => handleRenameChannel(channelName, activeChannel.split('-')[1])}
>
Rename Channel
</Button>
</Grid>
</Grid>
</Slide>
);
};
// Renders a modal to delete a channel
const renderChannelDelete = () => {
return (
<Slide direction="left" in={true} mountOnEnter unmountOnExit timeout={500}>
<Grid container spacing={3} justify="center" alignItems="center">
<Grid item xs={12}>
<Typography variant="h5" color="primary" align="center">
Delete Channel
</Typography>
</Grid>
<Grid item xs={12} className="grid-textfield">
<Typography variant="body1" paragraph>
{' '}
Are you sure you want to delete - {activeChannel.split('-')[0]}{' '}
</Typography>
</Grid>
<Grid item xs={12} className="grid-button">
<Button
className="modal-button"
variant="contained"
color="primary"
style={{ backgroundColor: 'green', marginRight: '8px' }}
onClick={() => handleDeleteChannel(channelName, activeChannel.split('-')[1])}
>
Yes
</Button>
<Button
className="modal-button"
variant="contained"
color="primary"
style={{ backgroundColor: 'red', marginLeft: '8px' }}
onClick={() => handleSnackMessage('Not deleting channel', false)}
>
No
</Button>
</Grid>
</Grid>
</Slide>
);
};
if (modalType === 'server-create-join')
return (
<Paper className="container-prompt">
{renderMainServer()}
{renderServerCreate()}
{renderServerJoin()}
</Paper>
);
else if (modalType === 'channel-create') {
return <Paper className="container-prompt">{renderChannelCreate()}</Paper>;
} else if (modalType === 'server-rename') {
return <Paper className="container-prompt">{renderServerRename()}</Paper>;
} else if (modalType === 'channel-rename') {
return <Paper className="container-prompt">{renderChannelRename()}</Paper>;
} else if (modalType === 'channel-delete') {
return <Paper className="container-prompt">{renderChannelDelete()}</Paper>;
} else if (modalType === 'server-delete') {
return <Paper className="container-prompt">{renderServerDelete()}</Paper>;
} else return null;
}
|