-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add sorting for messages on package and ui level
- Loading branch information
Showing
5 changed files
with
161 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
"use client"; | ||
|
||
interface CodeBlockProps { | ||
node: any; | ||
inline: boolean; | ||
className: string; | ||
children: any; | ||
} | ||
|
||
export function CodeBlock({ | ||
node, | ||
inline, | ||
className, | ||
children, | ||
...props | ||
}: CodeBlockProps) { | ||
if (!inline) { | ||
return ( | ||
<div className="not-prose flex flex-col bg-white my-4"> | ||
<pre | ||
{...props} | ||
className={`text-sm w-full overflow-x-auto dark:bg-zinc-900 p-4 border border-zinc-200 dark:border-zinc-700 rounded-xl dark:text-zinc-50 text-zinc-900`} | ||
> | ||
<code className="whitespace-pre-wrap break-words">{children}</code> | ||
</pre> | ||
</div> | ||
); | ||
} else { | ||
return ( | ||
<code | ||
className={`${className} text-sm bg-zinc-100 dark:bg-zinc-800 py-0.5 px-1 rounded-md`} | ||
{...props} | ||
> | ||
{children} | ||
</code> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
import { memo } from "react"; | ||
import ReactMarkdown, { type Components } from "react-markdown"; | ||
import remarkGfm from "remark-gfm"; | ||
import { CodeBlock } from "./code-block"; | ||
|
||
const components: Partial<Components> = { | ||
// @ts-expect-error | ||
code: CodeBlock, | ||
pre: ({ children }) => <>{children}</>, | ||
ol: ({ node, children, ...props }) => { | ||
return ( | ||
<ol className="list-decimal list-outside ml-4" {...props}> | ||
{children} | ||
</ol> | ||
); | ||
}, | ||
li: ({ node, children, ...props }) => { | ||
return ( | ||
<li className="py-1" {...props}> | ||
{children} | ||
</li> | ||
); | ||
}, | ||
ul: ({ node, children, ...props }) => { | ||
return ( | ||
<ul className="list-decimal list-outside ml-4" {...props}> | ||
{children} | ||
</ul> | ||
); | ||
}, | ||
strong: ({ node, children, ...props }) => { | ||
return ( | ||
<span className="font-semibold" {...props}> | ||
{children} | ||
</span> | ||
); | ||
}, | ||
a: ({ node, children, ...props }) => { | ||
return ( | ||
<a | ||
className="text-blue-500 hover:underline" | ||
target="_blank" | ||
rel="noreferrer" | ||
{...props} | ||
> | ||
{children} | ||
</a> | ||
); | ||
}, | ||
h1: ({ node, children, ...props }) => { | ||
return ( | ||
<h1 className="text-3xl font-semibold mt-6 mb-2" {...props}> | ||
{children} | ||
</h1> | ||
); | ||
}, | ||
h2: ({ node, children, ...props }) => { | ||
return ( | ||
<h2 className="text-2xl font-semibold mt-6 mb-2" {...props}> | ||
{children} | ||
</h2> | ||
); | ||
}, | ||
h3: ({ node, children, ...props }) => { | ||
return ( | ||
<h3 className="text-xl font-semibold mt-6 mb-2" {...props}> | ||
{children} | ||
</h3> | ||
); | ||
}, | ||
h4: ({ node, children, ...props }) => { | ||
return ( | ||
<h4 className="text-lg font-semibold mt-6 mb-2" {...props}> | ||
{children} | ||
</h4> | ||
); | ||
}, | ||
h5: ({ node, children, ...props }) => { | ||
return ( | ||
<h5 className="text-base font-semibold mt-6 mb-2" {...props}> | ||
{children} | ||
</h5> | ||
); | ||
}, | ||
h6: ({ node, children, ...props }) => { | ||
return ( | ||
<h6 className="text-sm font-semibold mt-6 mb-2" {...props}> | ||
{children} | ||
</h6> | ||
); | ||
}, | ||
}; | ||
|
||
const remarkPlugins = [remarkGfm]; | ||
|
||
const NonMemoizedMarkdown = ({ children }: { children: string }) => { | ||
return ( | ||
<ReactMarkdown remarkPlugins={remarkPlugins} components={components}> | ||
{children} | ||
</ReactMarkdown> | ||
); | ||
}; | ||
|
||
export const Markdown = memo( | ||
NonMemoizedMarkdown, | ||
(prevProps, nextProps) => prevProps.children === nextProps.children | ||
); |