Git Product home page Git Product logo

Comments (4)

frandiox avatar frandiox commented on May 27, 2024

Yeah I was thinking in adding some kind of hook to optionally use devalue instead of JSON.stringify. I think it would work for this as well πŸ€”
I'll have a look at it tomorrow probably.

from vite-ssr.

yaquawa avatar yaquawa commented on May 27, 2024

Thanks a lot!

from vite-ssr.

frandiox avatar frandiox commented on May 27, 2024

@yaquawa So I actually misunderstood what you needed here. What I meant was a hook to modify initialState instead of body. However, you might not need that body hook:

Harlem is basically adding <script>window.__harlemState = state</script> to the DOM, which overlaps with the role of Vite SSR (serializing state as well).
You can use the new state transformer hook (more docs in readme) to move Harlem's state to Vite SSR initial state:

function transformState(state) {
  if (import.meta.env.SSR) {
    state.harlem = getHarlemState()
    return JSON.stringify(state)
  } else {
    // Restore Harlem's state to its place
    window.__harlemState = JSON.parse(state.harlem)
    return state
  }
}

The problem is that they don't provide a "getHarlemState" function out of the box but it can be easily done by using another function they provide:

function getHarlemState() {
  const script = getBridgingScript()
  return script.slice(script.indexOf('=') + 1)
}

It would be nice if they provide getState and setState directly so it can be integrated with other tools easily. Maybe they would be open for a PR?

Tell me if this works for you (the transformState hook is implemented in 0.6.8).

from vite-ssr.

yaquawa avatar yaquawa commented on May 27, 2024

Good to know that, thanks for the detail!

Also I've noticed that I could just write a little plugin for this using the transformIndexHtml hook.

from vite-ssr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.