File size: 4,947 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 |
# Upgrading
The intent of this document is to make migration of breaking changes as easy as possible.
Please note that not all breaking changes might be included here.
Breaking changes will primarily published here: https://github.com/react-page/react-page/releases
## 1.0.0
1.0.0 is a major refactoring that changed and modernized a lot under the hood, but not much on the outside. It enables us to do further improvements much easier, has better performance and a reduced bundle size.
It introduces some breaking changes that had to be done to make the api more clear and enable future improvements. The migration steps should be straight forward though.
- be aware that it will migrate the data to a new format. This migration will happen the next time your users save new content. There is no down migration, so we advice to make a backup before upgrading and immediatly fill out an issue here when you notice any problem. We are happy to help.
- '@react-page/core', '@react-page/ui', '@react-page/renderer' no longer exist, you can import everything from '@react-page/editor'.
- `plugins` prop on `<Editor />` has been renamed to `cellPlugins` to make way for other plugin types in the future
- `cellPlugins` take a an array of `CellPlugin`, layout plugins and content plugins have been unified
- `defaultPlugin` is no longer required. The editor will no longer automatically add a cell when its empty. Instead it shows a Button to add a new cell there.
- best refer to the new docs: https://github.com/react-page/react-page/blob/docs/editor.md
### Migrating custom plugins
If you have custom plugins, migrate them like this:
- if using typescript (highly recommended), `import type { CellPlugin } from '@react-page/renderer'` and use that as the Plugins type. Its a generic type that receives one type Argument `Data` that represents the data object of the plugin (if any).
- `name` of a plugin has been renamed to `id`
- `text` has been renamed to `title`
- `Component` no longer exists, instead you define the plugin controls and `Renderer` separatly.
- `Renderer` is the Component that should be shown in the Cell. It receives a property `data` which has the type `Data`
- `controls` allows to either define an schema-driven auto generated form or a custom Controls component. Best refer to the updated doc https://github.com/react-page/react-page/blob/docs/custom-cell-plugins.md
- if you are using `@react-page/create-plugin-materialui`, you can remove that as it is no longer needed and instead use the `CellPlugin` type as mentioned above.
### Migrate custom slate plugins
For custom slate plugins using custom Data, the api has slightly changed and has been unified with CellPlugins.
It now takes also `controls` which has either `type: "autoform"` and `schema` as a JsonSchema or `type: "custom"` for custom controls.
## 0.7.x
The mantainers of this package have changed, the project has been renamed to `react-page`, if you wish to update to the latest version, you can do so by updating your dependencies, here are the new package names:
| Old | New |
| -------------------------------------- | --------------------------------------- |
| ory-editor | @react-page/react-page |
| ory-editor-core | @react-page/core |
| ory-editor-plugins-divider | @react-page/plugins-divider |
| ory-editor-plugins-html5-video | @react-page/plugins-html5-video |
| ory-editor-plugins-image | @react-page/plugins-image |
| ory-editor-plugins-default-native | @react-page/plugins-default-native |
| ory-editor-plugins-slate | @react-page/plugins-slate |
| ory-editor-plugins-spacer | @react-page/plugins-spacer |
| ory-editor-plugins-video | @react-page/plugins-video |
| ory-editor-plugins-background | @react-page/plugins-background |
| ory-editor-plugins-parallax-background | @react-page/plugins-parallax-background |
| ory-editor-renderer | @react-page/renderer |
| ory-editor-ui | @react-page/ui |
## 0.6.x
We have added full typescript support in this release. That means you might get into trouble if you use typescript, write your own plugins and made false assumptions about props passed by ory editor.
Please report these cases if you think it's a problem on our end. Otherwise, fix your code :) As we don't want to halt your progress, if it indeed is a problem with our code, remember that you can easily override typescript types using paths property in tsconfig. Just remember to remove these dirty fixes as soon as we fix them on our end. That way you'll always end up with latest changes.
|