mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-16 17:10:12 +00:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import type { Channel } from "~/types/channel";
|
|
import type { Channels } from "../types/channels";
|
|
import { API_URL } from "./constants.server";
|
|
|
|
export const getChannels = async (token: string): Promise<Channels> => {
|
|
if (!token) {
|
|
throw new Error(`Unable to fetch channels, no token provided`);
|
|
}
|
|
|
|
const response = await fetch(`${API_URL}/api/channel/`, {
|
|
headers: {
|
|
Accept: "application/json",
|
|
"Content-Type": "application/json",
|
|
Authorization: `Token ${token}`,
|
|
mode: "no-cors",
|
|
},
|
|
});
|
|
if (!response.ok) {
|
|
throw new Error("Error getting channel information");
|
|
}
|
|
return response.json();
|
|
};
|
|
|
|
export const getChannel = async (
|
|
token: string,
|
|
id: string | undefined
|
|
): Promise<Channel> => {
|
|
if (!token) {
|
|
throw new Error(`Unable to fetch channels, no token provided`);
|
|
}
|
|
|
|
if (!id) {
|
|
throw new Error(`Unable to fetch channel, no id provided`);
|
|
}
|
|
|
|
const response = await fetch(`${API_URL}/api/channel/${id}`, {
|
|
headers: {
|
|
Accept: "application/json",
|
|
"Content-Type": "application/json",
|
|
Authorization: `Token ${token}`,
|
|
mode: "no-cors",
|
|
},
|
|
});
|
|
if (!response.ok) {
|
|
throw new Error("Error getting channel information");
|
|
}
|
|
return response.json();
|
|
};
|