apps/web/components/dashboard/preview/content-renderers/README.md
This directory contains the content-aware rendering system for LinkContentPreview. It allows for special rendering of different types of links based on their URL patterns.
The system consists of:
types.ts): Defines the ContentRenderer interfaceregistry.ts): Manages registration and retrieval of renderersTo add support for a new website or content type:
MyWebsiteRenderer.tsx)ContentRenderer interface:import { ContentRenderer } from "./types";
import { BookmarkTypes, ZBookmark } from "@karakeep/shared/types/bookmarks";
import { MyIcon } from "lucide-react";
function canRenderMyWebsite(bookmark: ZBookmark): boolean {
if (bookmark.content.type !== BookmarkTypes.LINK) {
return false;
}
// Add your URL pattern matching logic here
return bookmark.content.url.includes("mywebsite.com");
}
function MyWebsiteRendererComponent({ bookmark }: { bookmark: ZBookmark }) {
// Your custom rendering logic here
return <div>Custom content for MyWebsite</div>;
}
export const myWebsiteRenderer: ContentRenderer = {
id: "mywebsite",
name: "My Website",
icon: MyIcon,
canRender: canRenderMyWebsite,
component: MyWebsiteRendererComponent,
priority: 10, // Higher priority = appears first in dropdown
};
index.ts:import { myWebsiteRenderer } from "./MyWebsiteRenderer";
contentRendererRegistry.register(myWebsiteRenderer);