You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.2 KiB

import z from "zod";
import ky from "ky";
import Adapter, { ApiType } from "@/client/adapters";
import Trending, { TrendingModel } from "./typings/trending";
import Transformer from "./transformer";
import { Suggestions } from "@/client/typings/search/suggestions";
const getTrending = async (
apiBaseUrl: string,
region = "US"
): Promise<Trending[]> => {
const url = new URL("/trending", apiBaseUrl);
const response = await ky.get(url, {
searchParams: { region: region.toUpperCase() }
});
const json = await response.json();
const data = TrendingModel.array().parse(json);
return data;
};
const getSearchSuggestions = async (
apiBaseUrl: string,
query: string
): Promise<Suggestions> => {
const url = new URL("suggestions", apiBaseUrl);
const response = await ky.get(url, {
searchParams: { query: query }
});
const json = await response.json();
const data = z.string().array().parse(json);
return data;
};
const adapter: Adapter = {
apiType: ApiType.Piped,
connect(url) {
return {
getTrending(region) {
return getTrending(url, region).then(Transformer.trending);
},
getSearchSuggestions(query) {
return getSearchSuggestions(url, query);
}
};
}
};
export default adapter;