@astrojs/starlight
Version:
Build beautiful, high-performance documentation websites with Astro
144 lines (129 loc) • 5.27 kB
text/typescript
import type { GetStaticPathsItem } from 'astro';
import { getCollection } from 'astro:content';
import config from 'virtual:starlight/user-config';
import project from 'virtual:starlight/project-context';
import { getCollectionPathFromRoot } from '../collection';
import { localizedId, localizedSlug, slugToLocaleData, slugToParam } from '../slugs';
import { validateLogoImports } from '../validateLogoImports';
import { BuiltInDefaultLocale } from '../i18n';
import type { Route, StarlightDocsCollectionEntry, StarlightDocsEntry } from './types';
// Validate any user-provided logos imported correctly.
// We do this here so all pages trigger it and at the top level so it runs just once.
validateLogoImports();
interface Path extends GetStaticPathsItem {
params: { slug: string | undefined };
props: Route;
}
/**
* Astro is inconsistent in its `index.md` slug generation. In most cases,
* `index` is stripped, but in the root of a collection, we get a slug of `index`.
* We map that to an empty string for consistent behaviour.
*/
const normalizeIndexSlug = (slug: string) => (slug === 'index' ? '' : slug);
/** Normalize the different collection entry we can get from a legacy collection or a loader. */
export function normalizeCollectionEntry(entry: StarlightDocsCollectionEntry): StarlightDocsEntry {
const slug = normalizeIndexSlug(entry.slug ?? entry.id);
return {
...entry,
// In a collection with a loader, the `id` is a slug and should be normalized.
id: entry.slug ? entry.id : slug,
// In a legacy collection, the `filePath` property doesn't exist.
filePath: entry.filePath ?? `${getCollectionPathFromRoot('docs', project)}/${entry.id}`,
// In a collection with a loader, the `slug` property is replaced by the `id`.
slug: normalizeIndexSlug(entry.slug ?? entry.id),
};
}
/** All entries in the docs content collection. */
const docs: StarlightDocsEntry[] = (
(await getCollection('docs', ({ data }) => {
// In production, filter out drafts.
return import.meta.env.MODE !== 'production' || data.draft === false;
})) ?? []
).map(normalizeCollectionEntry);
function getRoutes(): Route[] {
const routes: Route[] = docs.map((entry) => ({
entry,
slug: entry.slug,
id: entry.id,
entryMeta: slugToLocaleData(entry.slug),
...slugToLocaleData(entry.slug),
}));
// In multilingual sites, add required fallback routes.
if (config.isMultilingual) {
/** Entries in the docs content collection for the default locale. */
const defaultLocaleDocs = getLocaleDocs(
config.defaultLocale?.locale === 'root' ? undefined : config.defaultLocale?.locale
);
for (const key in config.locales) {
if (key === config.defaultLocale.locale) continue;
const localeConfig = config.locales[key];
if (!localeConfig) continue;
const locale = key === 'root' ? undefined : key;
const localeDocs = getLocaleDocs(locale);
for (const fallback of defaultLocaleDocs) {
const slug = localizedSlug(fallback.slug, locale);
const id = project.legacyCollections ? localizedId(fallback.id, locale) : slug;
const doesNotNeedFallback = localeDocs.some((doc) => doc.slug === slug);
if (doesNotNeedFallback) continue;
routes.push({
entry: fallback,
slug,
id,
isFallback: true,
lang: localeConfig.lang || BuiltInDefaultLocale.lang,
locale,
dir: localeConfig.dir,
entryMeta: slugToLocaleData(fallback.slug),
});
}
}
}
return routes;
}
export const routes = getRoutes();
function getParamRouteMapping(): ReadonlyMap<string | undefined, Route> {
const map = new Map<string | undefined, Route>();
for (const route of routes) {
map.set(slugToParam(route.slug), route);
}
return map;
}
const routesBySlugParam = getParamRouteMapping();
export function getRouteBySlugParam(slugParam: string | undefined): Route | undefined {
return routesBySlugParam.get(slugParam?.replace(/\/$/, '') || undefined);
}
function getPaths(): Path[] {
return routes.map((route) => ({
params: { slug: slugToParam(route.slug) },
props: route,
}));
}
export const paths = getPaths();
/**
* Get all routes for a specific locale.
* A locale of `undefined` is treated as the “root” locale, if configured.
*/
export function getLocaleRoutes(locale: string | undefined): Route[] {
return filterByLocale(routes, locale);
}
/**
* Get all entries in the docs content collection for a specific locale.
* A locale of `undefined` is treated as the “root” locale, if configured.
*/
function getLocaleDocs(locale: string | undefined): StarlightDocsEntry[] {
return filterByLocale(docs, locale);
}
/** Filter an array to find items whose slug matches the passed locale. */
function filterByLocale<T extends { slug: string }>(items: T[], locale: string | undefined): T[] {
if (config.locales) {
if (locale && locale in config.locales) {
return items.filter((i) => i.slug === locale || i.slug.startsWith(locale + '/'));
} else if (config.locales.root) {
const langKeys = Object.keys(config.locales).filter((k) => k !== 'root');
const isLangIndex = new RegExp(`^(${langKeys.join('|')})$`);
const isLangDir = new RegExp(`^(${langKeys.join('|')})/`);
return items.filter((i) => !isLangIndex.test(i.slug) && !isLangDir.test(i.slug));
}
}
return items;
}