本文整理匯總了TypeScript中react-toastify.toast.update方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript toast.update方法的具體用法?TypeScript toast.update怎麽用?TypeScript toast.update使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類react-toastify.toast
的用法示例。
在下文中一共展示了toast.update方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: VerifiedAccount
function* VerifiedAccount(action: any): SagaIterator {
const toastId = toast.info('Verifying account...', {
className: 'toast',
})
try {
const { token, password } = action.payload
yield put(Actions.LoadingPage.onLoadingOn())
const data = yield call(GetApiTokensFrost, token, password)
yield put(Actions.VerifiedAccount.onVerifiedAccountSuccess())
yield put(Actions.LoadingPage.onLoadingFull())
yield put(Actions.SignOut.onSignOut({ redirectLogin: false }))
yield put(Actions.SetTokenLogin.onSetTokenLogin(data))
yield call(delay, 1000)
browserHistory.push('/dashboard')
toast.success('Your account has been verified!', {
className: 'toast',
autoClose: 2500,
})
} catch (e) {
yield put(Actions.LoadingPage.onLoadingFull())
yield put(Actions.VerifiedAccount.onVerifiedAccountError(e))
yield call(delay, 300)
yield put(Actions.VerifiedAccount.onVerifiedAccountClearError())
if (e.includes('Email already verified')) {
browserHistory.push('/dashboard')
toast.info(e, {
className: 'toast',
autoClose: 2500,
})
} else if (e.includes('Expired token')) {
const message = 'This link has expired. Please login and request a new validation email.'
toast.update(toastId, {
render: message,
type: toast.TYPE.ERROR,
className: 'toast',
autoClose: false,
})
} else
toast.update(toastId, {
render: e,
type: toast.TYPE.ERROR,
autoClose: false,
className: 'toast',
})
}
}
示例2: toast
import { toast } from 'react-toastify';
const someToastId = toast('Testing!'); // $ExpectType string
// $ExpectType void
toast.update(someToastId, {
render: "New Content",
type: toast.TYPE.INFO
});