summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jira_connect/api.js
blob: d78aba0a3f7584d09481264f27819ac2774bb51d (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
import axios from 'axios';

export const getJwt = () => {
  return new Promise((resolve) => {
    AP.context.getToken((token) => {
      resolve(token);
    });
  });
};

export const getLocation = () => {
  return new Promise((resolve) => {
    if (typeof AP.getLocation !== 'function') {
      resolve();
    }

    AP.getLocation((location) => {
      resolve(location);
    });
  });
};

export const addSubscription = async (addPath, namespace) => {
  const jwt = await getJwt();

  return axios.post(addPath, {
    jwt,
    namespace_path: namespace,
  });
};

export const removeSubscription = async (removePath) => {
  const jwt = await getJwt();

  return axios.delete(removePath, {
    params: {
      jwt,
    },
  });
};

export const fetchGroups = async (groupsPath, { page, perPage }) => {
  return axios.get(groupsPath, {
    params: {
      page,
      per_page: perPage,
    },
  });
};