Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/mobile/modules/t3-markdown-text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"./links": "./src/markdownLinks.ts",
"./markdown": "./src/nativeMarkdownText.ts",
"./primitive": "./src/MarkdownTextPrimitive.tsx",
"./renderer": "./src/SelectableMarkdownText.ios.tsx",
"./renderer": "./src/SelectableMarkdownText.tsx",
"./types": "./src/SelectableMarkdownText.types.ts"
},
"peerDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { MarkdownNode } from "react-native-nitro-markdown/headless";
import { CopyTextButton } from "./CopyTextButton";
import { MarkdownTextPrimitive } from "./MarkdownTextPrimitive";
import { nativeMarkdownDocumentRuns, nativeMarkdownListItemBlocks } from "./nativeMarkdownText";
import { NativeMarkdownSelectableText } from "./NativeMarkdownSelectableText.ios";
import { NativeMarkdownSelectableText } from "./NativeMarkdownSelectableText";
import type {
MarkdownCodeHighlighter,
MarkdownHighlightedToken,
Expand Down

This file was deleted.

108 changes: 105 additions & 3 deletions apps/mobile/modules/t3-markdown-text/src/SelectableMarkdownText.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
import type { SelectableMarkdownTextProps } from "./SelectableMarkdownText.types";
import { useMemo } from "react";
import { View } from "react-native";
import { parseMarkdownWithOptions } from "react-native-nitro-markdown/headless";

import {
nativeMarkdownChunkSpacing,
nativeMarkdownDocumentChunks,
nativeMarkdownDocumentRuns,
nativeMarkdownWithPreservedSoftBreaks,
} from "./nativeMarkdownText";
import { MarkdownImageRendererContext, NativeMarkdownBlock } from "./NativeMarkdownBlock";
import {
MarkdownFileContextMenuContext,
NativeMarkdownSelectableText,
type MarkdownFileContextMenuHandlers,
} from "./NativeMarkdownSelectableText";
import type {
SelectableMarkdownSkill,
SelectableMarkdownTextProps,
} from "./SelectableMarkdownText.types";

const EMPTY_SKILLS: ReadonlyArray<SelectableMarkdownSkill> = [];

export type {
MarkdownCodeHighlighter,
Expand All @@ -10,6 +31,87 @@ export type {
SelectableMarkdownTextProps,
} from "./SelectableMarkdownText.types";

export function SelectableMarkdownText(_props: SelectableMarkdownTextProps) {
return null;
export function hasNativeSelectableMarkdownText(): boolean {
return true;
}

export function SelectableMarkdownText({
markdown,
skills = EMPTY_SKILLS,
textStyle,
highlightCode,
preserveSoftBreaks = false,
onLinkPress,
fileContextMenu,
onFileContextMenuAction,
renderImage,
marginTop = 0,
marginBottom = 0,
}: SelectableMarkdownTextProps) {
const chunks = useMemo(() => {
const parsedDocument = parseMarkdownWithOptions(markdown, {
gfm: true,
html: true,
math: false,
});
const document = preserveSoftBreaks
? nativeMarkdownWithPreservedSoftBreaks(parsedDocument)
: parsedDocument;
return nativeMarkdownDocumentChunks(document).map((chunk) =>
chunk.kind === "selectable"
? {
...chunk,
runs: nativeMarkdownDocumentRuns(chunk.node, skills),
}
: chunk,
);
}, [markdown, preserveSoftBreaks, skills]);

const fileContextMenuHandlers = useMemo<MarkdownFileContextMenuHandlers | null>(
() =>
fileContextMenu && onFileContextMenuAction
? { fileContextMenu, onFileContextMenuAction }
: null,
[fileContextMenu, onFileContextMenuAction],
);

return (
<MarkdownImageRendererContext.Provider value={renderImage ?? null}>
<MarkdownFileContextMenuContext.Provider value={fileContextMenuHandlers}>
{/* A percentage width here creates a cyclic intrinsic measurement inside
shrink-to-fit containers such as user-message bubbles. Yoga then gives
the native text node an unbounded second pass and the parent only clips
the resulting single-line width instead of reflowing it. */}
<View style={{ flexShrink: 1, minWidth: 0, marginTop, marginBottom }}>
{chunks.map((chunk, index) => {
const content =
chunk.kind === "rich" ? (
<NativeMarkdownBlock
node={chunk.node}
skills={skills}
textStyle={textStyle}
highlightCode={highlightCode}
onLinkPress={onLinkPress}
/>
) : (
<NativeMarkdownSelectableText
runs={chunk.runs}
textStyle={textStyle}
onLinkPress={onLinkPress}
/>
);

return (
<View
key={chunk.key}
style={{ paddingTop: nativeMarkdownChunkSpacing(chunks[index - 1], chunk) }}
>
{content}
</View>
);
})}
</View>
</MarkdownFileContextMenuContext.Provider>
</MarkdownImageRendererContext.Provider>
);
}
Loading