You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
691 B
TypeScript
41 lines
691 B
TypeScript
/**
|
|
* @prettier
|
|
*/
|
|
import React from 'react';
|
|
|
|
|
|
interface Props {
|
|
imageURL?: string;
|
|
onClose: () => void;
|
|
close: () => void;
|
|
}
|
|
|
|
const styles = {
|
|
container: {
|
|
backgroundColor: 'rgba(0, 0, 0, 0.8)',
|
|
padding: 20,
|
|
width: '100%',
|
|
height: '100%',
|
|
},
|
|
image: {
|
|
maxWidth: '100%',
|
|
maxHeight: '100%',
|
|
objectFit: 'cover',
|
|
}
|
|
};
|
|
|
|
export class Lightbox extends React.Component<Props, {}> {
|
|
public render() {
|
|
const { imageURL } = this.props;
|
|
return (
|
|
<div style={styles.container}>
|
|
<img
|
|
style={styles.image}
|
|
src={imageURL}
|
|
/>
|
|
<button onClick={this.props.close}>Close</button>
|
|
</div>
|
|
);
|
|
}
|
|
}
|