mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
42 lines
1.5 KiB
TypeScript
42 lines
1.5 KiB
TypeScript
import { addPackageToModel } from '@discordjs/scripts';
|
|
import { ApiModel, ApiFunction } from '@microsoft/api-extractor-model';
|
|
import { notFound } from 'next/navigation';
|
|
import { fetchModelJSON } from '~/app/docAPI';
|
|
import { OVERLOAD_SEPARATOR, PACKAGES } from './constants';
|
|
import { findMember, findMemberByKey } from './model';
|
|
|
|
export interface ItemRouteParams {
|
|
item: string;
|
|
package: string;
|
|
version: string;
|
|
}
|
|
|
|
export async function fetchMember({ package: packageName, version: branchName = 'main', item }: ItemRouteParams) {
|
|
if (!PACKAGES.includes(packageName)) {
|
|
notFound();
|
|
}
|
|
|
|
const model = new ApiModel();
|
|
|
|
if (branchName === 'main') {
|
|
const modelJSONFiles = await Promise.all(PACKAGES.map(async (pkg) => fetchModelJSON(pkg, branchName)));
|
|
|
|
for (const modelJSONFile of modelJSONFiles) {
|
|
addPackageToModel(model, modelJSONFile);
|
|
}
|
|
} else {
|
|
const modelJSON = await fetchModelJSON(packageName, branchName);
|
|
addPackageToModel(model, modelJSON);
|
|
}
|
|
|
|
const [memberName, overloadIndex] = decodeURIComponent(item).split(OVERLOAD_SEPARATOR);
|
|
|
|
// eslint-disable-next-line prefer-const
|
|
let { containerKey, displayName: name } = findMember(model, packageName, memberName) ?? {};
|
|
if (name && overloadIndex && !Number.isNaN(Number.parseInt(overloadIndex, 10))) {
|
|
containerKey = ApiFunction.getContainerKey(name, Number.parseInt(overloadIndex, 10));
|
|
}
|
|
|
|
return memberName && containerKey ? findMemberByKey(model, packageName, containerKey) ?? null : null;
|
|
}
|