Portfolio/frontend/src/lib/@api/candidate.ts
2022-12-04 21:29:10 +01:00

156 lines
No EOL
4.3 KiB
TypeScript

import axios, { type AxiosProgressEvent } from 'axios';
import type { CandidateData, CandidateLogin } from '$lib/stores/candidate';
import type { SubmissionProgress } from '$lib/stores/portfolio';
import { API_URL, errorHandler, type Fetch } from '.';
import DOMPurify from 'isomorphic-dompurify';
// SSR Compatible
export const apiLogout = async (fetchSsr?: Fetch) => {
try {
fetchSsr
? await fetchSsr(API_URL + '/candidate/logout', { method: 'POST', credentials: 'include' })
: await axios.post(API_URL + '/candidate/logout', { withCredentials: true });
} catch (e: any) {
throw errorHandler(e, 'Logout failed');
}
};
// SSR Compatible
export const apiFetchDetails = async (fetchSsr?: Fetch): Promise<CandidateData> => {
try {
if (fetchSsr) {
const res = await fetchSsr(API_URL + '/candidate/details', {
method: 'GET',
credentials: 'include'
});
if (res.status != 200) {
throw new Error(await res.text());
}
return await res.json();
}
const res = await axios.get(API_URL + '/candidate/details', { withCredentials: true });
return res.data;
} catch (e: any) {
console.log(e);
throw errorHandler(e, 'Failed to fill details');
}
};
// SSR Compatible
export const apiFetchSubmissionProgress = async (fetchSsr?: Fetch): Promise<SubmissionProgress> => {
try {
if (fetchSsr) {
const res = await fetchSsr(API_URL + '/candidate/portfolio/submission_progress', {
method: 'GET',
credentials: 'include'
});
if (res.status != 200) {
throw Error(await res.text());
}
return await res.json();
}
const res = await axios.get(API_URL + '/candidate/portfolio/submission_progress', {
withCredentials: true
});
return res.data;
} catch (e: any) {
throw errorHandler(e, 'Failed to fetch submission progress');
}
};
export const apiWhoami = async (): Promise<string> => {
try {
const res = await axios.get(`${API_URL}/whoami`);
return res.data;
} catch (e: any) {
throw errorHandler(e, 'Whoami failed');
}
};
export const apiLogin = async (data: CandidateLogin): Promise<number> => {
try {
const res = await axios.post(API_URL + '/candidate/login', data, { withCredentials: true });
return data.applicationId;
} catch (e: any) {
throw errorHandler(e, 'Login failed');
}
};
export const apiFillDetails = async (data: CandidateData): Promise<CandidateData> => {
Object.keys(data).forEach(key => {
// @ts-ignore
data[key] = DOMPurify.sanitize(data[key]);
});
try {
const res = await axios.post(API_URL + '/candidate/details', data, { withCredentials: true });
return res.data;
} catch (e: any) {
throw errorHandler(e, 'Failed to fill details');
}
};
export const apiUploadCoverLetter = async (
letter: File,
progressReporter: (progress: AxiosProgressEvent) => void
): Promise<boolean> => {
try {
const res = await axios.post(API_URL + '/candidate/add/cover_letter', letter, {
withCredentials: true,
data: letter,
headers: {
'Content-Type': 'application/pdf'
},
onUploadProgress: progressReporter
});
return true;
} catch (e: any) {
throw errorHandler(e, 'Failed to upload cover letter');
}
};
export const apiUploadPortfolioLetter = async (
letter: File,
progressReporter: (progress: AxiosProgressEvent) => void
): Promise<boolean> => {
try {
const res = await axios.post(API_URL + '/candidate/add/portfolio_letter', letter, {
withCredentials: true,
data: letter,
headers: {
'Content-Type': 'application/pdf'
},
onUploadProgress: progressReporter
});
return true;
} catch (e: any) {
throw errorHandler(e, 'Failed to upload cover letter');
}
};
export const apiUploadPortfolioZip = async (
portfolio: File,
progressReporter: (progress: AxiosProgressEvent) => void
): Promise<boolean> => {
try {
const res = await axios.post(API_URL + '/candidate/add/portfolio_zip', portfolio, {
withCredentials: true,
data: portfolio,
headers: {
'Content-Type': 'application/zip'
},
onUploadProgress: progressReporter
});
return true;
} catch (e: any) {
throw errorHandler(e, 'Failed to upload cover letter');
}
};
export const apiSubmitPortfolio = async (): Promise<boolean> => {
try {
await axios.post(API_URL + '/candidate/portfolio/submit', {}, { withCredentials: true });
return true;
} catch (e: any) {
throw errorHandler(e, 'Failed to submit portfolio');
}
};