0.2.1 • Published 3 years ago

react-vditor v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

react-vditor

version download cnpmVersion cnpmDownload FOSSA Status

English | 简体中文

Vditor Components for React!

About Vditor, see Vanessa219/vditor

Usage

  • Add dependencies
npm install vditor react-vditor
# or
yarn add vditor react-vditor
# or
pnpm install vditor react-vditor
  • Import component
import React, { FC, useState, useEffect } from "react"
import Vditor from "vditor"
import { VditorEditor } from "react-vditor"

const TestVditorEditor: FC = () => {
    const [vditor, setVditor] = useState<Vditor>()
    useEffect(() => {
        if (!!vditor) {
            console.log(`Update Default Vditor:`)
            console.log(vditor)
        }
    }, [vditor])
    return <VditorEditor keyID="base-editor" bindVditor={setVditor} />
}

export default TestVditorEditor

see demo for more

What is react-vditor?

react-vditor is a wrapper of Vditor. Due to the reason that the Vditor is independent of frameworks, and we always need to initialize the Vditor in the lifecycle! Repeated operations are always boring! Thus, react-vditor provides some components for React that cover commonly used Vditor editors, makes it easy to use in React.

What's more, the react-vditor is well compatible with Vditor and provides some custom props for better development experience.

Vditor Components of react-vditor

componentsdescription
<VditorEditor />Basic Vditor editor
<VditorIREditor />Vditor IR editor (Syntax Sugar)
<VditorSVEditor />Vditor SV editor (Syntax Sugar)
<VditorWYSIWYGEditor />Vditor WYSIWYG editor (Syntax Sugar)
<VditorPreview />Vditor markdown preview component

Props of Vditor Components

propstyperequireddescription
keyIDstringID of editor
optionsIOptions×Vditor options
bindVditor(vditor: Vditor): void×Bind Vditor instance to state
  • Props of VditorPreview
propstyperequireddescription
markdownstringmarkdown content
optionsIPreviewOptions×Vditor preview options
customClassstring×custom preview component class

Development

  • The project packages are managed by pnpm
npm install -g pnpm

pnpm install

# for dev
pnpm dev

# for build
pnpm build
  • Preivew Changes
cd __test__

pnpm install

pnpm link ..

License

MIT © Herbert He

FOSSA Status

0.2.1

3 years ago

0.2.0

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.1

3 years ago