2018-03-26 23:32:43 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import { Modal } from 'modal/modal';
|
|
|
|
import SendTip from 'component/walletSendTip';
|
2018-09-26 19:48:07 +02:00
|
|
|
import UriIndicator from 'component/uriIndicator';
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
closeModal: () => void,
|
|
|
|
uri: string,
|
2019-07-17 05:23:45 +02:00
|
|
|
claimIsMine: boolean,
|
2019-07-19 22:21:41 +02:00
|
|
|
isSupport: boolean,
|
2018-03-26 23:32:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class ModalSendTip extends React.PureComponent<Props> {
|
|
|
|
render() {
|
2019-07-19 22:21:41 +02:00
|
|
|
const { closeModal, uri, claimIsMine, isSupport } = this.props;
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
return (
|
2018-09-26 19:48:07 +02:00
|
|
|
<Modal
|
|
|
|
onAborted={closeModal}
|
|
|
|
isOpen
|
|
|
|
type="custom"
|
|
|
|
title={
|
|
|
|
<React.Fragment>
|
2019-07-17 05:23:45 +02:00
|
|
|
{claimIsMine ? __('Add support to') : __('Send a tip')} <UriIndicator uri={uri} />
|
2018-09-26 19:48:07 +02:00
|
|
|
</React.Fragment>
|
|
|
|
}
|
|
|
|
>
|
2019-07-19 22:21:41 +02:00
|
|
|
<SendTip
|
|
|
|
uri={uri}
|
|
|
|
claimIsMine={claimIsMine}
|
|
|
|
isSupport={isSupport}
|
|
|
|
onCancel={closeModal}
|
|
|
|
sendTipCallback={closeModal}
|
|
|
|
/>
|
2018-03-26 23:32:43 +02:00
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ModalSendTip;
|