File size: 1,340 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
import { lazyLoad } from '@react-page/editor';
import React from 'react';
import { createListItemPlugin } from '../../pluginFactories';
import createIndentionPlugin from '../../pluginFactories/createListIndentionPlugin';
import createListPlugin from '../../pluginFactories/createListPlugin';
import { LI, OL, UL } from './constants';
const ListIcon = lazyLoad(
() => import('@mui/icons-material/FormatListBulleted')
);
const OrderedListIcon = lazyLoad(
() => import('@mui/icons-material/FormatListNumbered')
);
const IncreaseIndentIcon = lazyLoad(
() => import('@mui/icons-material/FormatIndentIncrease')
);
const DecreaseIndentIcon = lazyLoad(
() => import('@mui/icons-material/FormatIndentDecrease')
);
const ol = createListPlugin({
type: OL,
icon: <OrderedListIcon />,
label: 'Ordered List',
tagName: 'ol',
});
const ul = createListPlugin({
type: UL,
icon: <ListIcon />,
label: 'Unordered List',
tagName: 'ul',
});
// only used for easier access on createCata
const li = createListItemPlugin({
tagName: 'li',
type: LI,
});
const indention = createIndentionPlugin({
iconIncrease: <IncreaseIndentIcon />,
iconDecrease: <DecreaseIndentIcon />,
listItemType: LI,
labelIncrease: 'Increase Indentation',
labelDecrease: 'Decrease Indentation',
});
export default {
ol,
ul,
li,
indention,
};
|