lbry-desktop/ui/component/claimSupportButton/view.jsx

35 lines
921 B
React
Raw Normal View History

2020-02-12 19:59:48 +01:00
// @flow
import * as MODALS from 'constants/modal_types';
import * as ICONS from 'constants/icons';
import React from 'react';
2020-09-30 20:46:17 +02:00
import classnames from 'classnames';
2020-02-12 19:59:48 +01:00
import Button from 'component/button';
type Props = {
uri: string,
doOpenModal: (string, {}) => void,
2020-09-30 20:46:17 +02:00
fileAction?: boolean,
disableSupport: boolean,
2020-02-12 19:59:48 +01:00
};
export default function ClaimSupportButton(props: Props) {
const { doOpenModal, uri, fileAction, disableSupport } = props;
2020-11-10 06:21:04 +01:00
if (disableSupport) {
return null;
}
2020-11-10 06:21:04 +01:00
2020-02-12 19:59:48 +01:00
return (
<Button
button={fileAction ? undefined : 'alt'}
className={classnames({ 'button--file-action': fileAction })}
icon={ICONS.LBC}
iconSize={fileAction ? 22 : undefined}
label={__('Support --[button to support a claim]--')}
requiresAuth={IS_WEB}
title={__('Support this claim')}
onClick={() => doOpenModal(MODALS.SEND_TIP, { uri, isSupport: true })}
/>
2020-02-12 19:59:48 +01:00
);
}