2017-02-14 16:40:19 +03:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
2021-03-19 05:50:34 +03:00
|
|
|
import { MatrixClient } from 'matrix-js-sdk/src/client';
|
2021-06-14 23:36:56 +03:00
|
|
|
import RoomMember from "matrix-js-sdk/src/models/room-member.js";
|
2019-12-20 04:19:56 +03:00
|
|
|
import * as sdk from '../../../index';
|
2017-05-25 13:39:08 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2017-08-04 17:00:34 +03:00
|
|
|
import { GroupMemberType } from '../../../groups';
|
2021-06-14 23:36:56 +03:00
|
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|
|
|
import { mediaFromMxc } from "../../../customisations/Media";
|
|
|
|
|
|
|
|
interface IProps {
|
|
|
|
// matrix-js-sdk (room) member object. Supply either this or 'groupMember'
|
|
|
|
member: RoomMember;
|
|
|
|
// group member object. Supply either this or 'member'
|
|
|
|
groupMember: GroupMemberType;
|
|
|
|
// needed if a group member is specified
|
|
|
|
matrixClient?: MatrixClient,
|
|
|
|
action: string; // eg. 'Ban'
|
|
|
|
title: string; // eg. 'Ban this user?'
|
|
|
|
|
|
|
|
// Whether to display a text field for a reason
|
|
|
|
// If true, the second argument to onFinished will
|
|
|
|
// be the string entered.
|
|
|
|
askReason?: boolean;
|
|
|
|
danger?: boolean;
|
|
|
|
onFinished: (success: boolean, reason?: HTMLInputElement) => void;
|
|
|
|
}
|
2017-02-14 16:40:19 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A dialog for confirming an operation on another user.
|
|
|
|
* Takes a user ID and a verb, displays the target user prominently
|
2017-02-14 19:09:02 +03:00
|
|
|
* such that it should be easy to confirm that the operation is being
|
2017-02-14 16:40:19 +03:00
|
|
|
* performed on the right person, and displays the operation prominently
|
|
|
|
* to make it obvious what is going to happen.
|
|
|
|
* Also tweaks the style for 'dangerous' actions (albeit only with colour)
|
|
|
|
*/
|
2021-03-09 05:45:39 +03:00
|
|
|
@replaceableComponent("views.dialogs.ConfirmUserActionDialog")
|
2021-06-14 23:36:56 +03:00
|
|
|
export default class ConfirmUserActionDialog extends React.Component<IProps> {
|
|
|
|
private reasonField: React.RefObject<HTMLInputElement> = React.createRef();
|
2017-02-14 16:40:19 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
static defaultProps = {
|
2017-02-14 16:40:19 +03:00
|
|
|
danger: false,
|
2017-02-17 20:27:46 +03:00
|
|
|
askReason: false,
|
2020-08-29 14:14:16 +03:00
|
|
|
};
|
|
|
|
|
2021-06-14 23:36:56 +03:00
|
|
|
public onOk = (): void => {
|
2017-02-17 20:27:46 +03:00
|
|
|
let reason;
|
2021-06-14 23:36:56 +03:00
|
|
|
if (this.reasonField) {
|
|
|
|
reason = this.reasonField.current;
|
2017-02-17 20:27:46 +03:00
|
|
|
}
|
|
|
|
this.props.onFinished(true, reason);
|
2020-08-29 14:14:16 +03:00
|
|
|
};
|
2017-02-14 16:40:19 +03:00
|
|
|
|
2021-06-14 23:36:56 +03:00
|
|
|
public onCancel = (): void => {
|
2017-02-14 16:40:19 +03:00
|
|
|
this.props.onFinished(false);
|
2020-08-29 14:14:16 +03:00
|
|
|
};
|
2017-02-14 16:40:19 +03:00
|
|
|
|
2021-06-14 23:36:56 +03:00
|
|
|
public render() {
|
2017-02-14 16:40:19 +03:00
|
|
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
2017-12-23 06:15:53 +03:00
|
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
2017-02-14 16:40:19 +03:00
|
|
|
const MemberAvatar = sdk.getComponent("views.avatars.MemberAvatar");
|
2017-08-04 17:00:34 +03:00
|
|
|
const BaseAvatar = sdk.getComponent("views.avatars.BaseAvatar");
|
2017-02-14 16:40:19 +03:00
|
|
|
|
2017-12-23 06:15:53 +03:00
|
|
|
const confirmButtonClass = this.props.danger ? 'danger' : '';
|
2017-02-17 20:27:46 +03:00
|
|
|
|
|
|
|
let reasonBox;
|
|
|
|
if (this.props.askReason) {
|
|
|
|
reasonBox = (
|
|
|
|
<div>
|
|
|
|
<form onSubmit={this.onOk}>
|
|
|
|
<input className="mx_ConfirmUserActionDialog_reasonField"
|
2021-06-14 23:36:56 +03:00
|
|
|
ref={this.reasonField}
|
2017-09-28 13:21:06 +03:00
|
|
|
placeholder={_t("Reason")}
|
2017-02-17 20:27:46 +03:00
|
|
|
autoFocus={true}
|
|
|
|
/>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-08-04 17:00:34 +03:00
|
|
|
let avatar;
|
|
|
|
let name;
|
|
|
|
let userId;
|
|
|
|
if (this.props.member) {
|
|
|
|
avatar = <MemberAvatar member={this.props.member} width={48} height={48} />;
|
|
|
|
name = this.props.member.name;
|
|
|
|
userId = this.props.member.userId;
|
|
|
|
} else {
|
2021-03-04 05:06:46 +03:00
|
|
|
const httpAvatarUrl = this.props.groupMember.avatarUrl
|
|
|
|
? mediaFromMxc(this.props.groupMember.avatarUrl).getSquareThumbnailHttp(48)
|
|
|
|
: null;
|
2017-11-09 15:24:20 +03:00
|
|
|
name = this.props.groupMember.displayname || this.props.groupMember.userId;
|
2017-08-04 17:00:34 +03:00
|
|
|
userId = this.props.groupMember.userId;
|
2017-11-09 15:24:20 +03:00
|
|
|
avatar = <BaseAvatar name={name} url={httpAvatarUrl} width={48} height={48} />;
|
2017-08-04 17:00:34 +03:00
|
|
|
}
|
|
|
|
|
2017-02-14 16:40:19 +03:00
|
|
|
return (
|
2017-02-17 20:27:46 +03:00
|
|
|
<BaseDialog className="mx_ConfirmUserActionDialog" onFinished={this.props.onFinished}
|
2017-10-12 22:37:12 +03:00
|
|
|
title={this.props.title}
|
2017-12-03 23:38:21 +03:00
|
|
|
contentId='mx_Dialog_content'
|
2017-02-14 16:40:19 +03:00
|
|
|
>
|
2017-12-03 23:38:21 +03:00
|
|
|
<div id="mx_Dialog_content" className="mx_Dialog_content">
|
2017-02-14 16:40:19 +03:00
|
|
|
<div className="mx_ConfirmUserActionDialog_avatar">
|
2017-09-28 13:21:06 +03:00
|
|
|
{ avatar }
|
2017-02-14 16:40:19 +03:00
|
|
|
</div>
|
2017-09-28 13:21:06 +03:00
|
|
|
<div className="mx_ConfirmUserActionDialog_name">{ name }</div>
|
|
|
|
<div className="mx_ConfirmUserActionDialog_userId">{ userId }</div>
|
2017-02-14 16:40:19 +03:00
|
|
|
</div>
|
2017-09-28 13:21:06 +03:00
|
|
|
{ reasonBox }
|
2017-12-23 06:15:53 +03:00
|
|
|
<DialogButtons primaryButton={this.props.action}
|
|
|
|
onPrimaryButtonClick={this.onOk}
|
|
|
|
primaryButtonClass={confirmButtonClass}
|
|
|
|
focus={!this.props.askReason}
|
|
|
|
onCancel={this.onCancel} />
|
2017-02-14 16:40:19 +03:00
|
|
|
</BaseDialog>
|
|
|
|
);
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
|
|
|
}
|