Files
protocol/packages/website/ts/components/ui/image.tsx
Xianny 7423028fea Replace lodash with built-ins where possible to reduce bundle size (#1766)
* add tslint rule to disallow lodash.isUndefined

* add tslint rule to disallow lodash.isNull

* apply fixes
2019-04-10 09:36:32 -07:00

50 lines
1.4 KiB
TypeScript

import * as _ from 'lodash';
import * as React from 'react';
export interface ImageProps {
className?: string;
src?: string;
fallbackSrc?: string;
borderRadius?: string;
width?: string | number;
height?: string | number;
maxWidth?: string | number;
maxHeight?: string | number;
additionalStyle?: React.CSSProperties;
}
interface ImageState {
imageLoadFailed: boolean;
}
export class Image extends React.Component<ImageProps, ImageState> {
constructor(props: ImageProps) {
super(props);
this.state = {
imageLoadFailed: false,
};
}
public render(): React.ReactNode {
const src =
this.state.imageLoadFailed || this.props.src === undefined ? this.props.fallbackSrc : this.props.src;
return (
<img
className={this.props.className}
onError={this._onError.bind(this)}
src={src}
style={{
...this.props.additionalStyle,
borderRadius: this.props.borderRadius,
maxWidth: this.props.maxWidth,
maxHeight: this.props.maxHeight,
}}
height={this.props.height}
width={this.props.width}
/>
);
}
private _onError(): void {
this.setState({
imageLoadFailed: true,
});
}
}