feat: converted stagedGenericAttachment to be functional
parent
7f031681f8
commit
d05c3e41eb
@ -1,35 +1,32 @@
|
||||
import { Component } from 'react';
|
||||
import { AttachmentType, getExtensionForDisplay } from '../../types/Attachment';
|
||||
|
||||
interface Props {
|
||||
type Props = {
|
||||
attachment: AttachmentType;
|
||||
onClose: (attachment: AttachmentType) => void;
|
||||
}
|
||||
};
|
||||
|
||||
export class StagedGenericAttachment extends Component<Props> {
|
||||
public render() {
|
||||
const { attachment, onClose } = this.props;
|
||||
const { fileName, contentType } = attachment;
|
||||
const extension = getExtensionForDisplay({ contentType, fileName });
|
||||
export function StagedGenericAttachment(props: Props) {
|
||||
const { attachment, onClose } = props;
|
||||
const { fileName, contentType } = attachment;
|
||||
const extension = getExtensionForDisplay({ contentType, fileName });
|
||||
|
||||
return (
|
||||
<div className="module-staged-generic-attachment">
|
||||
<div
|
||||
className="module-staged-generic-attachment__close-button"
|
||||
role="button"
|
||||
onClick={() => {
|
||||
if (onClose) {
|
||||
onClose(attachment);
|
||||
}
|
||||
}}
|
||||
/>
|
||||
<div className="module-staged-generic-attachment__icon">
|
||||
{extension ? (
|
||||
<div className="module-staged-generic-attachment__icon__extension">{extension}</div>
|
||||
) : null}
|
||||
</div>
|
||||
<div className="module-staged-generic-attachment__filename">{fileName}</div>
|
||||
return (
|
||||
<div className="module-staged-generic-attachment">
|
||||
<div
|
||||
className="module-staged-generic-attachment__close-button"
|
||||
role="button"
|
||||
onClick={() => {
|
||||
if (onClose) {
|
||||
onClose(attachment);
|
||||
}
|
||||
}}
|
||||
/>
|
||||
<div className="module-staged-generic-attachment__icon">
|
||||
{extension ? (
|
||||
<div className="module-staged-generic-attachment__icon__extension">{extension}</div>
|
||||
) : null}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
<div className="module-staged-generic-attachment__filename">{fileName}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue