mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1013 B
TypeScript
35 lines
1013 B
TypeScript
import { renderToStaticMarkup } from "react-dom/server";
|
|
import ReactMarkdown from "react-markdown";
|
|
import remarkGfm from "remark-gfm";
|
|
import { describe, expect, it } from "vitest";
|
|
import { getSingleLinkHref } from "@/components/MemoContent/markdown/Paragraph";
|
|
|
|
const collectSingleLinkHrefs = (content: string): Array<string | undefined> => {
|
|
const hrefs: Array<string | undefined> = [];
|
|
|
|
renderToStaticMarkup(
|
|
<ReactMarkdown
|
|
remarkPlugins={[remarkGfm]}
|
|
components={{
|
|
p: ({ children, node }) => {
|
|
hrefs.push(getSingleLinkHref(node));
|
|
return <p>{children}</p>;
|
|
},
|
|
}}
|
|
>
|
|
{content}
|
|
</ReactMarkdown>,
|
|
);
|
|
|
|
return hrefs;
|
|
};
|
|
|
|
describe("memo content paragraph links", () => {
|
|
it("treats only bare single-link paragraphs as single link hrefs", () => {
|
|
expect(collectSingleLinkHrefs("https://www.bilibili.com/\n\n[bilibili](https://www.bilibili.com/)")).toEqual([
|
|
"https://www.bilibili.com/",
|
|
undefined,
|
|
]);
|
|
});
|
|
});
|