lbry-desktop/ui/modal/modalSendTip/view.jsx

48 lines
1 KiB
React
Raw Normal View History

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,
claimIsMine: boolean,
isSupport: boolean,
2018-03-26 23:32:43 +02:00
};
class ModalSendTip extends React.PureComponent<Props> {
render() {
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-23 19:18:29 +02:00
{claimIsMine || isSupport ? (
__('Add support to this claim')
) : (
<span>
{__('Send a tip to')} <UriIndicator uri={uri} />
</span>
)}
2018-09-26 19:48:07 +02:00
</React.Fragment>
}
>
<SendTip
uri={uri}
claimIsMine={claimIsMine}
isSupport={isSupport}
onCancel={closeModal}
sendTipCallback={closeModal}
/>
2018-03-26 23:32:43 +02:00
</Modal>
);
}
}
export default ModalSendTip;