gab-social/app/javascript/gabsocial/actions/toasts.js
mgabdev 05c5dcb581 Updated Toast alerts, progress mvp
• Updated:
- Toast alerts
2020-12-07 23:39:13 -05:00

28 lines
409 B
JavaScript

export const TOAST_SHOW = 'TOAST_SHOW'
export const TOAST_DISMISS = 'TOAST_DISMISS'
export const TOAST_CLEAR = 'TOAST_CLEAR'
/**
*
*/
export const dismissToast = (toastKey) => ({
type: TOAST_DISMISS,
toastKey,
})
/**
*
*/
export const clearToast = () => ({
type: TOAST_CLEAR,
})
/**
*
*/
export const showToast = (toastType, toastData) => ({
type: TOAST_SHOW,
toastType,
toastData,
})