|
|
@ -1,14 +1,12 @@
|
|
|
|
import { Component } from 'react';
|
|
|
|
|
|
|
|
import { AttachmentType, getExtensionForDisplay } from '../../types/Attachment';
|
|
|
|
import { AttachmentType, getExtensionForDisplay } from '../../types/Attachment';
|
|
|
|
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
type Props = {
|
|
|
|
attachment: AttachmentType;
|
|
|
|
attachment: AttachmentType;
|
|
|
|
onClose: (attachment: AttachmentType) => void;
|
|
|
|
onClose: (attachment: AttachmentType) => void;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export class StagedGenericAttachment extends Component<Props> {
|
|
|
|
export function StagedGenericAttachment(props: Props) {
|
|
|
|
public render() {
|
|
|
|
const { attachment, onClose } = props;
|
|
|
|
const { attachment, onClose } = this.props;
|
|
|
|
|
|
|
|
const { fileName, contentType } = attachment;
|
|
|
|
const { fileName, contentType } = attachment;
|
|
|
|
const extension = getExtensionForDisplay({ contentType, fileName });
|
|
|
|
const extension = getExtensionForDisplay({ contentType, fileName });
|
|
|
|
|
|
|
|
|
|
|
@ -31,5 +29,4 @@ export class StagedGenericAttachment extends Component<Props> {
|
|
|
|
<div className="module-staged-generic-attachment__filename">{fileName}</div>
|
|
|
|
<div className="module-staged-generic-attachment__filename">{fileName}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|