2016-09-05 19:28:08 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('react');
|
2016-09-07 12:55:44 +03:00
|
|
|
var classNames = require('classnames');
|
2016-09-05 19:28:08 +03:00
|
|
|
var sdk = require("../../../index");
|
2016-09-12 18:52:04 +03:00
|
|
|
var Invite = require("../../../Invite");
|
|
|
|
var MatrixClientPeg = require("../../../MatrixClientPeg");
|
2016-09-05 19:28:08 +03:00
|
|
|
var Avatar = require('../../../Avatar');
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'AddressTile',
|
|
|
|
|
|
|
|
propTypes: {
|
2016-09-12 18:52:04 +03:00
|
|
|
address: React.PropTypes.string.isRequired,
|
2016-09-05 19:28:08 +03:00
|
|
|
canDismiss: React.PropTypes.bool,
|
|
|
|
onDismissed: React.PropTypes.func,
|
2016-09-07 12:55:44 +03:00
|
|
|
justified: React.PropTypes.bool,
|
2016-09-07 18:18:50 +03:00
|
|
|
networkName: React.PropTypes.string,
|
|
|
|
networkUrl: React.PropTypes.string,
|
2016-09-05 19:28:08 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
canDismiss: false,
|
|
|
|
onDismissed: function() {}, // NOP
|
2016-09-07 12:55:44 +03:00
|
|
|
justified: false,
|
2016-09-07 18:18:50 +03:00
|
|
|
networkName: "",
|
|
|
|
networkUrl: "",
|
2016-09-05 19:28:08 +03:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2016-09-12 18:52:04 +03:00
|
|
|
var userId, name, imgUrl, email;
|
2016-09-05 19:28:08 +03:00
|
|
|
var BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
|
|
|
|
var TintableSvg = sdk.getComponent("elements.TintableSvg");
|
2016-09-12 18:52:04 +03:00
|
|
|
|
|
|
|
// Check if the addr is a valid type
|
|
|
|
var addrType = Invite.getAddressType(this.props.address);
|
|
|
|
if (addrType === "mx") {
|
|
|
|
let user = MatrixClientPeg.get().getUser(this.props.address);
|
|
|
|
if (user) {
|
|
|
|
userId = user.userId;
|
|
|
|
name = user.displayName || userId;
|
|
|
|
imgUrl = Avatar.avatarUrlForUser(user, 25, 25, "crop");
|
2016-09-12 19:15:56 +03:00
|
|
|
} else {
|
|
|
|
name="Unknown";
|
2016-09-12 19:25:14 +03:00
|
|
|
imgUrl = "img/avatar-error.svg";
|
2016-09-12 18:52:04 +03:00
|
|
|
}
|
|
|
|
} else if (addrType === "email") {
|
|
|
|
email = this.props.address;
|
|
|
|
name="email";
|
|
|
|
imgUrl = "img/icon-email-user.svg";
|
|
|
|
} else {
|
|
|
|
name="Unknown";
|
2016-09-12 19:25:14 +03:00
|
|
|
imgUrl = "img/avatar-error.svg";
|
2016-09-12 18:52:04 +03:00
|
|
|
}
|
2016-09-05 19:28:08 +03:00
|
|
|
|
2016-09-07 18:18:50 +03:00
|
|
|
var network;
|
|
|
|
if (this.props.networkUrl !== "") {
|
|
|
|
network = (
|
|
|
|
<div className="mx_AddressTile_network">
|
|
|
|
<BaseAvatar width={25} height={25} name={this.props.networkName} title="vector" url={this.props.networkUrl} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-09-12 18:52:04 +03:00
|
|
|
var info;
|
2016-09-12 19:25:14 +03:00
|
|
|
var error = false;
|
2016-09-12 18:52:04 +03:00
|
|
|
if (userId) {
|
|
|
|
var nameClasses = classNames({
|
|
|
|
"mx_AddressTile_name": true,
|
|
|
|
"mx_AddressTile_justified": this.props.justified,
|
|
|
|
});
|
|
|
|
|
|
|
|
var idClasses = classNames({
|
|
|
|
"mx_AddressTile_id": true,
|
|
|
|
"mx_AddressTile_justified": this.props.justified,
|
|
|
|
});
|
|
|
|
|
|
|
|
info = (
|
|
|
|
<div className="mx_AddressTile_mx">
|
|
|
|
<div className={nameClasses}>{ name }</div>
|
|
|
|
<div className={idClasses}>{ userId }</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else if (email) {
|
|
|
|
var emailClasses = classNames({
|
|
|
|
"mx_AddressTile_email": true,
|
|
|
|
"mx_AddressTile_justified": this.props.justified,
|
|
|
|
});
|
|
|
|
|
|
|
|
info = (
|
|
|
|
<div className={emailClasses}>{ email }</div>
|
|
|
|
);
|
|
|
|
} else {
|
2016-09-12 19:25:14 +03:00
|
|
|
error = true;
|
2016-09-12 18:52:04 +03:00
|
|
|
var unknownClasses = classNames({
|
|
|
|
"mx_AddressTile_unknown": true,
|
|
|
|
"mx_AddressTile_justified": this.props.justified,
|
|
|
|
});
|
|
|
|
|
|
|
|
info = (
|
|
|
|
<div className={unknownClasses}>Unknown Address</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-09-12 19:25:14 +03:00
|
|
|
var classes = classNames({
|
|
|
|
"mx_AddressTile": true,
|
|
|
|
"mx_AddressTile_error": error,
|
|
|
|
});
|
|
|
|
|
2016-09-05 19:28:08 +03:00
|
|
|
var dismiss;
|
|
|
|
if (this.props.canDismiss) {
|
|
|
|
dismiss = (
|
|
|
|
<div className="mx_AddressTile_dismiss" onClick={this.props.onDismissed} >
|
|
|
|
<TintableSvg src="img/icon-address-delete.svg" width="9" height="9" />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2016-09-12 19:25:14 +03:00
|
|
|
<div className={classes}>
|
2016-09-07 18:18:50 +03:00
|
|
|
{ network }
|
2016-09-05 19:28:08 +03:00
|
|
|
<div className="mx_AddressTile_avatar">
|
2016-09-06 15:07:06 +03:00
|
|
|
<BaseAvatar width={25} height={25} name={name} title={name} url={imgUrl} />
|
2016-09-05 19:28:08 +03:00
|
|
|
</div>
|
2016-09-12 18:52:04 +03:00
|
|
|
{ info }
|
2016-09-05 19:28:08 +03:00
|
|
|
{ dismiss }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|