You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
241 lines
6.4 KiB
TypeScript
241 lines
6.4 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
import autoBind from 'auto-bind';
|
|
|
|
import { motion } from 'framer-motion';
|
|
import { Component } from 'react';
|
|
import styled from 'styled-components';
|
|
import { ConversationModel } from '../../models/conversation';
|
|
import { Constants } from '../../session';
|
|
import { getConversationController } from '../../session/conversations';
|
|
import { initiateClosedGroupUpdate } from '../../session/group/closed-group';
|
|
import { initiateOpenGroupUpdate } from '../../session/group/open-group';
|
|
import { updateGroupNameModal } from '../../state/ducks/modalDialog';
|
|
import { THEME_GLOBALS } from '../../themes/globals';
|
|
import { pickFileForAvatar } from '../../types/attachments/VisualAttachment';
|
|
import { SessionWrapperModal } from '../SessionWrapperModal';
|
|
import { Avatar, AvatarSize } from '../avatar/Avatar';
|
|
import { SessionButton, SessionButtonColor, SessionButtonType } from '../basic/SessionButton';
|
|
import { SpacerMD } from '../basic/Text';
|
|
|
|
const StyledErrorMessage = styled(motion.p)`
|
|
text-align: center;
|
|
color: var(--danger-color);
|
|
display: block;
|
|
user-select: none;
|
|
`;
|
|
|
|
type Props = {
|
|
conversationId: string;
|
|
};
|
|
|
|
interface State {
|
|
groupName: string | undefined;
|
|
errorDisplayed: boolean;
|
|
errorMessage: string;
|
|
oldAvatarPath: string | null;
|
|
newAvatarObjecturl: string | null;
|
|
}
|
|
|
|
export class UpdateGroupNameDialog extends Component<Props, State> {
|
|
private readonly convo: ConversationModel;
|
|
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
autoBind(this);
|
|
this.convo = getConversationController().get(props.conversationId);
|
|
|
|
this.state = {
|
|
groupName: this.convo.getRealSessionUsername(),
|
|
errorDisplayed: false,
|
|
errorMessage: 'placeholder',
|
|
oldAvatarPath: this.convo.getAvatarPath(),
|
|
newAvatarObjecturl: null,
|
|
};
|
|
}
|
|
|
|
public componentDidMount() {
|
|
window.addEventListener('keyup', this.onKeyUp);
|
|
}
|
|
|
|
public componentWillUnmount() {
|
|
window.removeEventListener('keyup', this.onKeyUp);
|
|
}
|
|
|
|
public onClickOK() {
|
|
const { groupName, newAvatarObjecturl, oldAvatarPath } = this.state;
|
|
const trimmedGroupName = groupName?.trim();
|
|
if (!trimmedGroupName) {
|
|
this.onShowError(window.i18n('emptyGroupNameError'));
|
|
|
|
return;
|
|
}
|
|
|
|
if (trimmedGroupName.length > Constants.VALIDATION.MAX_GROUP_NAME_LENGTH) {
|
|
this.onShowError(window.i18n('invalidGroupNameTooLong'));
|
|
|
|
return;
|
|
}
|
|
|
|
if (
|
|
trimmedGroupName !== this.convo.getRealSessionUsername() ||
|
|
newAvatarObjecturl !== oldAvatarPath
|
|
) {
|
|
if (this.convo.isPublic()) {
|
|
void initiateOpenGroupUpdate(this.convo.id, trimmedGroupName, {
|
|
objectUrl: newAvatarObjecturl,
|
|
});
|
|
} else {
|
|
const members = this.convo.get('members') || [];
|
|
|
|
void initiateClosedGroupUpdate(this.convo.id, trimmedGroupName, members);
|
|
}
|
|
}
|
|
|
|
this.closeDialog();
|
|
}
|
|
|
|
public render() {
|
|
const okText = window.i18n('ok');
|
|
const cancelText = window.i18n('cancel');
|
|
const titleText = window.i18n('updateGroupDialogTitle', [
|
|
this.convo.getRealSessionUsername() || window.i18n('unknown'),
|
|
]);
|
|
|
|
const errorMsg = this.state.errorMessage;
|
|
const isAdmin = !this.convo.isPublic();
|
|
|
|
return (
|
|
<SessionWrapperModal
|
|
title={titleText}
|
|
onClose={() => this.closeDialog()}
|
|
additionalClassName="update-group-dialog"
|
|
>
|
|
{this.state.errorDisplayed ? (
|
|
<>
|
|
<SpacerMD />
|
|
<StyledErrorMessage
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: this.state.errorDisplayed ? 1 : 0 }}
|
|
transition={{ duration: THEME_GLOBALS['--duration-modal-error-shown'] }}
|
|
style={{ marginTop: this.state.errorDisplayed ? '0' : '-5px' }}
|
|
>
|
|
{errorMsg}
|
|
</StyledErrorMessage>
|
|
<SpacerMD />
|
|
</>
|
|
) : null}
|
|
|
|
{this.renderAvatar()}
|
|
<SpacerMD />
|
|
|
|
{isAdmin ? (
|
|
<input
|
|
type="text"
|
|
value={this.state.groupName}
|
|
placeholder={window.i18n('groupNamePlaceholder')}
|
|
onChange={this.onGroupNameChanged}
|
|
tabIndex={0}
|
|
required={true}
|
|
aria-required={true}
|
|
autoFocus={true}
|
|
maxLength={Constants.VALIDATION.MAX_GROUP_NAME_LENGTH}
|
|
data-testid="group-name-input"
|
|
/>
|
|
) : null}
|
|
|
|
<div className="session-modal__button-group">
|
|
<SessionButton
|
|
text={okText}
|
|
onClick={this.onClickOK}
|
|
buttonType={SessionButtonType.Simple}
|
|
/>
|
|
<SessionButton
|
|
text={cancelText}
|
|
buttonColor={SessionButtonColor.Danger}
|
|
buttonType={SessionButtonType.Simple}
|
|
onClick={this.closeDialog}
|
|
/>
|
|
</div>
|
|
</SessionWrapperModal>
|
|
);
|
|
}
|
|
|
|
private onShowError(msg: string) {
|
|
if (this.state.errorDisplayed) {
|
|
return;
|
|
}
|
|
|
|
this.setState({
|
|
errorDisplayed: true,
|
|
errorMessage: msg,
|
|
});
|
|
|
|
setTimeout(() => {
|
|
this.setState({
|
|
errorDisplayed: false,
|
|
});
|
|
}, 3000);
|
|
}
|
|
|
|
private onKeyUp(event: any) {
|
|
switch (event.key) {
|
|
case 'Enter':
|
|
this.onClickOK();
|
|
break;
|
|
case 'Esc':
|
|
case 'Escape':
|
|
this.closeDialog();
|
|
break;
|
|
default:
|
|
}
|
|
}
|
|
|
|
private closeDialog() {
|
|
window.removeEventListener('keyup', this.onKeyUp);
|
|
|
|
window.inboxStore?.dispatch(updateGroupNameModal(null));
|
|
}
|
|
|
|
private onGroupNameChanged(event: any) {
|
|
const groupName = event.target.value;
|
|
this.setState(state => {
|
|
return {
|
|
...state,
|
|
groupName,
|
|
};
|
|
});
|
|
}
|
|
|
|
private renderAvatar() {
|
|
const isPublic = this.convo.isPublic();
|
|
const pubkey = this.convo.id;
|
|
|
|
const { newAvatarObjecturl, oldAvatarPath } = this.state;
|
|
|
|
if (!isPublic) {
|
|
return undefined;
|
|
}
|
|
|
|
return (
|
|
<div className="avatar-center">
|
|
<div className="avatar-center-inner">
|
|
<Avatar
|
|
forcedAvatarPath={newAvatarObjecturl || oldAvatarPath}
|
|
size={AvatarSize.XL}
|
|
pubkey={pubkey}
|
|
/>
|
|
<div className="image-upload-section" role="button" onClick={this.fireInputEvent} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
private async fireInputEvent() {
|
|
const scaledObjectUrl = await pickFileForAvatar();
|
|
if (scaledObjectUrl) {
|
|
this.setState({ newAvatarObjecturl: scaledObjectUrl });
|
|
}
|
|
}
|
|
}
|