- {explainerText + ' '}
- {/* {activeTab === TAB_FIAT && !hasCardSaved &&
-
- }
- actions={
- // confirmation modal, allow user to confirm or cancel transaction
- isConfirming ? (
- <>
-
-
-
{__('To --[the tip recipient]--')}
-
{channelName || title}
-
{__('From --[the tip sender]--')}
-
- {activeChannelClaim && !incognito ? activeChannelClaim.name : __('Anonymous')}
+ {activeTab !== TAB_FIAT ? (
+
+ ) : !canReceiveFiatTip ? (
+
{__('Only select creators can receive tips at this time')}
+ ) : (
+
{__('The payment will be made from your saved card')}
+ )}
+ >
+ // if it's LBC and there is no balance, you can prompt to purchase LBC
+ : <>
+
}}>Supporting content requires %lbc%}
+ subtitle={
+
}}>
+ With %lbc%, you can send tips to your favorite creators, or help boost their content for more people to
+ see.
+
+ }
+ actions={
+
+
+
+
-
{setConfirmLabel()}
-
- {activeTab === TAB_FIAT ?
$ {(Math.round(tipAmount * 100) / 100).toFixed(2)}
:
}
-
-
-
-
-
-
- >
- // only show the prompt to earn more if its lbc or boost tab and no balance
- // otherwise you can show the full prompt
- ) : (!((activeTab === TAB_LBC || activeTab === TAB_BOOST) && noBalance)
- ? <>
-
-
-
-
- {activeTab === TAB_FIAT && !hasCardSaved && (
-
-
- {' '}{__('To Tip Creators')}
-
- )}
-
- {/* section to pick tip/boost amount */}
-
- {DEFAULT_TIP_AMOUNTS.map((amount) => (
-
-
- {useCustomTip && (
-
-
- {__('Custom support amount')}{' '}
- {activeTab !== TAB_FIAT ? (
- }}
- >
- (%lbc_balance% Credits available)
-
- ) : (
- 'in USD'
- )}
-
- }
- className="form-field--price-amount"
- error={tipError}
- min="0"
- step="any"
- type="number"
- style={{
- width: activeTab === TAB_FIAT ? '99px' : '160px',
- }}
- placeholder="1.23"
- value={customTipAmount}
- onChange={(event) => handleCustomPriceChange(event)}
- />
-
- )}
-
- {/* send tip/boost button */}
-
-
- {fetchingChannels && {__('Loading your channels...')}}
-
- {activeTab !== TAB_FIAT ? (
-
- ) : !canReceiveFiatTip ? (
-
{__('Only select creators can receive tips at this time')}
- ) : (
-
{__('The payment will be made from your saved card')}
- )}
- > : <>
-
}}>Supporting content requires %lbc%}
- subtitle={
-
}}>
- With %lbc%, you can send tips to your favorite creators, or help boost their content for more people to
- see.
-
- }
- actions={
-
-
-
-
-
- }
- />>
- )
- }
- />
- )}
+ }
+ />>
+ )
+ }
+ />
);
}