File size: 1,592 Bytes
e2f925b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import {
  ComponentProps,
  Streamlit,
  withStreamlitConnection
} from "streamlit-component-lib";
import React, { useEffect, useRef } from "react"
import ReactQuill from "react-quill"
import ResizeObserver from "resize-observer-polyfill"
import katex from "katex"
import "katex/dist/katex.min.css"
import "quill/dist/quill.snow.css"
import Quill from 'quill';
import ImageResize from 'quill-image-resize-module-plus';
 
Quill.register('modules/imageResize', ImageResize);
 

interface QuillProps extends ComponentProps {
  args: any
}

const Quill2 = ({ args }: QuillProps) => {
  const divRef = useRef<HTMLDivElement>(null)

  let timeout: NodeJS.Timeout

  const handleChange = (content: string, delta: any, source: any, editor: any) => {
    clearTimeout(timeout)
    timeout = setTimeout(() => {
      Streamlit.setComponentValue(args.html ? content : editor.getText())
    }, 200)
  }

  useEffect(() => {
    Streamlit.setFrameHeight()

    window.katex = katex

    const ro = new ResizeObserver(() => {
      Streamlit.setFrameHeight()
    })

    if (divRef.current)
      ro.observe(divRef.current)

    return () => ro.disconnect()
  })

  return <div ref={divRef}>
    <ReactQuill
      defaultValue={args.defaultValue}
      modules={{
        toolbar: args.toolbar,
	imageResize: {
          displaySize: true
        },
        history: args.history,
      }}
      placeholder={args.placeholder}
      preserveWhitespace={args.preserveWhitespace}
      readOnly={args.readOnly}
      onChange={handleChange}
    />
  </div>
}

export default withStreamlitConnection(Quill2)