Code Monkey home page Code Monkey logo

react-quill's Introduction

@adrianhelvik/react-quill

An bridge between React and Quill. Implemented using hooks and React 17 compatible APIs.

The project is still in an early phase, and I hope it can be used as a basis for the next version of react-quill.

Usage with katex

To use with katex, add a cdn script tag. The editor will not load if the formula module is used and window.katex is unavailable.

Installation

npm install @adrianhelvik/react-quill quill

Full fledged example

import React, { useState, useCallback, useEffect } from 'react'
import ReactQuill from '@adrianhelvik/react-quill'
import ReactDOM from 'react-dom'

function Wrapper() {
  const [startTime] = useState(new Date())
  const [placeholder, setPlaceholder] = useState('Placeholder')
  const [disableBold, setDisableBold] = useState(false)
  const [timePassed, setTimePassed] = useState(0)
  const [value, setValue] = useState(null)

  const options = {
    modules: {
      toolbar: [
        [disableBold ? null : 'bold', 'italic', 'underline'].filter(Boolean), // toggled buttons
        [{ list: 'ordered' }, { list: 'bullet' }],
        [{ script: 'sub' }, { script: 'super' }], // superscript/subscript
        [{ header: [1, 2, 3, 4, 5, false] }],
        [{ align: [] }],
        ['link', 'image', 'video'],
        ['clean'], // remove formatting button
        // ['formula'], Requires window.katex to be set
      ],
      clipboard: {
        matchVisual: false,
      },
    },
    placeholder: '',
    theme: 'snow',
  }

  const reset = () => setValue(null)

  useEffect(() => {
    setInterval(() => {
      const seconds = Math.floor((new Date() - startTime) / 1000)
      setTimePassed(seconds)
    }, 100)
  }, [startTime, setTimePassed])

  const onChange = useCallback(
    contents => {
      if (disableBold) {
        setValue({
          ops: contents.ops.map(x => {
            x = { ...x }
            if (x && x.attributes && x.attributes.bold) {
              x.attributes = { ...x.attributes }
              delete x.attributes.bold
              if (!Object.keys(x.attributes).length) {
                delete x.attributes
              }
            }
            return x
          }),
        })
      } else {
        setValue(contents)
      }
    },
    [disableBold],
  )

  const toggleDisableBold = e => {
    setDisableBold(e.target.checked)
  }

  return (
    <>
      <ReactQuill
        value={value}
        onChange={onChange}
        placeholder={`${placeholder} (${timePassed}s)`}
        options={options}
      />
      <br />
      <br />
      <br />
      Result:
      <br />
      <pre>{JSON.stringify(value, null, 2)}</pre>
      <br />
      <button type="button" onClick={reset}>
        Reset
      </button>
      <br />
      <label>
        <input
          type="checkbox"
          checked={disableBold}
          onChange={toggleDisableBold}
        />{' '}
        Disable bold
      </label>
      <br />
      <br />
      <input
        value={placeholder}
        onChange={e => setPlaceholder(e.target.value)}
      />
    </>
  )
}

ReactDOM.render(<Wrapper />, document.querySelector('#root'))

react-quill's People

Contributors

adrianhelvik avatar dependabot[bot] avatar

Stargazers

Jin Yao avatar Soikat Hossain avatar Trabelsi Mariem avatar Duma avatar James Singleton avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.