Spaces:
Sleeping
Sleeping
File size: 16,005 Bytes
f871fed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 |
import React from 'react'
import { FileText, Lightbulb, FileEdit } from 'lucide-react'
export type ReferenceType = 'source' | 'note' | 'source_insight'
export interface ParsedReference {
type: ReferenceType
id: string
originalText: string
startIndex: number
endIndex: number
}
export interface ExtractedReference {
type: ReferenceType
id: string
originalText: string
placeholder: string
}
export interface ExtractedReferences {
processedText: string
references: ExtractedReference[]
}
export interface ReferenceData {
number: number
type: ReferenceType
id: string
}
/**
* Parse source references from text
*
* Handles various formats:
* - [source:abc123] β single reference
* - [note:a], [note:b] β multiple references
* - [note:a, note:b] β comma-separated references (edge case from LLM)
* - Mixed: [source:x, note:y, source_insight:z]
*
* @param text - Text containing references
* @returns Array of parsed references
*/
export function parseSourceReferences(text: string): ParsedReference[] {
// Match pattern: (source_insight|note|source):alphanumeric_id
// This handles references both inside and outside brackets
const pattern = /(source_insight|note|source):([a-zA-Z0-9_]+)/g
const matches: ParsedReference[] = []
let match
while ((match = pattern.exec(text)) !== null) {
const type = match[1] as ReferenceType
const id = match[2]
matches.push({
type,
id,
originalText: match[0],
startIndex: match.index,
endIndex: pattern.lastIndex
})
}
return matches
}
/**
* Convert source references in text to clickable React elements
*
* @param text - Text containing references
* @param onReferenceClick - Callback when reference is clicked (type, id)
* @returns React nodes with clickable reference buttons
*/
export function convertSourceReferences(
text: string,
onReferenceClick: (type: ReferenceType, id: string) => void
): React.ReactNode {
const matches = parseSourceReferences(text)
if (matches.length === 0) return text
const parts: React.ReactNode[] = []
let lastIndex = 0
matches.forEach((match, idx) => {
// Check if there are brackets before the match
const beforeMatch = text.substring(Math.max(0, match.startIndex - 2), match.startIndex)
const hasDoubleBracketBefore = beforeMatch === '[['
const hasSingleBracketBefore = beforeMatch.endsWith('[') && !hasDoubleBracketBefore
// Determine where to start including text
let textStartIndex = lastIndex
if (hasDoubleBracketBefore && lastIndex === match.startIndex - 2) {
textStartIndex = match.startIndex - 2
} else if (hasSingleBracketBefore && lastIndex === match.startIndex - 1) {
textStartIndex = match.startIndex - 1
}
// Add text before match (excluding brackets we'll include in the button)
if (textStartIndex < match.startIndex && lastIndex < textStartIndex) {
parts.push(text.substring(lastIndex, textStartIndex))
} else if (lastIndex < match.startIndex && !hasSingleBracketBefore && !hasDoubleBracketBefore) {
parts.push(text.substring(lastIndex, match.startIndex))
}
// Check if there are brackets after the match
const afterMatch = text.substring(match.endIndex, Math.min(text.length, match.endIndex + 2))
const hasDoubleBracketAfter = afterMatch === ']]'
const hasSingleBracketAfter = afterMatch.startsWith(']') && !hasDoubleBracketAfter
// Determine the display text with appropriate brackets
let displayText = match.originalText
if (hasDoubleBracketBefore && hasDoubleBracketAfter) {
displayText = `[[${match.originalText}]]`
} else if (hasSingleBracketBefore && hasSingleBracketAfter) {
displayText = `[${match.originalText}]`
} else {
displayText = match.originalText
}
// Add clickable reference button
parts.push(
<button
key={`ref-${idx}-${match.type}-${match.id}`}
onClick={(e) => {
e.preventDefault()
e.stopPropagation()
onReferenceClick(match.type, match.id)
}}
className="text-primary hover:underline cursor-pointer inline font-medium"
type="button"
>
{displayText}
</button>
)
// Update lastIndex to skip the closing brackets
if (hasDoubleBracketAfter) {
lastIndex = match.endIndex + 2
} else if (hasSingleBracketAfter) {
lastIndex = match.endIndex + 1
} else {
lastIndex = match.endIndex
}
})
// Add remaining text
if (lastIndex < text.length) {
parts.push(text.substring(lastIndex))
}
return <>{parts}</>
}
/**
* Convert references in text to markdown links
* Use this BEFORE passing text to ReactMarkdown
*
* Handles complex patterns including:
* - Plain references: source:abc β [source:abc](#ref-source-abc)
* - Bracketed: [source:abc] β [[source:abc]](#ref-source-abc)
* - Double brackets: [[source:abc]] β [[[source:abc]]](#ref-source-abc)
* - With bold: [**source:abc**] β [**source:abc**](#ref-source-abc)
* - After commas: [source:a, note:b] β each converted separately
* - Nested: [**source:a**, [source_insight:b]] β both converted
*
* Uses greedy matching to catch all references regardless of surrounding context.
*
* @param text - Original text with references
* @returns Text with references converted to markdown links
*/
export function convertReferencesToMarkdownLinks(text: string): string {
// Step 1: Find ALL references using simple greedy pattern
const refPattern = /(source_insight|note|source):([a-zA-Z0-9_]+)/g
const references: Array<{ type: string; id: string; index: number; length: number }> = []
let match
while ((match = refPattern.exec(text)) !== null) {
const type = match[1]
const id = match[2]
// Validate the reference
const validTypes = ['source', 'source_insight', 'note']
if (!validTypes.includes(type) || !id || id.length === 0 || id.length > 100) {
continue // Skip invalid references
}
references.push({
type,
id,
index: match.index,
length: match[0].length
})
}
// If no references found, return original text
if (references.length === 0) return text
// Step 2: Process references from end to start (to preserve indices)
let result = text
for (let i = references.length - 1; i >= 0; i--) {
const ref = references[i]
const refStart = ref.index
const refEnd = refStart + ref.length
const refText = `${ref.type}:${ref.id}`
// Step 3: Analyze context around the reference
// Look back up to 50 chars for opening brackets/bold markers
const contextBefore = result.substring(Math.max(0, refStart - 50), refStart)
// Look ahead up to 50 chars for closing brackets/bold markers
const contextAfter = result.substring(refEnd, Math.min(result.length, refEnd + 50))
// Determine display text by checking immediate surroundings
let displayText = refText
let replaceStart = refStart
let replaceEnd = refEnd
// Check for double brackets [[ref]]
if (contextBefore.endsWith('[[') && contextAfter.startsWith(']]')) {
displayText = `[[${refText}]]`
replaceStart = refStart - 2
replaceEnd = refEnd + 2
}
// Check for single brackets [ref]
else if (contextBefore.endsWith('[') && contextAfter.startsWith(']')) {
displayText = `[${refText}]`
replaceStart = refStart - 1
replaceEnd = refEnd + 1
}
// Check for bold with brackets [**ref**]
else if (contextBefore.endsWith('[**') && contextAfter.startsWith('**]')) {
displayText = `[**${refText}**]`
replaceStart = refStart - 3
replaceEnd = refEnd + 3
}
// Check for just bold **ref**
else if (contextBefore.endsWith('**') && contextAfter.startsWith('**')) {
displayText = `**${refText}**`
replaceStart = refStart - 2
replaceEnd = refEnd + 2
}
// Plain reference (no brackets)
else {
displayText = refText
}
// Step 4: Build the markdown link
const href = `#ref-${ref.type}-${ref.id}`
const markdownLink = `[${displayText}](${href})`
// Step 5: Replace in the result string
result = result.substring(0, replaceStart) + markdownLink + result.substring(replaceEnd)
}
return result
}
/**
* Create a custom link component for ReactMarkdown that handles reference links
*
* @param onReferenceClick - Callback for when a reference link is clicked
* @returns React component for rendering links
*/
export function createReferenceLinkComponent(
onReferenceClick: (type: ReferenceType, id: string) => void
) {
const ReferenceLinkComponent = ({
href,
children,
...props
}: React.AnchorHTMLAttributes<HTMLAnchorElement> & {
href?: string
children?: React.ReactNode
}) => {
// Check if this is a reference link (starts with #ref-)
if (href?.startsWith('#ref-')) {
// Parse: #ref-source-abc123 β type=source, id=abc123
const parts = href.substring(5).split('-') // Remove '#ref-'
const type = parts[0] as ReferenceType
const id = parts.slice(1).join('-') // Rejoin in case ID has dashes
// Select appropriate icon based on reference type
const IconComponent =
type === 'source' ? FileText :
type === 'source_insight' ? Lightbulb :
FileEdit // note
return (
<button
onClick={(e) => {
e.preventDefault()
e.stopPropagation()
onReferenceClick(type, id)
}}
className="text-primary hover:underline cursor-pointer inline font-medium"
type="button"
>
<IconComponent className="h-3 w-3 inline mr-1" aria-hidden="true" />
{children}
</button>
)
}
// Regular link - open in new tab
return (
<a href={href} target="_blank" rel="noopener noreferrer" {...props} className="text-primary hover:underline">
{children}
</a>
)
}
ReferenceLinkComponent.displayName = 'ReferenceLinkComponent'
return ReferenceLinkComponent
}
/**
* Convert references in text to compact numbered format with reference list
*
* This function transforms verbose inline references like [source:abc123] into
* compact numbered citations [1], [2], etc., and appends a "References:" section
* at the bottom of the message with the full reference details.
*
* Algorithm:
* 1. Parse all references using parseSourceReferences()
* 2. Build a reference map to deduplicate and assign numbers
* 3. Replace inline references with numbered citations
* 4. Append reference list at the bottom
*
* @param text - Original text with references
* @returns Text with numbered citations and reference list appended
*
* @example
* Input: "See [source:abc] and [note:xyz]. Also [source:abc] again."
* Output: "See [1] and [2]. Also [1] again.\n\nReferences:\n[1] - [source:abc]\n[2] - [note:xyz]"
*/
export function convertReferencesToCompactMarkdown(text: string): string {
// Step 1: Parse all references using existing function
const references = parseSourceReferences(text)
// Step 2: If no references found, return original text
if (references.length === 0) {
return text
}
// Step 3: Build reference map (deduplicate and assign numbers)
const referenceMap = new Map<string, ReferenceData>()
let nextNumber = 1
for (const reference of references) {
const key = `${reference.type}:${reference.id}`
if (!referenceMap.has(key)) {
referenceMap.set(key, {
number: nextNumber++,
type: reference.type,
id: reference.id
})
}
}
// Step 4: Replace references with numbered citations (process from end to start)
let result = text
for (let i = references.length - 1; i >= 0; i--) {
const reference = references[i]
const key = `${reference.type}:${reference.id}`
const refData = referenceMap.get(key)!
const number = refData.number
// Analyze context around the reference
const refStart = reference.startIndex
const refEnd = reference.endIndex
const contextBefore = result.substring(Math.max(0, refStart - 2), refStart)
const contextAfter = result.substring(refEnd, Math.min(result.length, refEnd + 2))
// Determine what to replace based on bracket context
let replaceStart = refStart
let replaceEnd = refEnd
// Check for double brackets [[ref]]
if (contextBefore === '[[' && contextAfter.startsWith(']]')) {
replaceStart = refStart - 2
replaceEnd = refEnd + 2
}
// Check for single brackets [ref]
else if (contextBefore.endsWith('[') && contextAfter.startsWith(']')) {
replaceStart = refStart - 1
replaceEnd = refEnd + 1
}
// Build the numbered citation with full reference in href
const citationLink = `[${number}](#ref-${reference.type}-${reference.id})`
// Replace in the result string
result = result.substring(0, replaceStart) + citationLink + result.substring(replaceEnd)
}
// Step 5: Build reference list
const refListLines: string[] = ['\n\nReferences:']
// Iterate through reference map in insertion order (Map preserves order)
for (const [, refData] of referenceMap) {
const refListItem = `[${refData.number}] - [${refData.type}:${refData.id}](#ref-${refData.type}-${refData.id})`
refListLines.push(refListItem)
}
// Step 6: Append reference list to result
result = result + refListLines.join('\n')
return result
}
/**
* Create a custom link component for ReactMarkdown that handles compact reference links
*
* This component handles two types of reference links:
* 1. Numbered citations in text: [1](#ref-source-abc123)
* 2. Reference list items: [source:abc123](#ref-source-abc123)
*
* Both use the same href format: #ref-{type}-{id}
* The component extracts the type and id from the href and triggers the click handler.
*
* @param onReferenceClick - Callback for when a reference link is clicked
* @returns React component for rendering links in ReactMarkdown
*
* @example
* const LinkComponent = createCompactReferenceLinkComponent((type, id) => openModal(type, id))
* <ReactMarkdown components={{ a: LinkComponent }}>...</ReactMarkdown>
*/
export function createCompactReferenceLinkComponent(
onReferenceClick: (type: ReferenceType, id: string) => void
) {
const CompactReferenceLinkComponent = ({
href,
children,
...props
}: React.AnchorHTMLAttributes<HTMLAnchorElement> & {
href?: string
children?: React.ReactNode
}) => {
// Check if this is a reference link (starts with #ref-)
if (href?.startsWith('#ref-')) {
// Parse: #ref-source-abc123 β type=source, id=abc123
const parts = href.substring(5).split('-') // Remove '#ref-'
const type = parts[0] as ReferenceType
const id = parts.slice(1).join('-') // Rejoin in case ID has dashes
return (
<button
onClick={(e) => {
e.preventDefault()
e.stopPropagation()
onReferenceClick(type, id)
}}
className="text-primary hover:underline cursor-pointer inline font-medium"
type="button"
>
{children}
</button>
)
}
// Regular link - open in new tab
return (
<a href={href} target="_blank" rel="noopener noreferrer" {...props} className="text-primary hover:underline">
{children}
</a>
)
}
CompactReferenceLinkComponent.displayName = 'CompactReferenceLinkComponent'
return CompactReferenceLinkComponent
}
/**
* Legacy function for backward compatibility
* Converts old Link-based references to new click handler approach
*
* @deprecated Use extractReferences + replacePlaceholdersWithButtons instead
*/
export function convertSourceReferencesLegacy(text: string): React.ReactNode {
// For legacy support, just return text as-is
// Components should migrate to new convertSourceReferences function
return text
}
|