1.2.0 • Published 4 years ago

@artibox/slate-link v1.2.0

Weekly downloads
7
License
MIT
Repository
github
Last release
4 years ago

Slate link.

npm package npm downloads

Installation

npm install @artibox/slate-link --save

or

$ yarn add @artibox/slate-link

Usage

Editor

import React from 'react';
import { Link as LinkIcon } from '@artibox/icons';
import { createArtiboxEditor } from '@artibox/slate-editor';
import { Toolbar } from '@artibox/slate-toolbar';
import { createLink } from '@artibox/slate-link';

const Link = createLink();

const plugins = [
  Link.forPlugin(),
  Toolbar.forPlugin({
    expandedTools: [
      { icon: Link, hook: link.forToolHook() },
      { icon: Unlink, hook: link.forToolHook({ command: 'remove' }) }
    ]
  })
];

const Editor = createArtiboxEditor({
  plugins
});

export default Editor;

Jsx Serializer

import { createJsxSerializer } from '@artibox/slate-jsx-serializer';
import { createLinkJsxSerializerRule } from '@artibox/slate-link';

const jsxSerializer = createJsxSerializer({
  inlines: [
    createLinkJsxSerializerRule()
  ]
});

...

return (
  <div>
    {jsxSerializer(valueJSON /* from slate */)}
  </div>
);

API

Utils

Components

  • Link - Default component only for renderer of editor since it provide tooltip.
  • LinkModal - Currently archived, please don't use it.