mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-23 09:18:30 +00:00
181 lines
3.7 KiB
JavaScript
181 lines
3.7 KiB
JavaScript
import { defineDocumentType, makeSource } from "contentlayer/source-files"
|
|
import remarkGfm from "remark-gfm"
|
|
import rehypePrettyCode from "rehype-pretty-code"
|
|
import rehypeSlug from "rehype-slug"
|
|
import rehypeAutolinkHeadings from "rehype-autolink-headings"
|
|
|
|
/** @type {import('contentlayer/source-files').ComputedFields} */
|
|
const computedFields = {
|
|
slug: {
|
|
type: "string",
|
|
resolve: (doc) => `/${doc._raw.flattenedPath}`,
|
|
},
|
|
slugAsParams: {
|
|
type: "string",
|
|
resolve: (doc) => doc._raw.flattenedPath.split("/").slice(1).join("/"),
|
|
},
|
|
}
|
|
|
|
export const Doc = defineDocumentType(() => ({
|
|
name: "Doc",
|
|
filePathPattern: `docs/**/*.mdx`,
|
|
contentType: "mdx",
|
|
fields: {
|
|
title: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
description: {
|
|
type: "string",
|
|
},
|
|
published: {
|
|
type: "boolean",
|
|
default: true,
|
|
},
|
|
},
|
|
computedFields,
|
|
}))
|
|
|
|
export const Guide = defineDocumentType(() => ({
|
|
name: "Guide",
|
|
filePathPattern: `guides/**/*.mdx`,
|
|
contentType: "mdx",
|
|
fields: {
|
|
title: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
description: {
|
|
type: "string",
|
|
},
|
|
date: {
|
|
type: "date",
|
|
required: true,
|
|
},
|
|
published: {
|
|
type: "boolean",
|
|
default: true,
|
|
},
|
|
featured: {
|
|
type: "boolean",
|
|
default: false,
|
|
},
|
|
},
|
|
computedFields,
|
|
}))
|
|
|
|
export const Post = defineDocumentType(() => ({
|
|
name: "Post",
|
|
filePathPattern: `blog/**/*.mdx`,
|
|
contentType: "mdx",
|
|
fields: {
|
|
title: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
description: {
|
|
type: "string",
|
|
},
|
|
date: {
|
|
type: "date",
|
|
required: true,
|
|
},
|
|
published: {
|
|
type: "boolean",
|
|
default: true,
|
|
},
|
|
image: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
authors: {
|
|
// Reference types are not embedded.
|
|
// Until this is fixed, we can use a simple list.
|
|
// type: "reference",
|
|
// of: Author,
|
|
type: "list",
|
|
of: { type: "string" },
|
|
required: true,
|
|
},
|
|
},
|
|
computedFields,
|
|
}))
|
|
|
|
export const Author = defineDocumentType(() => ({
|
|
name: "Author",
|
|
filePathPattern: `authors/**/*.mdx`,
|
|
contentType: "mdx",
|
|
fields: {
|
|
title: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
description: {
|
|
type: "string",
|
|
},
|
|
avatar: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
twitter: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
},
|
|
computedFields,
|
|
}))
|
|
|
|
export const Page = defineDocumentType(() => ({
|
|
name: "Page",
|
|
filePathPattern: `pages/**/*.mdx`,
|
|
contentType: "mdx",
|
|
fields: {
|
|
title: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
description: {
|
|
type: "string",
|
|
},
|
|
},
|
|
computedFields,
|
|
}))
|
|
|
|
export default makeSource({
|
|
contentDirPath: "./content",
|
|
documentTypes: [Page, Doc, Guide, Post, Author],
|
|
mdx: {
|
|
remarkPlugins: [remarkGfm],
|
|
rehypePlugins: [
|
|
rehypeSlug,
|
|
[
|
|
rehypePrettyCode,
|
|
{
|
|
theme: "github-dark",
|
|
onVisitLine(node) {
|
|
// Prevent lines from collapsing in `display: grid` mode, and allow empty
|
|
// lines to be copy/pasted
|
|
if (node.children.length === 0) {
|
|
node.children = [{ type: "text", value: " " }]
|
|
}
|
|
},
|
|
onVisitHighlightedLine(node) {
|
|
node.properties.className.push("line--highlighted")
|
|
},
|
|
onVisitHighlightedWord(node) {
|
|
node.properties.className = ["word--highlighted"]
|
|
},
|
|
},
|
|
],
|
|
[
|
|
rehypeAutolinkHeadings,
|
|
{
|
|
properties: {
|
|
className: ["subheading-anchor"],
|
|
ariaLabel: "Link to section",
|
|
},
|
|
},
|
|
],
|
|
],
|
|
},
|
|
})
|