5.2.0-alpha.273b0e7e • Published 6 years ago

@techstacker/tse-font-family-plugin v5.2.0-alpha.273b0e7e

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

SlateJS font family plugin.

npm package npm downloads

Installation

The @slate-editor/font-family-plugin is available as an npm package.

yarn add @slate-editor/font-family-plugin

Usage

Here is a quick example to get you started:

import React from 'react'
import { SlateEditor, SlateToolbar, SlateContent } from 'slate-editor'
import { FontFamilyPlugin, FontFamilyDropdown } from '@slate-editor/font-family-plugin'

const plugins = [
  FontFamilyPlugin()
]

const SlateRichTextEditor = () => (
  <SlateEditor plugins={plugins}>
    <SlateToolbar>
      <FontFamilyDropdown />
    </SlateToolbar>

    <SlateContent />
  </SlateEditor>
)

export default SlateRichTextEditor

API

NameDescription
FontFamilyMarkComponent that holds the html that will wrap the content with font family style.
FontFamilyUtilsGeneric file that holds the util common functions.
FontFamilyButtonButton component that have behaviour to wrap content with font family style.
FontFamilyKeyboardShortcutKeyboard shortcut file that manipulates onKeyDown event inside SlateJS.

TODO

  • Make accepts keyboard shortcuts?;
  • Add keyboard shortcut to apply font family to expanded selection;
  • Add keyboard shortcut to remove font family from expanded selection;
  • Add button to apply font family to expanded selection;
  • Add button to remove font family from expanded selection;
  • Add handle to manipulates collapsed selection to remove font family to anchor word;
  • Add behaviour to show which font family have applied to collapsed selection;
  • Add behaviour to show which font family have applied to expanded selection;