2021-09-30 23:02:18 +05:30
|
|
|
import { DEFAULT_PER_PAGE } from '~/api';
|
|
|
|
import createFlash from '~/flash';
|
2021-03-11 19:13:27 +05:30
|
|
|
import { __ } from '~/locale';
|
2021-03-08 18:12:59 +05:30
|
|
|
import axios from '../lib/utils/axios_utils';
|
|
|
|
import { buildApiUrl } from './api_utils';
|
|
|
|
|
|
|
|
const USER_COUNTS_PATH = '/api/:version/user_counts';
|
|
|
|
const USERS_PATH = '/api/:version/users.json';
|
|
|
|
const USER_PATH = '/api/:version/users/:id';
|
|
|
|
const USER_STATUS_PATH = '/api/:version/users/:id/status';
|
|
|
|
const USER_PROJECTS_PATH = '/api/:version/users/:id/projects';
|
|
|
|
const USER_POST_STATUS_PATH = '/api/:version/user/status';
|
|
|
|
|
|
|
|
export function getUsers(query, options) {
|
|
|
|
const url = buildApiUrl(USERS_PATH);
|
|
|
|
return axios.get(url, {
|
|
|
|
params: {
|
|
|
|
search: query,
|
|
|
|
per_page: DEFAULT_PER_PAGE,
|
|
|
|
...options,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getUser(id, options) {
|
|
|
|
const url = buildApiUrl(USER_PATH).replace(':id', encodeURIComponent(id));
|
|
|
|
return axios.get(url, {
|
|
|
|
params: options,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getUserCounts() {
|
|
|
|
const url = buildApiUrl(USER_COUNTS_PATH);
|
|
|
|
return axios.get(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getUserStatus(id, options) {
|
|
|
|
const url = buildApiUrl(USER_STATUS_PATH).replace(':id', encodeURIComponent(id));
|
|
|
|
return axios.get(url, {
|
|
|
|
params: options,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getUserProjects(userId, query, options, callback) {
|
|
|
|
const url = buildApiUrl(USER_PROJECTS_PATH).replace(':id', userId);
|
|
|
|
const defaults = {
|
|
|
|
search: query,
|
|
|
|
per_page: DEFAULT_PER_PAGE,
|
|
|
|
};
|
|
|
|
return axios
|
|
|
|
.get(url, {
|
|
|
|
params: { ...defaults, ...options },
|
|
|
|
})
|
|
|
|
.then(({ data }) => callback(data))
|
2021-09-30 23:02:18 +05:30
|
|
|
.catch(() =>
|
|
|
|
createFlash({
|
|
|
|
message: __('Something went wrong while fetching projects'),
|
|
|
|
}),
|
|
|
|
);
|
2021-03-08 18:12:59 +05:30
|
|
|
}
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
export function updateUserStatus({ emoji, message, availability, clearStatusAfter }) {
|
2021-03-08 18:12:59 +05:30
|
|
|
const url = buildApiUrl(USER_POST_STATUS_PATH);
|
|
|
|
|
|
|
|
return axios.put(url, {
|
|
|
|
emoji,
|
|
|
|
message,
|
|
|
|
availability,
|
2021-04-29 21:17:54 +05:30
|
|
|
clear_status_after: clearStatusAfter,
|
2021-03-08 18:12:59 +05:30
|
|
|
});
|
|
|
|
}
|