Article Builder v3

Article Builder v3

The first article builder page was an attempt at letting the user build an article using the entire page. This was to allow the user to have a Word-like or Google Docs-like experience. It didn't have a great UI and it would be difficult to add a html/css/javascript editor to the Lexical Editor while still keeping what we care most about the rich text editor - the ability of readers to highlight certain sections of the article and comment specifically on that section. The point of the first iteration of the article builder was to keep the toolbar in view at all times.

The second article builder was an attempt at letting the user create smaller sections of an article and then add, remove, and rearrange the sections with drag and drop functionality. I think this version works better at smaller screen sizes and it is what I will be copying with this third iteration of the article builder.

New Article Builder Requirements

  • This article builder should look like the second version except instead of a add / remove button. Each "section" should have an add editor, add HTML/CSS/JavaScript, and remove section buttons.
  • The tabs for the HTML / CSS / JavaScript editor should be hidden when the editor is not focused. Listen for the focusin events.
  • When submitted, the lexical state for each lexical editor should be serialized to JSON and stored in an array and each html/css/js "Custom Code" section should be stored as html: string, css: string, javascript: string. See the object below
  • type ArticleBuilderToPost = (StringifiedLexicalState|{
    html: string, css: string, js: string
    })[];
  • Since I am the only one using the article builder for now, I don't need to worry about sand-boxing the javascript. I just need to post the html / css / js to the server and get back the js with a nonce.

Things To Keep In Mind

  • There can only be one article builder v3 per page due to the fact the sort container must have the same id as all of the sections, and it is more trouble than its worth (probably) to make that work.

Article Builder Implementation