mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
91 lines
1.8 KiB
JavaScript
91 lines
1.8 KiB
JavaScript
import React, { Component } from "react";
|
|
import PropTypes from "prop-types";
|
|
import classnames from "classnames";
|
|
|
|
import fleetAvatar from "../../../../assets/images/fleet-avatar-24x24@2x.png";
|
|
|
|
const baseClass = "org-logo-icon";
|
|
|
|
class OrgLogoIcon extends Component {
|
|
static propTypes = {
|
|
className: PropTypes.string,
|
|
src: PropTypes.string.isRequired,
|
|
};
|
|
|
|
static defaultProps = {
|
|
src: fleetAvatar,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = { imageSrc: fleetAvatar };
|
|
}
|
|
|
|
componentWillMount() {
|
|
const { src } = this.props;
|
|
|
|
this.setState({ imageSrc: src });
|
|
|
|
return false;
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
const { src } = nextProps;
|
|
const { unchangedSourceProp } = this;
|
|
|
|
if (unchangedSourceProp(nextProps)) {
|
|
return false;
|
|
}
|
|
|
|
this.setState({ imageSrc: src });
|
|
|
|
return false;
|
|
}
|
|
|
|
shouldComponentUpdate(nextProps) {
|
|
const { imageSrc } = this.state;
|
|
const { unchangedSourceProp } = this;
|
|
|
|
if (unchangedSourceProp(nextProps) && imageSrc === fleetAvatar) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
onError = () => {
|
|
this.setState({ imageSrc: fleetAvatar });
|
|
|
|
return false;
|
|
};
|
|
|
|
unchangedSourceProp = (nextProps) => {
|
|
const { src: nextSrcProp } = nextProps;
|
|
const { src } = this.props;
|
|
|
|
return src === nextSrcProp;
|
|
};
|
|
|
|
render() {
|
|
const { className } = this.props;
|
|
const { imageSrc } = this.state;
|
|
const { onError } = this;
|
|
|
|
const classNames =
|
|
imageSrc === fleetAvatar
|
|
? classnames(baseClass, className, "default-fleet-logo")
|
|
: classnames(baseClass, className);
|
|
|
|
return (
|
|
<img
|
|
alt="Organization Logo"
|
|
className={classNames}
|
|
onError={onError}
|
|
src={imageSrc}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default OrgLogoIcon;
|