lbry-desktop/ui/js/component/uriIndicator/view.jsx

65 lines
1.3 KiB
React
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { Icon } from "component/common";
2017-05-02 07:25:31 +02:00
2017-06-06 06:21:55 +02:00
class UriIndicator extends React.Component {
2017-05-21 16:42:34 +02:00
componentWillMount() {
2017-06-06 23:19:12 +02:00
this.resolve(this.props);
2017-05-21 16:42:34 +02:00
}
2017-05-02 07:25:31 +02:00
2017-05-21 16:42:34 +02:00
componentWillReceiveProps(nextProps) {
2017-06-06 23:19:12 +02:00
this.resolve(nextProps);
2017-05-10 05:06:48 +02:00
}
2017-05-21 16:42:34 +02:00
resolve(props) {
2017-06-06 23:19:12 +02:00
const { isResolvingUri, resolveUri, claim, uri } = props;
2017-05-10 05:06:48 +02:00
2017-06-06 23:19:12 +02:00
if (!isResolvingUri && claim === undefined && uri) {
resolveUri(uri);
2017-05-21 16:42:34 +02:00
}
2017-05-02 07:25:31 +02:00
}
2017-05-21 16:42:34 +02:00
render() {
2017-06-06 23:19:12 +02:00
const { claim, uri, isResolvingUri } = this.props;
2017-05-21 16:42:34 +02:00
if (isResolvingUri) {
2017-06-06 23:19:12 +02:00
return <span className="empty">Validating...</span>;
2017-05-21 16:42:34 +02:00
}
if (!claim) {
2017-06-06 23:19:12 +02:00
return <span className="empty">Unused</span>;
2017-05-21 16:42:34 +02:00
}
2017-05-02 07:25:31 +02:00
2017-05-21 16:42:34 +02:00
const {
channel_name: channelName,
has_signature: hasSignature,
signature_is_valid: signatureIsValid,
2017-06-06 23:19:12 +02:00
} = claim;
2017-05-21 16:42:34 +02:00
if (!hasSignature || !channelName) {
return <span className="empty">Anonymous</span>;
}
let icon, modifier;
if (signatureIsValid) {
2017-06-06 23:19:12 +02:00
modifier = "valid";
2017-05-21 16:42:34 +02:00
} else {
2017-06-06 23:19:12 +02:00
icon = "icon-times-circle";
modifier = "invalid";
2017-05-21 16:42:34 +02:00
}
return (
<span>
2017-06-06 23:19:12 +02:00
{channelName} {" "}
{!signatureIsValid
? <Icon
icon={icon}
className={`channel-indicator__icon channel-indicator__icon--${modifier}`}
/>
: ""}
2017-05-21 16:42:34 +02:00
</span>
2017-06-06 23:19:12 +02:00
);
2017-05-21 16:42:34 +02:00
}
2017-05-02 07:25:31 +02:00
}
2017-06-06 06:21:55 +02:00
export default UriIndicator;