debian-mirror-gitlab/app/assets/javascripts/jira_connect/subscriptions/utils.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

118 lines
2.4 KiB
JavaScript
Raw Normal View History

2021-04-17 20:07:23 +05:30
import AccessorUtilities from '~/lib/utils/accessor';
2021-12-11 22:18:48 +05:30
import { objectToQuery } from '~/lib/utils/url_utility';
2022-10-11 01:57:18 +05:30
import { ALERT_LOCALSTORAGE_KEY, BASE_URL_LOCALSTORAGE_KEY } from './constants';
2021-04-17 20:07:23 +05:30
2021-04-29 21:17:54 +05:30
const isFunction = (fn) => typeof fn === 'function';
2022-10-11 01:57:18 +05:30
const { canUseLocalStorage } = AccessorUtilities;
const persistToStorage = (key, payload) => {
localStorage.setItem(key, payload);
};
const retrieveFromStorage = (key) => {
return localStorage.getItem(key);
};
const removeFromStorage = (key) => {
localStorage.removeItem(key);
};
2021-04-29 21:17:54 +05:30
2021-04-17 20:07:23 +05:30
/**
* Persist alert data to localStorage.
*/
export const persistAlert = ({ title, message, linkUrl, variant } = {}) => {
2022-10-11 01:57:18 +05:30
if (!canUseLocalStorage()) {
2021-04-17 20:07:23 +05:30
return;
}
const payload = JSON.stringify({ title, message, linkUrl, variant });
2022-10-11 01:57:18 +05:30
persistToStorage(ALERT_LOCALSTORAGE_KEY, payload);
2021-04-17 20:07:23 +05:30
};
/**
* Return alert data from localStorage.
*/
export const retrieveAlert = () => {
2022-10-11 01:57:18 +05:30
if (!canUseLocalStorage()) {
2021-04-17 20:07:23 +05:30
return null;
}
2022-10-11 01:57:18 +05:30
const initialAlertJSON = retrieveFromStorage(ALERT_LOCALSTORAGE_KEY);
2021-04-17 20:07:23 +05:30
// immediately clean up
2022-10-11 01:57:18 +05:30
removeFromStorage(ALERT_LOCALSTORAGE_KEY);
2021-04-17 20:07:23 +05:30
if (!initialAlertJSON) {
return null;
}
return JSON.parse(initialAlertJSON);
};
2021-04-29 21:17:54 +05:30
2022-10-11 01:57:18 +05:30
export const persistBaseUrl = (baseUrl) => {
if (!canUseLocalStorage()) {
return;
}
persistToStorage(BASE_URL_LOCALSTORAGE_KEY, baseUrl);
};
export const retrieveBaseUrl = () => {
if (!canUseLocalStorage()) {
return null;
}
return retrieveFromStorage(BASE_URL_LOCALSTORAGE_KEY);
};
2021-04-29 21:17:54 +05:30
export const getJwt = () => {
return new Promise((resolve) => {
if (isFunction(AP?.context?.getToken)) {
AP.context.getToken((token) => {
resolve(token);
});
} else {
resolve();
}
});
};
export const getLocation = () => {
return new Promise((resolve) => {
if (isFunction(AP?.getLocation)) {
AP.getLocation((location) => {
resolve(location);
});
} else {
resolve();
}
});
};
export const reloadPage = () => {
if (isFunction(AP?.navigator?.reload)) {
AP.navigator.reload();
} else {
window.location.reload();
}
};
export const sizeToParent = () => {
if (isFunction(AP?.sizeToParent)) {
AP.sizeToParent();
}
};
2021-12-11 22:18:48 +05:30
export const getGitlabSignInURL = async (signInURL) => {
const location = await getLocation();
if (location) {
const queryParams = {
return_to: location,
};
return `${signInURL}?${objectToQuery(queryParams)}`;
}
return signInURL;
};