33 lines
888 B
React
33 lines
888 B
React
|
// @flow
|
||
|
import React from 'react';
|
||
|
import { Modal } from 'modal/modal';
|
||
|
import RepostCreate from 'component/repostCreate';
|
||
|
import Card from 'component/common/card';
|
||
|
|
||
|
type Props = {
|
||
|
closeModal: () => void,
|
||
|
uri: string,
|
||
|
name: string,
|
||
|
contentUri: string,
|
||
|
setContentUri: () => void,
|
||
|
repostUri: string,
|
||
|
setRepostUri: () => void,
|
||
|
}
|
||
|
|
||
|
class ModalRepost extends React.PureComponent<Props> {
|
||
|
render() {
|
||
|
const { closeModal, uri, name, contentUri, setContentUri, repostUri, setRepostUri } = this.props;
|
||
|
|
||
|
return (
|
||
|
<Modal onAborted={closeModal} isOpen type="card">
|
||
|
<Card
|
||
|
title={__('Repost')}
|
||
|
actions={<RepostCreate isModal uri={uri} name={name} onCancel={closeModal} contentUri={contentUri} setContentUri={setContentUri} repostUri={repostUri} setRepostUri={setRepostUri} />}
|
||
|
/>
|
||
|
</Modal>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default ModalRepost;
|