import * as Model from "../model"; import * as React from "react"; export interface Props { src: string; image: Model.Image; onClick: () => void; selected?: boolean; width: number; } export class Picture extends React.PureComponent { static displayName = "Picture"; render() { const src = `img/600/${this.props.src}`; return ; } private _srcset = (): string => { const srcs: string[] = []; Model.SIZES.forEach(size => { const width = this.props.image.width > this.props.image.height ? size : this.props.image.width / this.props.image.height * size; const scale = width / this.props.width; if (scale >= 1) { srcs.push(`img/${size}/${this.props.src} ${scale}x`); } }); return srcs.join(","); } }