element-web/src/components/views/right_panel/EncryptionPanel.js

49 lines
1.7 KiB
JavaScript
Raw Normal View History

2019-12-10 19:53:51 +03:00
/*
Copyright 2019 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';
2019-12-16 20:16:22 +03:00
import EncryptionInfo from "./EncryptionInfo";
import VerificationPanel from "./VerificationPanel";
import MatrixClientPeg from "../../../MatrixClientPeg";
2019-12-10 19:53:51 +03:00
export default class EncryptionPanel extends React.PureComponent {
constructor(props) {
super(props);
this.state = {};
}
2019-12-10 19:53:51 +03:00
render() {
2019-12-16 20:16:22 +03:00
const request = this.props.verificationRequest || this.state.verificationRequest;
const {member} = this.props;
2019-12-10 19:53:51 +03:00
if (request) {
2019-12-16 20:16:22 +03:00
return <VerificationPanel request={request} />;
} else if (member) {
return <EncryptionInfo onStartVerification={this._onStartVerification} member={member} />;
} else {
return <p>Not a member nor request, not sure what to render</p>;
2019-12-10 19:53:51 +03:00
}
}
2019-12-16 20:16:22 +03:00
_onStartVerification = async () => {
const client = MatrixClientPeg.get();
const {member} = this.props;
// TODO: get the room id of the DM here?
// will this panel be shown in non-DM rooms?
const verificationRequest = await client.requestVerificationDM(member.userId, member.roomId);
this.setState({verificationRequest});
};
2019-12-10 19:53:51 +03:00
}