33 lines
842 B
JavaScript
33 lines
842 B
JavaScript
import AccessorUtilities from '~/lib/utils/accessor';
|
|
import { ALERT_LOCALSTORAGE_KEY } from './constants';
|
|
|
|
/**
|
|
* Persist alert data to localStorage.
|
|
*/
|
|
export const persistAlert = ({ title, message, linkUrl, variant } = {}) => {
|
|
if (!AccessorUtilities.isLocalStorageAccessSafe()) {
|
|
return;
|
|
}
|
|
|
|
const payload = JSON.stringify({ title, message, linkUrl, variant });
|
|
localStorage.setItem(ALERT_LOCALSTORAGE_KEY, payload);
|
|
};
|
|
|
|
/**
|
|
* Return alert data from localStorage.
|
|
*/
|
|
export const retrieveAlert = () => {
|
|
if (!AccessorUtilities.isLocalStorageAccessSafe()) {
|
|
return null;
|
|
}
|
|
|
|
const initialAlertJSON = localStorage.getItem(ALERT_LOCALSTORAGE_KEY);
|
|
// immediately clean up
|
|
localStorage.removeItem(ALERT_LOCALSTORAGE_KEY);
|
|
|
|
if (!initialAlertJSON) {
|
|
return null;
|
|
}
|
|
|
|
return JSON.parse(initialAlertJSON);
|
|
};
|