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
|
import React, { useEffect, useMemo, useState } from 'react'
import { OrgRoamLink, OrgRoamNode } from '../api'
import { LinksByNodeId, NodeByCite, NodeById } from '../pages/index'
import { ProcessedOrg } from './processOrg'
export interface UniOrgProps {
nodeById: NodeById
previewNode: any
setPreviewNode: any
nodeByCite: NodeByCite
setSidebarHighlightedNode: any
openContextMenu: any
outline: boolean
collapse: boolean
linksByNodeId: LinksByNodeId
macros?: { [key: string]: string }
attachDir: string
}
export const UniOrg = (props: UniOrgProps) => {
const {
openContextMenu,
setSidebarHighlightedNode,
nodeById,
nodeByCite,
previewNode,
setPreviewNode,
outline,
collapse,
linksByNodeId,
macros,
attachDir,
} = props
const [previewText, setPreviewText] = useState('')
const id = encodeURIComponent(encodeURIComponent(previewNode.id))
useEffect(() => {
fetch(`http://localhost:35901/node/${id}`)
.then((res) => {
return res.text()
})
.then((res) => {
if (res === '') {
return '(empty node)'
}
if (res !== 'error') {
console.log(res)
setPreviewText(res)
}
})
.catch((e) => {
setPreviewText('(could not find node)')
console.log(e)
return 'Could not fetch the text for some reason, sorry!\n\n This can happen because you have an id with forward slashes (/) in it.'
})
}, [previewNode.id])
return (
<>
{previewText && previewNode && (
<ProcessedOrg
{...{
nodeById,
previewNode,
setPreviewNode,
previewText,
nodeByCite,
setSidebarHighlightedNode,
openContextMenu,
outline,
collapse,
linksByNodeId,
attachDir,
}}
macros={macros || {}}
/>
)}
</>
)
}
|