mirror of
https://github.com/go-gitea/gitea
synced 2024-11-06 06:09:07 +01:00
6d96f0b0d1
1. Introduce lightweight `fetch` wrapper functions that automatically sets csfr token, content-type and use it in `RepoActionView.vue`. 2. Fix a specific issue on `RepoActionView.vue` where a fetch network error is shortly visible during page reload sometimes. It can be reproduced by F5-in in quick succession on the actions view page and was also producing a red error box on the page. Once approved, we can replace all current `fetch` uses in UI with this in another PR. --------- Co-authored-by: Giteabot <teabot@gitea.io>
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
import {isObject} from '../utils.js';
|
|
|
|
const {csrfToken} = window.config;
|
|
|
|
// fetch wrapper, use below method name functions and the `data` option to pass in data
|
|
// which will automatically set an appropriate content-type header. For json content,
|
|
// only object and array types are currently supported.
|
|
function request(url, {headers, data, body, ...other} = {}) {
|
|
let contentType;
|
|
if (!body) {
|
|
if (data instanceof FormData) {
|
|
contentType = 'multipart/form-data';
|
|
body = data;
|
|
} else if (data instanceof URLSearchParams) {
|
|
contentType = 'application/x-www-form-urlencoded';
|
|
body = data;
|
|
} else if (isObject(data) || Array.isArray(data)) {
|
|
contentType = 'application/json';
|
|
body = JSON.stringify(data);
|
|
}
|
|
}
|
|
|
|
return fetch(url, {
|
|
headers: {
|
|
'x-csrf-token': csrfToken,
|
|
...(contentType && {'content-type': contentType}),
|
|
...headers,
|
|
},
|
|
...(body && {body}),
|
|
...other,
|
|
});
|
|
}
|
|
|
|
export const GET = (url, opts) => request(url, {method: 'GET', ...opts});
|
|
export const POST = (url, opts) => request(url, {method: 'POST', ...opts});
|
|
export const PATCH = (url, opts) => request(url, {method: 'PATCH', ...opts});
|
|
export const PUT = (url, opts) => request(url, {method: 'PUT', ...opts});
|
|
export const DELETE = (url, opts) => request(url, {method: 'DELETE', ...opts});
|