77 lines
2.7 KiB
TypeScript
77 lines
2.7 KiB
TypeScript
/*
|
|
Copyright 2020-2021 The Matrix.org Foundation C.I.C.
|
|
|
|
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";
|
|
import { VerificationRequest } from "matrix-js-sdk/src/crypto-api";
|
|
import { User } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { MatrixClientPeg } from "../../../MatrixClientPeg";
|
|
import { _t } from "../../../languageHandler";
|
|
import BaseDialog from "./BaseDialog";
|
|
import EncryptionPanel from "../right_panel/EncryptionPanel";
|
|
|
|
interface IProps {
|
|
verificationRequest?: VerificationRequest;
|
|
verificationRequestPromise?: Promise<VerificationRequest>;
|
|
onFinished: () => void;
|
|
member?: User;
|
|
}
|
|
|
|
interface IState {
|
|
verificationRequest?: VerificationRequest;
|
|
}
|
|
|
|
export default class VerificationRequestDialog extends React.Component<IProps, IState> {
|
|
public constructor(props: IProps) {
|
|
super(props);
|
|
this.state = {
|
|
verificationRequest: this.props.verificationRequest,
|
|
};
|
|
this.props.verificationRequestPromise?.then((r) => {
|
|
this.setState({ verificationRequest: r });
|
|
});
|
|
}
|
|
|
|
public render(): React.ReactNode {
|
|
const request = this.state.verificationRequest;
|
|
const otherUserId = request?.otherUserId;
|
|
const member = this.props.member || (otherUserId ? MatrixClientPeg.safeGet().getUser(otherUserId) : null);
|
|
const title = request?.isSelfVerification
|
|
? _t("encryption|verification|verification_dialog_title_device")
|
|
: _t("encryption|verification|verification_dialog_title_user");
|
|
|
|
if (!member) return null;
|
|
|
|
return (
|
|
<BaseDialog
|
|
className="mx_InfoDialog"
|
|
onFinished={this.props.onFinished}
|
|
contentId="mx_Dialog_content"
|
|
title={title}
|
|
hasCancel={true}
|
|
>
|
|
<EncryptionPanel
|
|
layout="dialog"
|
|
verificationRequest={this.props.verificationRequest}
|
|
verificationRequestPromise={this.props.verificationRequestPromise}
|
|
onClose={this.props.onFinished}
|
|
member={member}
|
|
isRoomEncrypted={false}
|
|
/>
|
|
</BaseDialog>
|
|
);
|
|
}
|
|
}
|