2016-06-08 15:13:41 +03:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var React = require('react');
|
|
|
|
var MatrixClientPeg = require("../../../MatrixClientPeg");
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'MemberDeviceInfo',
|
|
|
|
propTypes: {
|
|
|
|
userId: React.PropTypes.string.isRequired,
|
|
|
|
device: React.PropTypes.object.isRequired,
|
|
|
|
},
|
|
|
|
|
|
|
|
onVerifyClick: function() {
|
2016-06-09 21:07:01 +03:00
|
|
|
MatrixClientPeg.get().setDeviceVerified(
|
|
|
|
this.props.userId, this.props.device.id, true
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
onUnverifyClick: function() {
|
|
|
|
MatrixClientPeg.get().setDeviceVerified(
|
|
|
|
this.props.userId, this.props.device.id, false
|
|
|
|
);
|
2016-06-08 15:13:41 +03:00
|
|
|
},
|
|
|
|
|
2016-06-23 19:27:23 +03:00
|
|
|
onBlockClick: function() {
|
|
|
|
MatrixClientPeg.get().setDeviceBlocked(
|
|
|
|
this.props.userId, this.props.device.id, true
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
onUnblockClick: function() {
|
|
|
|
MatrixClientPeg.get().setDeviceBlocked(
|
|
|
|
this.props.userId, this.props.device.id, false
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2016-06-08 15:13:41 +03:00
|
|
|
render: function() {
|
2016-06-23 19:27:23 +03:00
|
|
|
var indicator = null, blockButton = null, verifyButton = null;
|
|
|
|
if (this.props.device.blocked) {
|
|
|
|
blockButton = (
|
|
|
|
<div className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_unblock"
|
|
|
|
onClick={this.onUnblockClick}>
|
|
|
|
Unblock
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
blockButton = (
|
|
|
|
<div className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_block"
|
|
|
|
onClick={this.onBlockClick}>
|
|
|
|
Block
|
|
|
|
</div>
|
2016-06-08 15:13:41 +03:00
|
|
|
);
|
2016-06-23 19:27:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.props.device.verified) {
|
|
|
|
verifyButton = (
|
2016-06-09 21:07:01 +03:00
|
|
|
<div className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_unverify"
|
|
|
|
onClick={this.onUnverifyClick}>
|
|
|
|
Unverify
|
|
|
|
</div>
|
|
|
|
);
|
2016-06-08 15:13:41 +03:00
|
|
|
} else {
|
2016-06-23 19:27:23 +03:00
|
|
|
verifyButton = (
|
2016-06-09 21:07:01 +03:00
|
|
|
<div className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_verify"
|
2016-06-08 15:13:41 +03:00
|
|
|
onClick={this.onVerifyClick}>
|
|
|
|
Verify
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-06-23 19:27:23 +03:00
|
|
|
|
|
|
|
if (this.props.device.blocked) {
|
|
|
|
indicator = (
|
|
|
|
<div className="mx_MemberDeviceInfo_blocked">✖</div>
|
|
|
|
);
|
|
|
|
} else if (this.props.device.verified) {
|
|
|
|
indicator = (
|
|
|
|
<div className="mx_MemberDeviceInfo_verified">✔</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
indicator = (
|
|
|
|
<div className="mx_MemberDeviceInfo_unverified">?</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-08-03 16:18:09 +03:00
|
|
|
var deviceName = this.props.device.display_name || this.props.device.id;
|
|
|
|
|
2016-06-08 15:13:41 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_MemberDeviceInfo">
|
2016-08-03 16:18:09 +03:00
|
|
|
<div className="mx_MemberDeviceInfo_deviceId">{deviceName}</div>
|
2016-06-08 15:13:41 +03:00
|
|
|
{indicator}
|
2016-06-23 19:27:23 +03:00
|
|
|
{verifyButton}
|
|
|
|
{blockButton}
|
2016-06-08 15:13:41 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|