Will passing the model props for a component via GET parameters hit limitations due to URL length

Created on 3 December 2024, 4 months ago

Overview

When we build the component props form we pass the current component state and props via the URL. This also includes the ajax form state.
e.g.

http://127.0.0.1:8080/xb-field-form/node/1?tree=%7B%22children%22%3A%5B%5D%2C%22nodeType%22%3A%22component%22%2C%22type%22%3A%22sdc.experience_builder.heading%22%2C%22uuid%22%3A%225a667325-5aea-4bfb-ae5c-e7cedae5a3e1%22%7D&props=%7B%225a667325-5aea-4bfb-ae5c-e7cedae5a3e1%22%3A%7B%22text%22%3A%7B%22sourceType%22%3A%22static%3Afield_item%3Astring%22%2C%22expression%22%3A%22%E2%84%B9%EF%B8%8Estring%E2%90%9Fvalue%22%2C%22value%22%3A%22A+heading+element%22%7D%2C%22style%22%3A%7B%22sourceType%22%3A%22static%3Afield_item%3Alist_string%22%2C%22sourceTypeSettings%22%3A%7B%22storage%22%3A%7B%22allowed_values%22%3A%5B%7B%22value%22%3A%22primary%22%2C%22label%22%3A%22primary%22%7D%2C%7B%22value%22%3A%22secondary%22%2C%22label%22%3A%22secondary%22%7D%5D%7D%7D%2C%22expression%22%3A%22%E2%84%B9%EF%B8%8Elist_string%E2%90%9Fvalue%22%2C%22value%22%3A%22primary%22%7D%2C%22element%22%3A%7B%22sourceType%22%3A%22static%3Afield_item%3Alist_string%22%2C%22sourceTypeSettings%22%3A%7B%22storage%22%3A%7B%22allowed_values%22%3A%5B%7B%22value%22%3A%22div%22%2C%22label%22%3A%22div%22%7D%2C%7B%22value%22%3A%22h1%22%2C%22label%22%3A%22h1%22%7D%2C%7B%22value%22%3A%22h2%22%2C%22label%22%3A%22h2%22%7D%2C%7B%22value%22%3A%22h3%22%2C%22label%22%3A%22h3%22%7D%2C%7B%22value%22%3A%22h4%22%2C%22label%22%3A%22h4%22%7D%2C%7B%22value%22%3A%22h5%22%2C%22label%22%3A%22h5%22%7D%2C%7B%22value%22%3A%22h6%22%2C%22label%22%3A%22h6%22%7D%5D%7D%7D%2C%22expression%22%3A%22%E2%84%B9%EF%B8%8Elist_string%E2%90%9Fvalue%22%2C%22value%22%3A%22h1%22%7D%7D%7D&selected=5a667325-5aea-4bfb-ae5c-e7cedae5a3e1&latestUndoRedoActionId=&ajaxPageState=%7B%22libraries%22%3A%22ckeditor5%2Finternal.drupal.ckeditor5%2Cckeditor5%2Finternal.drupal.ckeditor5.codeBlock%2Cckeditor5%2Finternal.drupal.ckeditor5.emphasis%2Cckeditor5%2Finternal.drupal.ckeditor5.htmlEngine%2Cckeditor5%2Finternal.drupal.ckeditor5.image%2Cckeditor5%2Finternal.drupal.ckeditor5.table%2Ccomment%2Fdrupal.comment%2Ccore%2Fckeditor5.autoformat%2Ccore%2Fckeditor5.blockquote%2Ccore%2Fckeditor5.horizontalLine%2Ccore%2Fckeditor5.link%2Ccore%2Fckeditor5.list%2Ccore%2Fckeditor5.pasteFromOffice%2Ccore%2Fckeditor5.removeFormat%2Ccore%2Fckeditor5.sourceEditing%2Ccore%2Fdrupal.autocomplete%2Ccore%2Fdrupal.collapse%2Ccore%2Fdrupal.vertical-tabs%2Cexperience_builder%2Fxb-ui%2Cfile%2Fdrupal.file%2Cfilter%2Fdrupal.filter%2Cmenu_ui%2Fdrupal.menu_ui%2Cnode%2Fdrupal.node%2Cnode%2Fform%2Cpath%2Fdrupal.path%2Ctext%2Fdrupal.text%22%2C%22theme%22%3A%22xb_stark%22%2C%22theme_token%22%3A%22xyLKoRagSTgZCC-u0lL4eA1DMuKHMTSz7FV8LfPbaKM%22%7D

At some point - e.g. consider editing a rich text (WYSIWYG) field this might lead to URLs that are too large for some environments.

According to stack overflow it seems like Browser limits (for modern browsers) are quite large (10k for Edge, >64k for Safari/Android/Chrome, >300k for Firefox) however some CDNs have much smaller limits (Fastly 8Kb, CloudFront 8Kb, Cloudflare 32Kb)

So on that basis it feels like there's a hard-limit of around 8k for the URL.

Doing some back of the envelope calculations using 100 words a paragraph with an average word length of 5 letters, 8kb gives us about 16 paragraphs. That feels like it might be a bit limiting for e.g. a body field, especially when we add HTML elements/wrappers. This naively assumes that the length of ajaxPageState and the other props are zero, so it would actually be more like 15 paragraphs once we account for that.

Do we need to explore other alternatives (e.g. POST) because we might be limiting ourselves?

Proposed resolution

User interface changes

πŸ“Œ Task
Status

Active

Version

0.0

Component

Page builder

Created by

πŸ‡¦πŸ‡ΊAustralia larowlan πŸ‡¦πŸ‡ΊπŸ.au GMT+10

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024