summaryrefslogtreecommitdiff
path: root/util/uniorg.tsx
blob: 6d0bb5609eb70b1d36636af66ea890a567188743 (about) (plain)
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
import React, { useEffect, useMemo, useState } from 'react'
import { OrgRoamNode } from '../api'
import { NodeByCite, NodeById } from '../pages/index'
import { ProcessedOrg } from './processOrg'

export interface UniOrgProps {
  nodeById: NodeById
  previewNode: any
  setPreviewNode: any
  nodeByCite: NodeByCite
  setSidebarHighlightedNode: any
}

export const UniOrg = (props: UniOrgProps) => {
  const { setSidebarHighlightedNode, nodeById, nodeByCite, previewNode, setPreviewNode } = props

  const [previewText, setPreviewText] = useState('')

  const file = encodeURIComponent(encodeURIComponent(previewNode.file))
  useEffect(() => {
    fetch(`http://localhost:35901/file/${file}`)
      .then((res) => {
        return res.text()
      })
      .then((res) => {
        if (res !== 'error') {
          setPreviewText(res)
        }
      })
      .catch((e) => {
        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])

  useEffect(() => {
    console.log('mount')
    return () => console.log('unmount')
  }, [])

  return (
    <>
      {previewNode?.id && (
        <ProcessedOrg
          {...{
            nodeById,
            previewNode,
            setPreviewNode,
            previewText,
            nodeByCite,
            setSidebarHighlightedNode,
          }}
        />
      )}
    </>
  )
}