prism icon indicating copy to clipboard operation
prism copied to clipboard

Quota Exceeded

Open bryanberger opened this issue 2 years ago • 3 comments

Describe the bug Seems like the global_state in localStorage grows overtime and hits a quota and errors out resulting in the inability to move or interact with the UI at all.

Uncaught DOMException: The quota has been exceeded. main.832ea5e9.chunk.js:1
    a global-state.tsx:450
    <anonymous> self-hosted:1115
    update interpreter.js:259
    m interpreter.js:104
    process scheduler.js:64
    schedule scheduler.js:43
    send interpreter.js:98
    t.prototype.defer/this.delayedEventsMap[e.id]< interpreter.js:739
    (Async: setTimeout handler)
    setTimeout interpreter.js:1258
    t interpreter.js:1257
    defer interpreter.js:735
    exec interpreter.js:783
    execute interpreter.js:198
    update interpreter.js:224
    m interpreter.js:104
    process scheduler.js:64
    schedule scheduler.js:43
    send interpreter.js:98
    onChange scale.tsx:441
    React 11
    bind_applyFunctionN self-hosted:1313
    Jt self-hosted:1276
    unstable_runWithPriority scheduler.production.min.js:18
    React 3
    bind_applyFunctionN self-hosted:1313
    Xt self-hosted:1276
    receiveMessage SelectChild.jsm:272
    receiveMessage SelectChild.jsm:475

To Reproduce Steps to reproduce the behavior:

  1. Use prism a lot, with a lot of scales

Environment

  • OS: macOS BigSur
  • Browser: Firefox
  • Version: latest

bryanberger avatar Jun 17 '22 22:06 bryanberger

Wow, I didn't know localStorage had a quota. Thank you for reporting this, @bryanberger ! If you have any idea on how to work around this, feel free to open a PR :)

colebemis avatar Jun 19 '22 02:06 colebemis

@colebemis We tried reducing the history size to 25 instead of 50 and debounced the serialization to localStorage that occurs onDrag right now. I haven't seen the error since.

bryanberger avatar Jun 24 '22 14:06 bryanberger

I'll open a PR at some point with the localstorage serialization changes.

stevenpetryk avatar Jun 24 '22 20:06 stevenpetryk