@redturtle/volto-slate-extras

2.0.1 • Public • Published

Volto Slate Extras (@redturtle/volto-slate-extras)

A Volto addon to add base Slate configuration to your site. Basic Slate configuration from this addon

npm Code analysis checks Unit tests

Settings

config.settings['volto-slate-extras'] = {
  link_button_class: 'ui primary button', //bootstrap classes: 'btn btn-primary',
  link_enhancer: (element) => {},
};
  • link_button_class: class to apply to style button links
  • link_enhancer: component to henance link, for example with filename and file size extension

Widgets

TextEditorWidget

Widget to create a text editor in Volto's blocks. You could decide to use a

  • simple text editor widget (without text formatting) (into the example below is the 'title' field)
  • a Slate editor widget (with text formatting) with prop showToolbar (into the example below is the 'text' field)
import {
  TextEditorWidget,
  useHandleDetachedBlockFocus,
} from '@redturtle/volto-slate-extras';

const Edit = (props) => {
  const { data, onChangeBlock, block, selected, onSelectBlock, ...otherProps } =
    props;
  const { intl } = props;
  const { selectedField, setSelectedField } = useHandleDetachedBlockFocus(
    props,
    'title',
  );

  return (
    <>
      {/* Simple text editor widget */}
      <TextEditorWidget
        {...otherProps}
        as="h3"
        showToolbar={false}
        data={data} //block's data
        block={block} //block id
        fieldName="title"
        onChangeBlock={onChangeBlock}
        selected={selectedField === 'title'}
        placeholder={intl.formatMessage(messages.title)}
        setSelected={setSelectedField}
        focusNextField={() => {
          setSelectedField('text');
        }}
        onSelectBlock={onSelectBlock}
      />

      {/* Slate text editor widget */}
      <TextEditorWidget
        {...otherProps}
        data={data}
        fieldName="text"
        block={block}
        onSelectBlock={onSelectBlock}
        selected={selectedField === 'text'}
        placeholder={intl.formatMessage(messages.text)}
        onChangeBlock={onChangeBlock}
        setSelected={setSelectedField}
        focusPrevField={() => {
          setSelectedField('title');
        }}
      />
    </>
  );
};

View value of TextEditorWidget in View components:

To view the value edited from TextEditorWidget:

  • if it's a simple text (showToolbar=false) you simply do it with jsx {data.title}
  • if it's a Slate widget (showToolbar=true) you could use TextBlockView from Volto:
import { TextBlockView } from '@plone/volto-slate/blocks/Text';
<TextBlockView data={{ value: data.text }} />;

Package Sidebar

Install

npm i @redturtle/volto-slate-extras

Weekly Downloads

2

Version

2.0.1

License

MIT

Unpacked Size

103 kB

Total Files

33

Last publish

Collaborators

  • cekk
  • giuliaghisini
  • eikichi18
  • lucabel
  • deodorhunter
  • sara_bianchi
  • wagner3ub
  • mamico
  • pieronicolli