delete fetchers.js

This commit is contained in:
Daniel D Orlando 2023-04-06 13:33:46 -07:00
parent 0d5b51ec8c
commit ec2ddc168b

View file

@ -1,96 +0,0 @@
/* eslint-disable react-hooks/rules-of-hooks */
import axios from 'axios';
import useSWR from 'swr';
import useSWRMutation from 'swr/mutation';
const fetcher = url => fetch(url, { credentials: 'include' }).then(res => res.json());
const axiosFetcher = async (url, params) => {
console.log(params, 'params');
return axios.get(url, params);
};
export const postRequest = async (url, { arg }) => {
return await axios({
method: 'post',
url: url,
withCredentials: true,
data: { arg }
});
};
export const axiosPost = async ({ url, arg, callback }) => {
try {
const response = await axios.post(url, { arg }, { withCredentials: true });
callback(response.data);
} catch (error) {
console.error('An error occurred while making the axios post request:', error);
}
};
export const searchFetcher = async (pre, q, pageNumber, callback) => {
pre();
const { data } = await axios.get(`/api/search?q=${q}&pageNumber=${pageNumber}`);
console.log('search data', data);
callback(data);
};
export const fetchById = async (path, conversationId) => {
return await axios.get(`/api/${path}/${conversationId}`);
// console.log(`fetch ${path} data`, data);
// callback(data);
};
export const swr = (path, successCallback, options) => {
const _options = { ...options };
if (successCallback) {
_options.onSuccess = successCallback;
}
return useSWR(path, fetcher, _options);
};
export default function manualSWR(path, type, successCallback) {
const options = {};
if (successCallback) {
options.onSuccess = successCallback;
}
const fetchFunction = type === 'get' ? fetcher : postRequest;
return useSWRMutation(path, fetchFunction, options);
}
export function useManualSWR({ path, params, type, onSuccess }) {
const options = {};
if (onSuccess) {
options.onSuccess = onSuccess;
}
console.log(params, 'params');
const fetchFunction = type === 'get' ? _.partialRight(axiosFetcher, params) : postRequest;
return useSWRMutation(path, fetchFunction, options);
}
export const handleFileSelected = async jsonData => {
try {
const response = await axios({
url: '/api/presets',
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
withCredentials: true,
data: JSON.stringify(jsonData)
});
// if (!response.ok) {
// throw new Error(`Error: ${response.statusText}`);
// }
console.log(response);
return response.data;
} catch (error) {
console.error('Error uploading the preset:', error);
}
};