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

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) => {
const state = getState();
const balance = selectBalance(state);
@ -3208,19 +3208,21 @@ function doSendTip(params, isSupport, successCallback, errorCallback) {
return;
}
const success = () => {
const success = response => {
if (shouldNotify) {
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 }),
linkText: __('History'),
linkTarget: '/wallet'
}));
}
dispatch({
type: SUPPORT_TRANSACTION_COMPLETED
});
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) => {
const state = getState();
const balance = selectBalance(state);
@ -368,7 +368,8 @@ export function doSendTip(params, isSupport, successCallback, errorCallback) {
return;
}
const success = () => {
const success = response => {
if (shouldNotify) {
dispatch(
doToast({
message: shouldSupport
@ -378,13 +379,14 @@ export function doSendTip(params, isSupport, successCallback, errorCallback) {
linkTarget: '/wallet',
})
);
}
dispatch({
type: ACTIONS.SUPPORT_TRANSACTION_COMPLETED,
});
if (successCallback) {
successCallback();
successCallback(response);
}
};