259f51abd6
clean up sections and improve navigation handling cleanup + image upload modal styling
31 lines
734 B
JavaScript
31 lines
734 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import { Modal } from 'modal/modal';
|
|
import SelectAsset from 'component/selectAsset';
|
|
|
|
type Props = {
|
|
closeModal: () => void,
|
|
currentValue: string,
|
|
title: string,
|
|
helpText: string,
|
|
onUpdate: string => void,
|
|
assetName: string,
|
|
};
|
|
|
|
function ModalImageUpload(props: Props) {
|
|
const { closeModal, currentValue, title, assetName, helpText, onUpdate } = props;
|
|
|
|
return (
|
|
<Modal isOpen type="card" onAborted={closeModal} contentLabel={title}>
|
|
<SelectAsset
|
|
onUpdate={v => onUpdate(v)}
|
|
currentValue={currentValue}
|
|
assetName={assetName}
|
|
recommended={helpText}
|
|
onDone={closeModal}
|
|
/>
|
|
</Modal>
|
|
);
|
|
}
|
|
|
|
export default ModalImageUpload;
|