0.8.4 • Published 10 months ago

slatepad v0.8.4

Weekly downloads
-
License
-
Repository
-
Last release
10 months ago

SlatePad

slatepad is a WYSIWYG text editor built with react and Slate.js. It integrates common editor functions and provides a simple and elegant text input experience.

slatepad 是一个所见即所得的 React 文本编辑器。它集成了常见的编辑器功能,提供了简单优雅的文本输入体验。

Try It Now

click here to Playground

Getting Started

npm install slatepad

Then, in your project:

import { useMemo } from 'react'
import { SlatePad } from 'slatepad'
// optional:custom code highlight theme. befor import it,remember run :npm i prism-themes
// import 'prism-themes/themes/prism-one-light.css'
import { initialValue } from './common/const'
export const App = () => {
  const editor = useMemo(() => createSlatepad(), [])
  return (
    <div>
      <h1>SlatePad</h1>
      <main>
        <SlatePad editor={editor} initialValue={initialValue} />
      </main>
    </div>
  )
}

Document

Custom ToolBar

By default, Slatepad will come with a toolbar, you can customize the toolbar through RichUtils, the following code shows how to operate in your custom toolbar component:

import { RichUtils } from 'SlatePad'
const ToolBar = ({ showHeaders, setShowHeaders, children }: any) => {
  const editor = useSlateStatic()
  return (
    <div>
      <H1 onMouseDown={() => RichUtils.toggleBlock(editor, 'heading1')} />
      <NumberList onMouseDown={() => RichUtils.toggleBlock(editor, 'number-list')} />
      <Image onMouseDown={() => RichUtils.insertImage(editor)} />
      <Link onMouseDown={() => RichUtils.insertLink(editor)} />
    </div>
  )
}

Custom Style

The core components of slatepad have a unique class name, you can change its style through CSS class selector.For example:

  • .slatepad-checklist
  • .slatepad-code-block

Save Data

Slatepad will use the JSON structure of slate.js as the data storage object, the following is a feasible way:

const handleSave = value => {
  console.log(value)
  // Data Structor
  /*
[
    {
        "type": "paragraph",
        "children": [
            {
                "text": ""
            }
        ]
    }
]
*/
}
;<SlatePad onChange={handleSave} editor={editor} />

Normalizing

You use SlatePad's default data structure and convert it into the form you need, such as markdown. Slatepad does not provide this function, you can achieve your needs through custom serialization. Reference: https://docs.slatejs.org/concepts/11-normalizing

API

EditorUtils

  • clearAll:clear editor content.
  • clearHistory:clear slatepad history
  • replaceAll:replace content with slate.js fragment
import { SlatePad, EditorUtils, createSlatepad } from 'slatepad'
const editor = createSlatepad()
EditorUtils.clearAll(editor)
const fragment = [
  {
    type: 'paragraph',
    children: [
      {
        text: ''
      }
    ]
  }
]
// clearAll Content and insert new editor state
EditorUtils.replaceAll(editor, fragment)

RichUtils

reference: CustomToolBar

createSlatepad

create editor instance of slate.js

SlatePad

Text input area as well as React component for the editor

RoadMap

SlatePad is currently in development,I will add new feature in the future.

  • Table-Block

  • Dark-Theme

0.6.7

11 months ago

0.8.4

10 months ago

0.6.6

12 months ago

0.6.9

11 months ago

0.6.8

11 months ago

0.7.2

11 months ago

0.7.4

10 months ago

0.7.3

10 months ago

0.7.0

11 months ago

0.7.9

10 months ago

0.7.6

10 months ago

0.5.8

12 months ago

0.7.5

10 months ago

0.5.7

12 months ago

0.7.7

10 months ago

0.5.9

12 months ago

0.8.1

10 months ago

0.6.3

12 months ago

0.8.0

10 months ago

0.6.2

12 months ago

0.8.3

10 months ago

0.6.5

12 months ago

0.8.2

10 months ago

0.6.4

12 months ago

0.6.1

12 months ago

0.6.0

12 months ago

0.5.6

12 months ago

0.5.5

12 months ago

0.5.4

1 year ago

0.5.3

1 year ago

0.5.2

1 year ago

0.5.1

1 year ago

0.5.0

1 year ago

0.4.9

1 year ago

0.4.8

1 year ago

0.4.7

1 year ago

0.4.6

1 year ago

0.4.5

1 year ago

0.4.4

1 year ago

0.4.3

1 year ago

0.4.2

1 year ago

0.4.1

1 year ago

0.4.0

1 year ago

0.3.9

1 year ago

0.3.8

1 year ago

0.3.7

1 year ago

0.3.6

1 year ago

0.3.5

1 year ago

0.3.4

1 year ago

0.3.3

1 year ago

0.3.2

1 year ago

0.3.1

1 year ago

0.3.0

1 year ago

0.2.9

1 year ago

0.2.8

1 year ago

0.2.7

1 year ago

0.2.6

1 year ago

0.2.5

1 year ago

0.2.4

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.1.9

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago