summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jira_connect/subscriptions/utils.js
blob: ecd1a31339a467f3b5e7bb31d7f39c5d538f0f25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import AccessorUtilities from '~/lib/utils/accessor';
import { ALERT_LOCALSTORAGE_KEY } from './constants';

const isFunction = (fn) => typeof fn === 'function';

/**
 * 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);
};

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();
  }
};