GithubHelp home page GithubHelp logo

Comments (2)

avkonst avatar avkonst commented on August 22, 2024

It is possible but it would require deep check of all fields and nested fields which hits the performance. Maybe do it in development mode only?. When this error happens it should not have call stack exceeded exception. Can you submit a reproducer for this case so I could check if this exception can be replaced by a better one?

from hookstate.

korri123 avatar korri123 commented on August 22, 2024

@avkonst Sure! Here is a reproducer, just click the button and the error will happen: https://playcode.io/1377075
Development mode only would be fine.

Code below if website doesn't work:

import React from 'react';
import {useHookstate} from '@hookstate/core'

interface NestedObject {
  nestedNumber: number;
}

interface StateObject {
  nestedObject?: NestedObject;
  nestedObject2?: NestedObject;
}

export default function App() {
  const state = useHookstate({nestedObject: {nestedNumber: 1}} as StateObject)
  return (
    <div className='App'>
      <button onClick={function() {
        const value = state.nestedObject.get()
        state.set({nestedObject: value, nestedObject2: {nestedNumber: 2}})
      }}>Click me!</button>
      <p>{(function() {
        const nested = state.nestedObject.ornull;
        if (!nested) return null;
        return nested.nestedNumber.get()
      })()}</p>
    </div>
  );
}

from hookstate.

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.