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

49 lines
1.4 KiB
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';
import Tooltip from 'component/common/tooltip';
2020-02-12 19:59:48 +01:00
type Props = {
uri: string,
2020-09-30 20:46:17 +02:00
fileAction?: boolean,
// redux
disableSupport: boolean,
isRepost?: boolean,
doOpenModal: (id: string, {}) => void,
2022-03-28 23:56:40 +02:00
preferredCurrency: string,
2020-02-12 19:59:48 +01:00
};
export default function ClaimSupportButton(props: Props) {
2022-03-28 22:32:01 +02:00
const { uri, fileAction, isRepost, disableSupport, doOpenModal, preferredCurrency } = props;
const currencyToUse = preferredCurrency;
const iconToUse = {
EUR: {
icon: ICONS.EURO,
iconSize: 16,
},
USD: {
icon: ICONS.FINANCE,
iconSize: fileAction ? 22 : undefined,
},
};
2020-11-10 06:21:04 +01:00
return disableSupport ? null : (
<Tooltip title={__('Support this claim')} arrow={false}>
<Button
button={!fileAction ? 'alt' : undefined}
2022-03-24 16:33:27 +01:00
className={classnames('support-claim-button', { 'button--file-action': fileAction })}
2022-03-28 22:32:01 +02:00
icon={iconToUse[currencyToUse].icon}
iconSize={iconToUse[currencyToUse].iconSize}
label={isRepost ? __('Support Repost') : __('Support --[button to support a claim]--')}
requiresAuth
onClick={() => doOpenModal(MODALS.SEND_TIP, { uri, isSupport: true })}
/>
</Tooltip>
2020-02-12 19:59:48 +01:00
);
}