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: ,
label: 'Ordered List',
tagName: 'ol',
});
const ul = createListPlugin({
type: UL,
icon: ,
label: 'Unordered List',
tagName: 'ul',
});
// only used for easier access on createCata
const li = createListItemPlugin({
tagName: 'li',
type: LI,
});
const indention = createIndentionPlugin({
iconIncrease: ,
iconDecrease: ,
listItemType: LI,
labelIncrease: 'Increase Indentation',
labelDecrease: 'Decrease Indentation',
});
export default {
ol,
ul,
li,
indention,
};