tubearchivist-frontend/app/lib/getVideos.ts
Sean Norwood 2e213376e3
Initial
2022-10-18 14:28:37 -05:00

43 lines
1.1 KiB
TypeScript

import type { Datum, Videos } from "~/types/Videos";
import { API_URL } from "./constants.server";
export const getVideos = async (token: string): Promise<Videos> => {
if (!token) {
throw new Error("Missing API token in request to get videos");
}
const response = await fetch(`${API_URL}/api/video/`, {
headers: {
Accept: "application/json",
"Content-Type": "application/json",
Authorization: `Token ${token}`,
mode: "no-cors",
},
});
if (!response.ok) {
throw new Error(`Failed to fetch videos: ${response.statusText}`);
}
return response.json();
};
export const getVideo = async (token: string, videoId: string): Promise<Datum> => {
if (!token) {
throw new Error("Missing API token in request to get video");
}
const response = await fetch(`${API_URL}/api/video/${videoId}`, {
headers: {
Accept: "application/json",
"Content-Type": "application/json",
Authorization: `Token ${token}`,
mode: "no-cors",
},
});
if (!response.ok) {
throw new Error(`Failed to fetch videos: ${response.statusText}`);
}
return response.json();
};