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

727 lines
24 KiB
React
Raw Normal View History

2019-05-17 20:21:07 +02:00
// @flow
import 'scss/component/_comment-create.scss';
import { buildValidSticker } from 'util/comments';
import { FF_MAX_CHARS_IN_COMMENT, FF_MAX_CHARS_IN_LIVESTREAM_COMMENT } from 'constants/form-field';
import { FormField, Form } from 'component/common/form';
import { Lbryio } from 'lbryinc';
import { SIMPLE_SITE } from 'config';
import { useHistory } from 'react-router';
2021-04-23 21:59:48 +02:00
import * as ICONS from 'constants/icons';
2021-08-31 09:05:42 +02:00
import * as KEYCODES from 'constants/keycodes';
import * as PAGES from 'constants/pages';
2022-02-02 17:20:10 +01:00
import * as MODALS from 'constants/modal_types';
import Button from 'component/button';
2020-03-20 20:09:45 +01:00
import classnames from 'classnames';
2022-02-07 20:30:42 +01:00
import CommentSelectors, { SELECTOR_TABS } from './comment-selectors';
import React from 'react';
import type { ElementRef } from 'react';
2019-09-27 20:56:15 +02:00
import usePersistedState from 'effects/use-persisted-state';
2021-04-23 21:59:48 +02:00
import WalletTipAmountSelector from 'component/walletTipAmountSelector';
2022-02-02 17:20:10 +01:00
import { useIsMobile } from 'effects/use-screensize';
import { StickerReviewBox, StickerActionButton } from './sticker-contents';
import { TipReviewBox, TipActionButton } from './tip-contents';
import { FormChannelSelector, HelpText } from './extra-contents';
import { getStripeEnvironment } from 'util/stripe';
const stripeEnvironment = getStripeEnvironment();
const TAB_FIAT = 'TabFiat';
const TAB_LBC = 'TabLBC';
type TipParams = { tipAmount: number, tipChannelName: string, channelClaimId: string };
type UserParams = { activeChannelName: ?string, activeChannelId: ?string };
2019-05-17 20:21:07 +02:00
type Props = {
2022-02-07 19:03:10 +01:00
activeChannelClaimId?: string,
activeChannelName?: string,
activeChannelUrl?: string,
2021-07-28 16:36:24 +02:00
bottom: boolean,
hasChannels: boolean,
2022-02-07 19:03:10 +01:00
claimId?: string,
channelClaimId?: string,
tipChannelName?: string,
claimIsMine: boolean,
embed?: boolean,
isFetchingChannels: boolean,
isNested: boolean,
isReply: boolean,
isLivestream?: boolean,
parentId: string,
settingsByChannelId: { [channelId: string]: PerChannelSettings },
shouldFetchComment: boolean,
supportDisabled: boolean,
uri: string,
disableInput?: boolean,
onSlimInputClose?: () => void,
2022-02-07 19:03:10 +01:00
setQuickReply: (any) => void,
onCancelReplying?: () => void,
onDoneReplying?: () => void,
2022-02-07 19:03:10 +01:00
// redux
doCommentCreate: (uri: string, isLivestream?: boolean, params: CommentSubmitParams) => Promise<any>,
doFetchCreatorSettings: (channelId: string) => Promise<any>,
doToast: ({ message: string }) => void,
2022-02-07 20:39:27 +01:00
doCommentById: (commentId: string, toastIfNotFound: boolean) => Promise<any>,
2022-03-28 23:56:40 +02:00
doSendCashTip: (
TipParams,
anonymous: boolean,
UserParams,
claimId: string,
stripe: ?string,
preferredCurrency: string,
(any) => void
) => string,
2022-02-07 20:39:27 +01:00
doSendTip: (params: {}, isSupport: boolean, successCb: (any) => void, errorCb: (any) => void, boolean) => void,
2022-02-02 17:20:10 +01:00
doOpenModal: (id: string, any) => void,
2022-03-28 23:56:40 +02:00
preferredCurrency: string,
2019-05-17 20:21:07 +02:00
};
2019-06-12 16:53:27 +02:00
export function CommentCreate(props: Props) {
const {
2022-02-07 19:03:10 +01:00
activeChannelClaimId,
activeChannelName,
activeChannelUrl,
bottom,
hasChannels,
2022-02-07 19:03:10 +01:00
claimId,
channelClaimId,
tipChannelName,
claimIsMine,
embed,
isFetchingChannels,
isNested,
2020-10-07 21:14:52 +02:00
isReply,
isLivestream,
parentId,
settingsByChannelId,
shouldFetchComment,
supportDisabled,
uri,
disableInput,
onSlimInputClose,
2022-02-07 19:03:10 +01:00
doCommentCreate,
doFetchCreatorSettings,
doToast,
2022-02-07 19:03:10 +01:00
doCommentById,
onCancelReplying,
onDoneReplying,
2022-02-07 19:03:10 +01:00
doSendCashTip,
doSendTip,
2021-08-27 12:29:58 +02:00
setQuickReply,
2022-02-02 17:20:10 +01:00
doOpenModal,
2022-03-28 22:32:01 +02:00
preferredCurrency,
} = props;
2022-02-02 17:20:10 +01:00
const isMobile = useIsMobile();
const formFieldRef: ElementRef<any> = React.useRef();
const buttonRef: ElementRef<any> = React.useRef();
2022-02-07 20:30:42 +01:00
const slimInputButtonRef: ElementRef<any> = React.useRef();
const {
push,
location: { pathname },
} = useHistory();
const [isSubmitting, setSubmitting] = React.useState(false);
const [commentFailure, setCommentFailure] = React.useState(false);
const [successTip, setSuccessTip] = React.useState({ txid: undefined, tipAmount: undefined });
const [tipSelectorOpen, setTipSelector] = React.useState();
const [isReviewingSupportComment, setReviewingSupportComment] = React.useState();
const [isReviewingStickerComment, setReviewingStickerComment] = React.useState();
const [selectedSticker, setSelectedSticker] = React.useState();
2021-04-23 21:59:48 +02:00
const [tipAmount, setTipAmount] = React.useState(1);
const [convertedAmount, setConvertedAmount] = React.useState();
2020-03-20 20:09:45 +01:00
const [commentValue, setCommentValue] = React.useState('');
const [advancedEditor, setAdvancedEditor] = usePersistedState('comment-editor-mode', false);
const [activeTab, setActiveTab] = React.useState();
const [tipError, setTipError] = React.useState();
2021-08-27 14:03:29 +02:00
const [deletedComment, setDeletedComment] = React.useState(false);
2022-02-07 20:30:42 +01:00
const [showSelectors, setShowSelectors] = React.useState({ tab: undefined, open: false });
const [disableReviewButton, setDisableReviewButton] = React.useState();
const [exchangeRate, setExchangeRate] = React.useState();
const [canReceiveFiatTip, setCanReceiveFiatTip] = React.useState(undefined);
const [tipModalOpen, setTipModalOpen] = React.useState(undefined);
const charCount = commentValue ? commentValue.length : 0;
const hasNothingToSumbit = !commentValue.length && !selectedSticker;
const disabled = deletedComment || isSubmitting || isFetchingChannels || hasNothingToSumbit || disableInput;
2022-02-07 19:03:10 +01:00
const channelSettings = channelClaimId ? settingsByChannelId[channelClaimId] : undefined;
const minSuper = (channelSettings && channelSettings.min_tip_amount_super_chat) || 0;
const minTip = (channelSettings && channelSettings.min_tip_amount_comment) || 0;
const minAmount = minTip || minSuper || 0;
const minAmountMet = minAmount === 0 || tipAmount >= minAmount;
const stickerPrice = selectedSticker && selectedSticker.price;
const tipSelectorError = tipError || disableReviewButton;
const minAmountRef = React.useRef(minAmount);
minAmountRef.current = minAmount;
// **************************************************************************
// Functions
// **************************************************************************
function addEmoteToComment(emote: string) {
setCommentValue(
commentValue + (commentValue && commentValue.charAt(commentValue.length - 1) !== ' ' ? ` ${emote} ` : `${emote} `)
);
}
function handleSelectTipComment(tab: string) {
setActiveTab(tab);
2022-02-07 14:13:21 +01:00
if (isMobile) {
setTipModalOpen(true);
doOpenModal(MODALS.SEND_TIP, {
uri,
isTipOnly: true,
hasSelectedTab: tab,
customText: __('Preview Comment Tip'),
setAmount: (amount) => {
setTipAmount(amount);
setReviewingSupportComment(true);
},
});
} else {
setTipSelector(true);
}
if (onSlimInputClose) onSlimInputClose();
}
function handleStickerComment() {
2022-02-07 20:30:42 +01:00
if (selectedSticker) {
setReviewingStickerComment(false);
setSelectedSticker(undefined);
setShowSelectors({ tab: SELECTOR_TABS.STICKER, open: true });
} else {
setShowSelectors({ tab: showSelectors.tab || undefined, open: !showSelectors.open });
}
setTipSelector(false);
}
function handleSelectSticker(sticker: any) {
// $FlowFixMe
setSelectedSticker(sticker);
setReviewingStickerComment(true);
setTipAmount(sticker.price || 0);
2022-02-07 20:30:42 +01:00
setShowSelectors({ tab: showSelectors.tab || undefined, open: false });
// added this here since selecting a sticker can cause scroll issues
if (onSlimInputClose) onSlimInputClose();
if (sticker.price && sticker.price > 0) {
setActiveTab(canReceiveFiatTip ? TAB_FIAT : TAB_LBC);
setTipSelector(true);
}
}
function handleCancelSticker() {
setReviewingStickerComment(false);
setSelectedSticker(null);
if (onSlimInputClose) onSlimInputClose();
}
function handleCancelSupport() {
if (!isReviewingSupportComment) setTipSelector(false);
setReviewingSupportComment(false);
if (stickerPrice) {
setReviewingStickerComment(false);
2022-02-07 20:30:42 +01:00
setShowSelectors({ tab: showSelectors.tab || undefined, open: false });
setSelectedSticker(null);
}
if (onSlimInputClose) onSlimInputClose();
}
2021-04-23 21:59:48 +02:00
function handleSupportComment() {
2022-02-07 19:03:10 +01:00
if (!activeChannelClaimId) return;
2021-04-23 21:59:48 +02:00
2022-02-07 19:03:10 +01:00
if (!channelClaimId) {
doToast({
message: __('Unable to verify channel settings. Try refreshing the page.'),
isError: true,
});
return;
}
// if comment post didn't work, but tip was already made, try again to create comment
if (commentFailure && tipAmount === successTip.tipAmount) {
handleCreateComment(successTip.txid);
return;
} else {
setSuccessTip({ txid: undefined, tipAmount: undefined });
}
// !! Beware of stale closure when editing the then-block, including doSubmitTip().
2022-02-07 19:03:10 +01:00
doFetchCreatorSettings(channelClaimId).then(() => {
const lockedMinAmount = minAmount; // value during closure.
const currentMinAmount = minAmountRef.current; // value from latest doFetchCreatorSettings().
if (lockedMinAmount !== currentMinAmount) {
doToast({
message: __('The creator just updated the minimum setting. Please revise or double-check your tip amount.'),
isError: true,
});
setReviewingSupportComment(false);
return;
}
doSubmitTip();
});
}
function doSubmitTip() {
2022-02-07 19:03:10 +01:00
if (!claimId || !channelClaimId || !activeChannelName || !activeChannelClaimId || isSubmitting || !tipChannelName) {
return;
}
setSubmitting(true);
2021-04-23 21:59:48 +02:00
2022-02-07 19:03:10 +01:00
const params = { amount: tipAmount, claim_id: claimId, channel_id: activeChannelClaimId };
if (activeTab === TAB_LBC) {
2022-02-07 19:03:10 +01:00
// call doSendTip and then run the callback from the response
// second parameter is callback
2022-02-07 19:03:10 +01:00
doSendTip(
params,
2022-02-07 20:39:27 +01:00
false,
(response) => {
const { txid } = response;
// todo: why the setTimeout?
setTimeout(() => {
handleCreateComment(txid);
}, 1500);
doToast({
message: __("You sent %tipAmount% Credits as a tip to %tipChannelName%, I'm sure they appreciate it!", {
tipAmount: tipAmount, // force show decimal places
tipChannelName,
}),
});
setSuccessTip({ txid, tipAmount });
},
() => {
// reset the frontend so people can send a new comment
setSubmitting(false);
2022-02-07 20:39:27 +01:00
},
false
);
} else {
const tipParams: TipParams = { tipAmount: Math.round(tipAmount * 100) / 100, tipChannelName, channelClaimId };
2022-02-07 19:03:10 +01:00
const userParams: UserParams = { activeChannelName, activeChannelId: activeChannelClaimId };
2022-03-28 23:56:40 +02:00
doSendCashTip(
tipParams,
false,
userParams,
claimId,
stripeEnvironment,
preferredCurrency,
(customerTipResponse) => {
const { payment_intent_id } = customerTipResponse;
2022-03-28 23:56:40 +02:00
handleCreateComment(null, payment_intent_id, stripeEnvironment);
2022-03-28 23:56:40 +02:00
setCommentValue('');
setReviewingSupportComment(false);
setTipSelector(false);
setCommentFailure(false);
setSubmitting(false);
}
);
}
2021-04-23 21:59:48 +02:00
}
/**
*
* @param {string} [txid] Optional transaction id generated by
* @param {string} [payment_intent_id] Optional payment_intent_id from Stripe payment
* @param {string} [environment] Optional environment for Stripe (test|live)
*/
function handleCreateComment(txid, payment_intent_id, environment) {
2022-02-07 19:03:10 +01:00
if (isSubmitting || disableInput || !claimId) return;
setSubmitting(true);
const stickerValue = selectedSticker && buildValidSticker(selectedSticker.name);
2022-02-07 19:03:10 +01:00
doCommentCreate(uri, isLivestream, {
comment: stickerValue || commentValue,
claim_id: claimId,
parent_id: parentId,
txid,
payment_intent_id,
environment,
sticker: !!stickerValue,
})
2021-04-23 21:59:48 +02:00
.then((res) => {
setSubmitting(false);
2021-08-27 12:29:58 +02:00
if (setQuickReply) setQuickReply(res);
2021-04-23 21:59:48 +02:00
2020-09-30 02:11:48 +02:00
if (res && res.signature) {
if (!stickerValue) setCommentValue('');
setReviewingSupportComment(false);
setTipSelector(false);
setCommentFailure(false);
2020-10-07 21:14:52 +02:00
2020-09-30 02:11:48 +02:00
if (onDoneReplying) {
onDoneReplying();
}
}
2021-04-23 21:59:48 +02:00
})
.catch(() => {
setSubmitting(false);
setCommentFailure(true);
2022-02-07 19:03:10 +01:00
if (channelClaimId) {
// It could be that the creator added a minimum tip setting.
// Manually update for now until a websocket msg is available.
2022-02-07 19:03:10 +01:00
doFetchCreatorSettings(channelClaimId);
}
2020-09-30 02:11:48 +02:00
});
2019-05-17 20:21:07 +02:00
}
function handleSubmitSticker() {
if (isReviewingSupportComment) {
handleSupportComment();
} else {
handleCreateComment();
}
setSelectedSticker(null);
setReviewingStickerComment(false);
2022-02-07 20:30:42 +01:00
setShowSelectors({ tab: showSelectors.tab || undefined, open: false });
setTipSelector(false);
}
2022-03-28 22:32:01 +02:00
let fiatIconToUse = ICONS.FINANCE;
if (preferredCurrency === 'EUR') fiatIconToUse = ICONS.EURO;
// **************************************************************************
// Effects
// **************************************************************************
// Fetch channel constraints if not already.
React.useEffect(() => {
2022-02-07 19:03:10 +01:00
if (!channelSettings && channelClaimId) {
doFetchCreatorSettings(channelClaimId);
}
}, []); // eslint-disable-line react-hooks/exhaustive-deps
2022-02-07 20:30:42 +01:00
// change sticker selection
React.useEffect(() => {
if (isMobile && showSelectors.tab && slimInputButtonRef && slimInputButtonRef.current) {
slimInputButtonRef.current.click();
}
}, [isMobile, showSelectors.tab]);
// Notifications: Fetch top-level comments to identify if it has been deleted and can reply to it
React.useEffect(() => {
2022-02-07 19:03:10 +01:00
if (shouldFetchComment && doCommentById) {
2022-02-07 20:39:27 +01:00
doCommentById(parentId, false).then((result) => {
setDeletedComment(String(result).includes('Error'));
});
}
2022-02-07 19:03:10 +01:00
}, [doCommentById, shouldFetchComment, parentId]);
// Stickers: Get LBC-USD exchange rate if hasn't yet and selected a paid sticker
React.useEffect(() => {
if (stickerPrice && !exchangeRate) Lbryio.getExchangeRates().then(({ LBC_USD }) => setExchangeRate(LBC_USD));
}, [exchangeRate, stickerPrice]);
// Stickers: Check if creator has a tip account saved (on selector so that if a paid sticker is selected,
// it defaults to LBC tip instead of USD)
React.useEffect(() => {
2022-02-07 20:30:42 +01:00
if (!stripeEnvironment || canReceiveFiatTip !== undefined || !tipChannelName) return;
Lbryio.call(
'account',
'check',
{
channel_claim_id: channelClaimId,
channel_name: tipChannelName,
environment: stripeEnvironment,
},
'post'
)
.then((accountCheckResponse) => {
if (accountCheckResponse === true && canReceiveFiatTip !== true) {
setCanReceiveFiatTip(true);
} else {
setCanReceiveFiatTip(false);
}
})
.catch(() => {});
2022-02-07 20:30:42 +01:00
}, [canReceiveFiatTip, channelClaimId, tipChannelName]);
// Handle keyboard shortcut comment creation
React.useEffect(() => {
function altEnterListener(e: SyntheticKeyboardEvent<*>) {
const inputRef = formFieldRef && formFieldRef.current && formFieldRef.current.input;
if (inputRef && inputRef.current === document.activeElement) {
// $FlowFixMe
2022-01-13 19:36:07 +01:00
const isTyping = Boolean(e.target.attributes['typing-term']);
if (((isLivestream && !isTyping) || e.ctrlKey || e.metaKey) && e.keyCode === KEYCODES.ENTER) {
e.preventDefault();
buttonRef.current.click();
}
2022-01-13 19:36:07 +01:00
if (isLivestream && isTyping && e.keyCode === KEYCODES.ENTER) {
inputRef.current.removeAttribute('typing-term');
}
}
}
window.addEventListener('keydown', altEnterListener);
// removes the listener so it doesn't cause problems elsewhere in the app
return () => {
window.removeEventListener('keydown', altEnterListener);
};
}, [isLivestream]);
// **************************************************************************
// Render
// **************************************************************************
if (!isFetchingChannels && !hasChannels) {
2020-08-25 21:54:06 +02:00
return (
<div
role="button"
className="comment-create__auth"
2022-02-07 14:07:36 +01:00
onClick={(e) => {
e.preventDefault();
e.stopPropagation();
2021-07-28 16:36:24 +02:00
if (embed) {
window.open(`https://odysee.com/$/${PAGES.AUTH}?redirect=/$/${PAGES.LIVESTREAM}`);
return;
}
const pathPlusRedirect = `/$/${PAGES.CHANNEL_NEW}?redirect=${pathname}`;
if (isLivestream) {
window.open(pathPlusRedirect);
} else {
push(pathPlusRedirect);
}
}}
>
2022-02-07 14:07:36 +01:00
<FormField
type="textarea"
name="comment__signup-prompt"
placeholder={__('Say something about this...')}
disabled={isMobile}
/>
{!isMobile && (
<div className="section__actions--no-margin">
<Button disabled button="primary" label={__('Post --[button to submit something]--')} requiresAuth />
</div>
)}
2020-08-25 21:54:06 +02:00
</div>
);
}
2022-02-07 20:30:42 +01:00
const commentSelectorsProps = {
claimIsMine,
addEmoteToComment,
handleSelectSticker,
openTab: showSelectors.tab || undefined,
};
const submitButtonProps = { button: 'primary', type: 'submit', requiresAuth: true };
2022-02-05 12:18:23 +01:00
const actionButtonProps = { button: 'alt' };
const tipButtonProps = {
...actionButtonProps,
disabled: !commentValue.length && !selectedSticker,
tipSelectorOpen,
activeTab,
onClick: handleSelectTipComment,
};
const cancelButtonProps = { button: 'link', label: __('Cancel') };
2022-02-07 20:30:42 +01:00
const stickerReviewProps = {
activeChannelUrl,
src: selectedSticker ? selectedSticker.url : '',
price: selectedSticker ? selectedSticker.price : 0,
exchangeRate,
};
return (
<Form
onSubmit={() => {}}
className={classnames('commentCreate', {
'commentCreate--reply': isReply,
'commentCreate--nestedReply': isNested,
'commentCreate--bottom': bottom,
})}
>
2022-02-07 20:30:42 +01:00
{isReviewingSupportComment ? (
2022-02-07 19:03:10 +01:00
activeChannelUrl &&
activeTab && (
<TipReviewBox
2022-02-07 19:03:10 +01:00
activeChannelUrl={activeChannelUrl}
tipAmount={tipAmount}
activeTab={activeTab}
message={commentValue}
2022-02-07 20:30:42 +01:00
isReviewingStickerComment={isReviewingStickerComment}
stickerPreviewComponent={selectedSticker && <StickerReviewBox {...stickerReviewProps} />}
/>
)
2022-02-07 20:30:42 +01:00
) : selectedSticker ? (
activeChannelUrl && <StickerReviewBox {...stickerReviewProps} />
) : (
<>
2022-02-07 20:30:42 +01:00
{!isMobile && showSelectors.open && (
<CommentSelectors
{...commentSelectorsProps}
closeSelector={() => setShowSelectors({ tab: showSelectors.tab || undefined, open: false })}
/>
)}
<FormField
autoFocus={isReply}
charCount={charCount}
className={isReply ? 'create__reply' : 'create__comment'}
disabled={isFetchingChannels || disableInput}
isLivestream={isLivestream}
label={<FormChannelSelector isReply={Boolean(isReply)} isLivestream={Boolean(isLivestream)} />}
2022-02-07 14:37:19 +01:00
noticeLabel={
isMobile && (
<HelpText deletedComment={deletedComment} minAmount={minAmount} minSuper={minSuper} minTip={minTip} />
)
}
name={isReply ? 'create__reply' : 'create__comment'}
onChange={(e) => setCommentValue(SIMPLE_SITE || !advancedEditor || isReply ? e.target.value : e)}
2022-02-07 14:13:21 +01:00
handleTip={(isLBC) => handleSelectTipComment(isLBC ? TAB_LBC : TAB_FIAT)}
handleSubmit={handleCreateComment}
2022-02-07 20:30:42 +01:00
slimInput={isMobile && uri} // "uri": make sure it's on a file page
slimInputButtonRef={slimInputButtonRef}
onSlimInputClose={onSlimInputClose}
commentSelectorsProps={commentSelectorsProps}
submitButtonRef={buttonRef}
setShowSelectors={setShowSelectors}
showSelectors={showSelectors}
tipModalOpen={tipModalOpen}
placeholder={__('Say something about this...')}
quickActionHandler={!SIMPLE_SITE ? () => setAdvancedEditor(!advancedEditor) : undefined}
quickActionLabel={
!SIMPLE_SITE && (isReply ? undefined : advancedEditor ? __('Simple Editor') : __('Advanced Editor'))
}
ref={formFieldRef}
textAreaMaxLength={isLivestream ? FF_MAX_CHARS_IN_LIVESTREAM_COMMENT : FF_MAX_CHARS_IN_COMMENT}
type={!SIMPLE_SITE && advancedEditor && !isReply ? 'markdown' : 'textarea'}
value={commentValue}
uri={uri}
/>
</>
)}
{(!isMobile || isReviewingStickerComment) && (tipSelectorOpen || (isReviewingStickerComment && stickerPrice)) && (
<WalletTipAmountSelector
activeTab={activeTab}
amount={tipAmount}
2022-02-02 17:20:10 +01:00
uri={uri}
convertedAmount={convertedAmount}
customTipAmount={stickerPrice}
exchangeRate={exchangeRate}
fiatConversion={selectedSticker && !!selectedSticker.price}
onChange={(amount) => setTipAmount(amount)}
setConvertedAmount={setConvertedAmount}
setDisableSubmitButton={setDisableReviewButton}
setTipError={setTipError}
tipError={tipError}
/>
)}
2022-02-07 14:37:19 +01:00
{(!isMobile || isReviewingStickerComment || isReviewingSupportComment) && (
<div className="section__actions">
{/* Submit Button */}
{isReviewingSupportComment ? (
<Button
{...submitButtonProps}
autoFocus
disabled={disabled || !minAmountMet}
label={
isSubmitting
? __('Sending...')
: commentFailure && tipAmount === successTip.tipAmount
? __('Re-submit')
: __('Send')
}
onClick={handleSupportComment}
/>
) : tipSelectorOpen ? (
<Button
{...submitButtonProps}
disabled={disabled || tipSelectorError || !minAmountMet}
2022-03-28 22:32:01 +02:00
icon={activeTab === TAB_LBC ? ICONS.LBC : fiatIconToUse}
label={__('Review')}
onClick={() => {
setReviewingSupportComment(true);
if (onSlimInputClose) onSlimInputClose();
}}
/>
) : (
(!isMobile || selectedSticker) &&
(!minTip || claimIsMine) && (
<Button
{...submitButtonProps}
ref={buttonRef}
disabled={disabled}
label={
isReply
? isSubmitting
? __('Replying...')
: __('Reply')
: isSubmitting
? __('Commenting...')
: __('Comment --[button to submit something]--')
}
onClick={() => (selectedSticker ? handleSubmitSticker() : handleCreateComment())}
/>
)
)}
2022-02-07 20:30:42 +01:00
{(!isMobile || isReviewingStickerComment) && (
2022-02-07 14:13:21 +01:00
<>
2022-02-07 20:30:42 +01:00
<StickerActionButton
{...actionButtonProps}
isReviewingStickerComment={isReviewingStickerComment}
icon={ICONS.STICKER}
onClick={handleStickerComment}
/>
{!supportDisabled && !claimIsMine && (
<>
<TipActionButton {...tipButtonProps} name={__('Credits')} icon={ICONS.LBC} tab={TAB_LBC} />
2022-02-07 20:30:42 +01:00
{stripeEnvironment && (
2022-03-28 23:56:40 +02:00
<TipActionButton {...tipButtonProps} name={__('Cash')} icon={fiatIconToUse} tab={TAB_FIAT} />
2022-02-07 20:30:42 +01:00
)}
</>
)}
</>
)}
{tipSelectorOpen || isReviewingSupportComment ? (
<Button {...cancelButtonProps} disabled={isSubmitting} onClick={handleCancelSupport} />
) : isReviewingStickerComment ? (
<Button {...cancelButtonProps} onClick={handleCancelSticker} />
) : (
onCancelReplying && <Button {...cancelButtonProps} onClick={onCancelReplying} />
)}
<HelpText deletedComment={deletedComment} minAmount={minAmount} minSuper={minSuper} minTip={minTip} />
</div>
)}
2019-11-14 21:02:15 +01:00
</Form>
2019-06-12 16:53:27 +02:00
);
2019-05-17 20:21:07 +02:00
}