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.

89 lines
1.9 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';
2021-04-17 20:07:23 +05:30
import { ALERT_LOCALSTORAGE_KEY } from './constants';
2021-04-29 21:17:54 +05:30
const isFunction = (fn) => typeof fn === 'function';
2021-04-17 20:07:23 +05:30
/**
* Persist alert data to localStorage.
*/
export const persistAlert = ({ title, message, linkUrl, variant } = {}) => {
2021-11-11 11:23:49 +05:30
if (!AccessorUtilities.canUseLocalStorage()) {
2021-04-17 20:07:23 +05:30
return;
}
const payload = JSON.stringify({ title, message, linkUrl, variant });
localStorage.setItem(ALERT_LOCALSTORAGE_KEY, payload);
};
/**
* Return alert data from localStorage.
*/
export const retrieveAlert = () => {
2021-11-11 11:23:49 +05:30
if (!AccessorUtilities.canUseLocalStorage()) {
2021-04-17 20:07:23 +05:30
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);
};
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;
};