File size: 2,620 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
## Installation
To install the react-page editor, use:
```bash
$ yarn add @react-page/editor
# OR
$ npm i --save @react-page/editor
```
usually you'll also want to have the default rich text editor (slate):
```bash
$ yarn add @react-page/plugins-slate
# OR
$ npm i --save @react-page/plugins-slate
```
## Dependencies
**IMPORTANT**: use react 17 at the moment, react 18 is not yet supported. Follow this milestone: https://github.com/react-page/react-page/milestone/14
React-page uses [MUI](https://mui.com/) for the Editor UI. It is lazy loaded and do not directly increase your bundle size.
If you want to override the theme, please add these packages as well: `@emotion/react`, `@emotion/styled`
```bash
$ yarn add @emotion/react @emotion/styled
# OR
$ npm i --save @emotion/react @emotion/styled
```
Make sure to import the css file as well somewhere in your app:
```
import '@react-page/editor/lib/index.css';
```
## Using material-ui 4 in parallel
MUI 5 conflicts with material-ui version 4 which results in glitches. To fix this, follow this guide: https://mui.com/x/react-data-grid/migration-v4/#using-mui-core-v4-with-v5
tldr:
wrap your app with this:
```tsx
import { createGenerateClassName } from '@material-ui/core/styles';
const generateClassName = createGenerateClassName({
// By enabling this option, if you have non-MUI elements (e.g. `<div />`)
// using MUI classes (e.g. `.MuiButton`) they will lose styles.
// Make sure to convert them to use `styled()` or `<Box />` first.
disableGlobal: true,
// Class names will receive this seed to avoid name collisions.
seed: 'mui-jss',
});
// ....
const App = () => (
<StylesProvider generateClassName={generateClassName}>
{/* Your component tree. */}
</StylesProvider>
);
```
## Simple example
To get off the ground as soon as possible, simply create a component like so:
[simple.tsx](examples/pages/examples/simple.tsx ':include :type=code typescript')
That's it, congratulations!
[You should see something like this now (click for the demo)](//demo/simple)
## Modes of operation
### Editing
React-page editor together with various plugins can be used to create and subsequently edit pages in a “WYSIWYG” mode. The editing UI code is lazy loaded in this case.
### Viewing
The React-page editor can seamlessly be used to view the pages created by it in a "readonly" mode. The bundle size is reduced in this mode.
Simply pass `readOnly` to the Editor and omit the `onChange`:
[readonly.tsx](examples/pages/examples/readonly.tsx ':include :type=code typescript')
(see demo here)](//demo/examples/readonly)
|