mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-15 14:31:34 +03:00
133 lines
4.2 KiB
JavaScript
133 lines
4.2 KiB
JavaScript
/*
|
|
Copyright 2016 OpenMarket 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';
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
|
|
export default class MemberDeviceInfo extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.onVerifyClick = this.onVerifyClick.bind(this);
|
|
this.onUnverifyClick = this.onUnverifyClick.bind(this);
|
|
this.onBlockClick = this.onBlockClick.bind(this);
|
|
this.onUnblockClick = this.onUnblockClick.bind(this);
|
|
}
|
|
|
|
onVerifyClick() {
|
|
MatrixClientPeg.get().setDeviceVerified(
|
|
this.props.userId, this.props.device.deviceId, true
|
|
);
|
|
}
|
|
|
|
onUnverifyClick() {
|
|
MatrixClientPeg.get().setDeviceVerified(
|
|
this.props.userId, this.props.device.deviceId, false
|
|
);
|
|
}
|
|
|
|
onBlockClick() {
|
|
MatrixClientPeg.get().setDeviceBlocked(
|
|
this.props.userId, this.props.device.deviceId, true
|
|
);
|
|
}
|
|
|
|
onUnblockClick() {
|
|
MatrixClientPeg.get().setDeviceBlocked(
|
|
this.props.userId, this.props.device.deviceId, false
|
|
);
|
|
}
|
|
|
|
render() {
|
|
var indicator = null, blockButton = null, verifyButton = null;
|
|
if (this.props.device.isBlocked()) {
|
|
blockButton = (
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_unblock"
|
|
onClick={this.onUnblockClick}>
|
|
Unblock
|
|
</button>
|
|
);
|
|
} else {
|
|
blockButton = (
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_block"
|
|
onClick={this.onBlockClick}>
|
|
Block
|
|
</button>
|
|
);
|
|
}
|
|
|
|
if (this.props.device.isVerified()) {
|
|
verifyButton = (
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_unverify"
|
|
onClick={this.onUnverifyClick}>
|
|
Unverify
|
|
</button>
|
|
);
|
|
} else {
|
|
verifyButton = (
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_verify"
|
|
onClick={this.onVerifyClick}>
|
|
Verify
|
|
</button>
|
|
);
|
|
}
|
|
|
|
if (this.props.device.isBlocked()) {
|
|
indicator = (
|
|
<div className="mx_MemberDeviceInfo_blocked">Blocked</div>
|
|
);
|
|
} else if (this.props.device.isVerified()) {
|
|
indicator = (
|
|
<div className="mx_MemberDeviceInfo_verified">Verified</div>
|
|
);
|
|
|
|
} else {
|
|
indicator = (
|
|
<div className="mx_MemberDeviceInfo_unverified">Unverified</div>
|
|
);
|
|
}
|
|
|
|
var deviceName = this.props.device.getDisplayName() || this.props.device.deviceId;
|
|
|
|
var info;
|
|
if (!this.props.hideInfo) {
|
|
info = (
|
|
<div>
|
|
<div className="mx_MemberDeviceInfo_deviceId">{deviceName}</div>
|
|
{indicator}
|
|
<div className="mx_MemberDeviceInfo_deviceKey">
|
|
{this.props.device.getFingerprint()}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// add the deviceId as a titletext to help with debugging
|
|
return (
|
|
<div className="mx_MemberDeviceInfo" title={this.props.device.deviceId}>
|
|
{ info }
|
|
{ verifyButton }
|
|
{ blockButton }
|
|
</div>
|
|
);
|
|
}
|
|
};
|
|
|
|
MemberDeviceInfo.displayName = 'MemberDeviceInfo';
|
|
MemberDeviceInfo.propTypes = {
|
|
userId: React.PropTypes.string.isRequired,
|
|
device: React.PropTypes.object.isRequired,
|
|
hideInfo: React.PropTypes.bool,
|
|
};
|