48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
// @flow
|
|
import * as MODALS from 'constants/modal_types';
|
|
import * as ICONS from 'constants/icons';
|
|
import React from 'react';
|
|
import classnames from 'classnames';
|
|
import Button from 'component/button';
|
|
import Tooltip from 'component/common/tooltip';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
fileAction?: boolean,
|
|
// redux
|
|
disableSupport: boolean,
|
|
isRepost?: boolean,
|
|
doOpenModal: (id: string, {}) => void,
|
|
preferredCurrency: string,
|
|
};
|
|
|
|
export default function ClaimSupportButton(props: Props) {
|
|
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,
|
|
},
|
|
};
|
|
|
|
return disableSupport ? null : (
|
|
<Tooltip title={__('Support this claim')} arrow={false}>
|
|
<Button
|
|
button={!fileAction ? 'alt' : undefined}
|
|
className={classnames('support-claim-button', { 'button--file-action': fileAction })}
|
|
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>
|
|
);
|
|
}
|