npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@reusejs/documentor

v0.0.20

Published

Documentor - Flexible Text Editor for React

Downloads

636

Readme

Documentor

Documentor - Flexible Text Editor for React

Documentor is a fully flexible rich text editor based on lexical-playground and lexical framework.

⚠️ As the Lexical framework is currently in early development, this component library is also likely to change quite often

Installation

npm install @reusejs/documentor --save

Demo

Live demo is coming soon...

Usage

import { FC } from 'react';
import {
  EditorComposer,
  Editor,
  ToolbarPlugin,
  AlignDropdown,
  BackgroundColorPicker,
  BoldButton,
  CodeFormatButton,
  FloatingLinkEditor,
  FontFamilyDropdown,
  FontSizeDropdown,
  InsertDropdown,
  InsertLinkButton,
  ItalicButton,
  TextColorPicker,
  TextFormatDropdown,
  UnderlineButton,
  Divider,
} from '@reusejs/documentor';

const NoteViewer: FC = () => {
  return (
    <EditorComposer>
      <Editor hashtagsEnabled={true}>
        <ToolbarPlugin defaultFontSize="20px">
          <FontFamilyDropdown />
          <FontSizeDropdown />
          <Divider />
          <BoldButton />
          <ItalicButton />
          <UnderlineButton />
          <CodeFormatButton />
          <InsertLinkButton />
          <TextColorPicker />
          <BackgroundColorPicker />
          <TextFormatDropdown />
          <Divider />
          <InsertDropdown enablePoll={true} />
          <Divider />
          <AlignDropdown />
        </ToolbarPlugin>
      </Editor>
    </EditorComposer>
  );
};

export default NoteViewer;

API

<Editor />

| Property | Type | | description | | ------------------ | --------------------------------------------------------------- | -------- | ---------------------------------------------------------------------------------- | | children | ReactNode | optional | Nested child components, like the ToolbarPlugin | | hashtagsEnabled | boolean | optional | Enables the automatic hashtag highlighting, default is false | | autoLinkEnabled | boolean | optional | Enables the automatic link highlighting, default is false | | emojisEnabled | boolean | optional | Replaces the emoji combiniations with its corresponding symbol, default is false | | actionsEnabled | boolean | optional | Enables the actions toolbar, default is false | | placeholder | string | optional | The default content of the editor when it is first loaded | | listMaxIndent | number | optional | The maximum indent capacity of any listed element, the default is 7 | | isReadOnly | boolean | optional | Enables read-only mode for the editor, default is false | | initialEditorState | string | optional | JSON string to initialize the initial content of the editor. | | onChange | (editorState: string, editorInstance?: LexicalEditor) => void | optional | Accessing the current editor state and the active editor instance |

<ToolbarPlugin />

| Property | Type | | description | | ----------------- | ---------------------- | -------- | ------------------------------------------------------------------------------------------------ | | children | React.ReactElement[] | optional | Nested child components, like the InsertDropdown | | defaultFontSize | string | optional | The default font size selected when the editor first loaded, default value is 15px | | defaultFontColor | string | optional | The default font color selected when the editor first loaded, default value is #000 | | defaultBgColor | string | optional | The default text background color selected when the editor first loaded, default value is #fff | | defaultFontFamily | string | optional | The default font family selected when the editor first loaded, default value is Arial |

<InsertDropdown />

| Property | Type | | description | | -------------------- | --------- | -------- | ------------------------------------------------ | | enableTable | boolean | optional | Enables table inserting feature | | enableYoutube | boolean | optional | Enables youtube video inserting feature | | enableTwitter | boolean | optional | Enables tweet inserting feature | | enablePoll | boolean | optional | Enables poll inserting feature | | enableImage | boolean | optional | Enables image inserting feature | | enableEquations | boolean | optional | Enables equation inserting feature | | enableExcalidraw | boolean | optional | Enables diagram inserting feature | | enableHorizontalRule | boolean | optional | Enables the horizontal rule inserting for layout | | enableStickyNote | boolean | optional | Enables stick note inserting for layout |

Development

For development use:

$ npm install (in case of an error, run `npm install --legacy-peer-deps`)
$ npm start
$ npm run storybook

Future plans

  • Test coverage
  • Programmatic access to the editor input as JSON
  • Localization
  • Ready templates with different options (MUI, Bootstrap, etc...)
  • Dark/Light modes
  • Custom styling flexibility
  • Disassembling all of the toolbar to enable using them as nested components, increasing the flexibility
  • Enabling adjusting editor settings such read-only mode and etc. programmatically

License

Licensed under MIT License.