Draft js. Persist EditorContent to database
Asked Answered
L

6

36

I'm trying to persist draft-js's EditorContent to database then read and recreate the EditorContent object again. But EditorContent.getPlainText() strips away rich text content. I don't know how else to do it.

How do I properly persist EditorContent?

Landing answered 8/4, 2016 at 12:43 Comment(0)
T
53

The getPlainText() method, as its name suggests, only returns the plain text without any rich formatting. You should use the convertToRaw() and convertFromRaw() functions to serialize and deserialize the contents of the editor.

You can import them this way if necessary: (assuming you are using ES6)

import {convertFromRaw, convertToRaw} from 'draft-js';

If you need to export HTML instead, see https://medium.com/@rajaraodv/how-draft-js-represents-rich-text-data-eeabb5f25cf2#9260 (not sure you can import the contents back from HTML, though)

Tetartohedral answered 8/4, 2016 at 12:55 Comment(6)
I need to persist that into database. How do I serialize and deserialize it?Landing
I can just store the raw object into mongodb, neat.Landing
Is it a good idea to store the whole json object into a database? Is there a more efficient way to store draft.js content in a sql database?Persson
In my opinion, storing it inside a JSON MySQL field would make a lot of sense and be efficient.Tetartohedral
This works pretty easily for me using Meteor, React, and Mongo. But when I restore with convertFromRaw, the Editor exhibits weird behavior: the cursor always jumps to the beginning of the Editor content, every time I press a key, and no matter where the cursor actually is. In other words all I can do is append content to the front. Is there some other step I'm missing with import?Technique
@DaveMunger probably issue with your internal app's state. Such "bug" is often with React and other similar frameworks when state is reset on change or component is re-mounted. Would suggest to dig more into those things to find out. Yet your message is old, maybe someone else will benefit :)Altonaltona
S
18

I've found that I must stringify and parse the RawContentState object when reading and saving to the database.

import { convertFromRaw, convertToRaw } from 'draft-js';

// the raw state, stringified
const rawDraftContentState = JSON.stringify( convertToRaw(this.state.editorState.getCurrentContent()) );
// convert the raw state back to a useable ContentState object
const contentState = convertFromRaw( JSON.parse( rawDraftContentState) );
Slant answered 14/3, 2017 at 4:11 Comment(2)
JSON.parse gives an error. You need to update your answer I guess.Supererogate
If you remove the JSON.stringify and JSON.parse it should work.Vesta
W
10

There are a bunch of useful answers here so I want to add this jsfiddle demo. It shows how it works in action. For saving and retrieving of the content of the editor, here local storage is used. But for database case, the basic principle the same.

In this demo, you can see simple editor component, when you click on SAVE RAW CONTENT TO LOCAL STORAGE, we save current editor content as a string to local storage. We use convertToRaw and JSON.stringify for it:

 saveRaw = () => {
  var contentRaw = convertToRaw(this.state.editorState.getCurrentContent());

  localStorage.setItem('draftRaw', JSON.stringify(contentRaw));
}

If after that you reload the page, your editor will be initialized with the content and styles what you save. Becouse of in constructor we read the appropriate local storage property, and with JSON.parse, convertFromRaw and createWithContent methods initialize editor with the previously stored content.

constructor(props) {
  super(props);

  let initialEditorState = null;
  const storeRaw = localStorage.getItem('draftRaw');

  if (storeRaw) {
    const rawContentFromStore = convertFromRaw(JSON.parse(storeRaw));
    initialEditorState = EditorState.createWithContent(rawContentFromStore);
  } else {
    initialEditorState = EditorState.createEmpty();
  }

  this.state = {
    editorState: initialEditorState
  };
}
Worden answered 25/10, 2017 at 12:32 Comment(1)
I tried using this technique, but I'm having issues converting from raw back to ContentState. I used the following line of code to serialize an empty state: JSON.stringify(convertToRaw(EditorState.createEmpty().getCurrentContent())) When I try to recreate the state later: EditorState.createWithContent(convertFromRaw(JSON.parse(serialized_state))) I get the following error: TypeError: blockMap.first(...).getKey is not a function. Looking through the source code didn't really help much. Any advice would be appreciated. Thanks.Tenenbaum
L
3

Edit: This is not a good way. See accepted answer.

To persist

const contentStateJsObject = ContentState.toJS();
const contentStateJsonString = JSON.stringify(contentStateJS);

Now the content state can be persisted as JSON string.

To recreate ContentState

const jsObject = JSON.parse(jsonString);
const contentState = new ContentState(jsObject);
Landing answered 8/4, 2016 at 13:19 Comment(3)
This isn't probably the best way. See accepted answer.Landing
This produces huge amounts of text (JSON). The accepted answer only produces a fraction of that.Variscite
this is not official api, wouldn't do this. it's begging for bugs after draft version updates. just use official methods draftjs.org/docs/api-reference-data-conversion convertFromRaw and convertToRawAltonaltona
P
1

If you're going to save the raw content to your db using an AWS Lambda, I recommend stringifying within your Lambda code so you can then escape the single quotes; Then store it:

const escapedValueToStore = JSON.stringify(contentStateObject).replace(/'/g, '\'\'');

It's a bit involved, but it's basically because you stringify your data object when sending to your Lambda (via API Gateway) using POST.

You then need to parse that object, which then returns your ContentState into an Object without escaping the single quotes. You do the above-mentioned code to escape the quotes.

When using the data client side, all you need to do is parse it again as you convert it from raw:

EditorState.createWithContent(convertFromRaw(JSON.parse(rawContentState))

EDIT

On second thought, I guess you can just stringify, and escape the content on the client-side as well 🤔

Pokpoke answered 26/11, 2020 at 16:10 Comment(0)
V
0

I did it for draftjs with reactjs. If u are still facing this issue: You can see the solution in this video

Basically you have to convertToRaw, then JSON.stringify it. Then this can be sent to your backend as a string. To display it, make a GET request for that particular data, then JSON.parse it and then convertFromRaw. Pass this into another RichTextEditor as the editorState but set the readOnly={true}

Villain answered 23/9, 2022 at 8:54 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.