Coder Social home page Coder Social logo

No HMR in vite about vite-plugin-solid HOT 6 CLOSED

solidjs avatar solidjs commented on September 1, 2024
No HMR in vite

from vite-plugin-solid.

Comments (6)

ryansolid avatar ryansolid commented on September 1, 2024 1

It depends where the store is. Generally though we have no state preservation below the point of change currently. If you are seeing reloading in these cases it is work as far as we expect it to today.

from vite-plugin-solid.

lxsmnsyc avatar lxsmnsyc commented on September 1, 2024

This is expected, specially if you're editing the Counter component.

from vite-plugin-solid.

vic1707 avatar vic1707 commented on September 1, 2024

The state is reseted even when I edit the main app component, why is it expected? Works well in react

from vite-plugin-solid.

lxsmnsyc avatar lxsmnsyc commented on September 1, 2024

React has a completely different way of preserving state by utilizing their own architecture (Fiber). Solid doesn't have that kind of architecture (No VDOM, no hooks).

from vite-plugin-solid.

St3Ko avatar St3Ko commented on September 1, 2024

@lxsmnsyc does this also concern stores? For example i have an array of list items inside a store which get's set at runtime via API request (so the default is an empty array) and list them with the List component. When i now change the component, for example the class attribute from flex to flex another-tailwind-class the store gets reset and my items disappear.

import {For} from "solid-js";
import {cartStore} from "@stores"
import {Button} from "@components/ui"

import type {Component} from "solid-js"

const Overview: Component = () => {
  const recipes = () => cartStore.cart_recipes
  return (
    <div>
      <div>Overview:</div>
      <For each={recipes()}>
        {(recipe) => <div>{recipe.recipe_id}: {recipe.servings}</div>}
      </For>
      <div class="flex">
        <Button size="small">do something</Button>
        <Button size="small">do something different</Button>
      </div>
    </div>
  )
}

export default Overview

from vite-plugin-solid.

stabildev avatar stabildev commented on September 1, 2024

Is it possible to change that behavior? I added

if (import.meta.hot) {
  import.meta.hot.accept()
  import.meta.hot.dispose(dispose)
}

to index.jsx but state is still lost on every change/file save.

from vite-plugin-solid.

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.