superchat support

This commit is contained in:
Sean Yesmunt 2021-04-22 01:54:54 -04:00
parent eb37009a98
commit b511282c35
2 changed files with 24 additions and 20 deletions
dist
src/redux/actions

8
dist/bundle.es.js vendored
View file

@ -3192,7 +3192,7 @@ function doSetDraftTransactionAddress(address) {
}; };
} }
function doSendTip(params, isSupport, successCallback, errorCallback) { function doSendTip(params, isSupport, successCallback, errorCallback, shouldNotify = true) {
return (dispatch, getState) => { return (dispatch, getState) => {
const state = getState(); const state = getState();
const balance = selectBalance(state); const balance = selectBalance(state);
@ -3208,19 +3208,21 @@ function doSendTip(params, isSupport, successCallback, errorCallback) {
return; return;
} }
const success = () => { const success = response => {
if (shouldNotify) {
dispatch(doToast({ dispatch(doToast({
message: shouldSupport ? __('You deposited %amount% LBRY Credits as a support!', { amount: params.amount }) : __('You sent %amount% LBRY Credits as a tip, Mahalo!', { amount: params.amount }), message: shouldSupport ? __('You deposited %amount% LBRY Credits as a support!', { amount: params.amount }) : __('You sent %amount% LBRY Credits as a tip, Mahalo!', { amount: params.amount }),
linkText: __('History'), linkText: __('History'),
linkTarget: '/wallet' linkTarget: '/wallet'
})); }));
}
dispatch({ dispatch({
type: SUPPORT_TRANSACTION_COMPLETED type: SUPPORT_TRANSACTION_COMPLETED
}); });
if (successCallback) { if (successCallback) {
successCallback(); successCallback(response);
} }
}; };

View file

@ -349,7 +349,7 @@ export function doSetDraftTransactionAddress(address) {
}; };
} }
export function doSendTip(params, isSupport, successCallback, errorCallback) { export function doSendTip(params, isSupport, successCallback, errorCallback, shouldNotify = true) {
return (dispatch, getState) => { return (dispatch, getState) => {
const state = getState(); const state = getState();
const balance = selectBalance(state); const balance = selectBalance(state);
@ -368,7 +368,8 @@ export function doSendTip(params, isSupport, successCallback, errorCallback) {
return; return;
} }
const success = () => { const success = response => {
if (shouldNotify) {
dispatch( dispatch(
doToast({ doToast({
message: shouldSupport message: shouldSupport
@ -378,13 +379,14 @@ export function doSendTip(params, isSupport, successCallback, errorCallback) {
linkTarget: '/wallet', linkTarget: '/wallet',
}) })
); );
}
dispatch({ dispatch({
type: ACTIONS.SUPPORT_TRANSACTION_COMPLETED, type: ACTIONS.SUPPORT_TRANSACTION_COMPLETED,
}); });
if (successCallback) { if (successCallback) {
successCallback(); successCallback(response);
} }
}; };