How to use @hookstate/core - 10 common examples

To help you get started, we’ve selected a few @hookstate/core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github avkonst / hookstate / examples / src / examples / plugin-initial-statefragment.tsx View on Github external
export const ExampleComponent = () => {
    const state = useStateLink(['First Task', 'Second Task'])
        .with(Initial); // enable the plugin
    return <>
         Initial(s).modified())}
        >{(modified: boolean) => {
            return <p>
                Last render at: {(new Date()).toISOString()} <br>
                Is whole current state modified (vs the initial): {modified.toString()} <br>
                The <b>initial</b> state: {JSON.stringify(Initial(state).get())}
            </p>
        }}
        
        {state.nested.map((taskState, taskIndex) =&gt;
            {scopedTaskState =&gt; {
                return <p></p>
github avkonst / hookstate / examples / src / examples / local-complex-from-documentation.tsx View on Github external
function JsonDump(props: { state: StateLink }) {
    // optional scoped state for performance, could use props.state everywhere instead
    const state = useStateLink(props.state);
    return <p>
        Last render at: {(new Date()).toISOString()} <br>
        Current state: {JSON.stringify(state.value)}
    </p>
}
github avkonst / hookstate / examples / src / examples / performance-demo-large-table.tsx View on Github external
function PerformanceMeter(props: { matrixState: StateLink }) {
    const stats = React.useRef({
        totalSum: 0,
        totalCalls: 0,
        startTime: (new Date()).getTime()
    })
    const elapsedMs = () =&gt; (new Date()).getTime() - stats.current.startTime;
    const elapsed = () =&gt; Math.floor(elapsedMs() / 1000);
    const rate = Math.floor(stats.current.totalCalls / elapsedMs() * 1000);
    const scopedState = useStateLink(props.matrixState)
        .with(() =&gt; ({
            id: PerformanceViewPluginID,
            instanceFactory: () =&gt; ({
                onPreset: (path, prevState, newCellValue) =&gt; {
                    if (path.length === 2) {
                        // new value can be only number in this example
                        // and path can contain only 2 elements: row and column indexes
                        stats.current.totalSum += newCellValue - prevState[path[0]][path[1]];
                    }
                },
                onSet: () =&gt; {
                    stats.current.totalCalls += 1;
                }
            })
        }))
    // mark the value of the whole matrix as 'used' by this component
github avkonst / hookstate / experimental / ie11 / src / Example.tsx View on Github external
function TaskEditor(props: { taskState: StateLink }) {
    // optional scoped state for performance, could use props.taskState everywhere instead
    const taskState = useStateLink(props.taskState);
    return <p>
        Last render at: {(new Date()).toISOString()} <br>
        Task state: {JSON.stringify(taskState.get())}<br>
        <input value="{taskState.nested.name.get()}"> taskState.nested.name.set(e.target.value)}
        /&gt;
        <button> taskState.nested.priority.set(p =&gt; (p || 0) + 1)} &gt;
            Increase priority
        </button>
    </p>
}
github avkonst / hookstate / examples / src / examples / global-complex-from-documentation.tsx View on Github external
function TaskEditor(props: { taskState: StateLink }) {
    // optional scoped state for performance, could use props.taskState everywhere instead
    const taskState = useStateLink(props.taskState);
    return <p>
        Last render at: {(new Date()).toISOString()} <br>
        Task state: {JSON.stringify(taskState.get())}<br>
        <input value="{taskState.nested.name.get()}"> taskState.nested.name.set(e.target.value)}
        /&gt;
        <button> taskState.nested.priority.set(p =&gt; (p || 0) + 1)} &gt;
            Increase priority
        </button>
    </p>
}
github avkonst / hookstate / examples / src / examples / global-complex.tsx View on Github external
import React from 'react';
import { createStateLink, useStateLink, useStateLinkUnmounted } from '@hookstate/core';

const store = createStateLink([{ counter: 0 }, { counter: 0 }, { counter: 0 }]);

setInterval(() =&gt; useStateLinkUnmounted(store)
    .nested[0] // get to the state of the first array element
    .nested.counter // get to the state of the element's counter
    .set(p =&gt; p + 1) // increment the counter...
, 3000) // ...every 3 seconds

export const ExampleComponent = () =&gt; {
    const state = useStateLink(store);
    return &lt;&gt;
        <p>Current state: {JSON.stringify(state.value)}</p>
        {state.nested.map((elementState, elementIndex) =&gt;
            <p>
                <span><b>Counter #{elementIndex}: {elementState.value.counter}</b> </span>
                <button> elementState.nested.counter.set(p =&gt; p + 1)}&gt;Increment</button>
                {elementIndex === 0 &amp;&amp; ' watch +1 every 3 seconds '}</p>
github avkonst / hookstate / experimental / ie11 / src / Example.tsx View on Github external
import React from 'react';
import { createStateLink, useStateLink, useStateLinkUnmounted, StateLink } from '@hookstate/core';

interface Task { name: string; priority: number| undefined  }

const initialValue: Task[] = [{ name: 'First Task', priority: undefined }];
const stateInf = createStateLink(initialValue);

setTimeout(() =&gt; useStateLinkUnmounted(stateInf)
    .set(tasks =&gt; tasks.concat([{ name: 'Second task by timeout', priority: 1 }]))
, 5000) // adds new task 5 seconds after website load

export const ExampleComponent = () =&gt; {
    const state: StateLink = useStateLink(stateInf);
    return &lt;&gt;
        
        {state.nested.map((taskState: StateLink, taskIndex) =&gt;
            
        )}
        <p><button> state.set(tasks =&gt; tasks.concat([{ name: 'Untitled', priority: undefined }]))}&gt;
            Add task
        </button></p>
github avkonst / hookstate / examples / src / examples / global-object.tsx View on Github external
import React from 'react';
import { createStateLink, useStateLink, useStateLinkUnmounted } from '@hookstate/core';

const store = createStateLink({ counter: 0 });

setInterval(() =&gt; useStateLinkUnmounted(store) // get to the state of the object
    .nested.counter // get to the state of the counter property
    .set(p =&gt; p + 1) // increment the counter...
, 3000) // ...every 3 seconds

export const ExampleComponent = () =&gt; {
    const state = useStateLink(store);
    return &lt;&gt;
        <p>Current state: {JSON.stringify(state.value)}</p>
        <p>
            <span><b>Counter value: {state.value.counter}</b> (watch +1 every 3 seconds) </span>
            <button> state.nested.counter.set(p =&gt; p + 1)}&gt;Increment</button>
        </p>
    
}
github avkonst / hookstate / examples / src / examples / global-array.tsx View on Github external
import React from 'react';
import { createStateLink, useStateLink, useStateLinkUnmounted, StateLink } from '@hookstate/core';

const store = createStateLink([0, 0, 0]);

setInterval(() =&gt; useStateLinkUnmounted(store).nested[0].set(p =&gt; p + 1), 3000)

export const ExampleComponent = () =&gt; {
    // type annotations are only to demonstrate how 'nested'
    // types are unfolded when the state tree is traversed
    const state: StateLink = useStateLink(store);
    return &lt;&gt;
        <p>Current state: {JSON.stringify(state.value)}</p>
        {state.nested.map((elementState: StateLink, elementIndex: number) =&gt;
            <p>
                <span><b>Counter #{elementIndex} value: {elementState.value} </b></span>
                <button> elementState.set(p =&gt; p + 1)}&gt;Increment</button>
                {elementIndex === 0 &amp;&amp; ' watch +1 every 3 seconds'}
            </p>
        )}
github avkonst / hookstate / examples / src / examples / global-complex-from-documentation.tsx View on Github external
import React from 'react';
import { createStateLink, useStateLink, useStateLinkUnmounted, StateLink } from '@hookstate/core';

interface Task { name: string; priority?: number }

const initialValue: Task[] = [{ name: 'First Task' }];
const stateRef = createStateLink(initialValue);

setTimeout(() =&gt; useStateLinkUnmounted(stateRef)
    .set(tasks =&gt; tasks.concat([{ name: 'Second task by timeout', priority: 1 }]))
, 5000) // adds new task 5 seconds after website load

export const ExampleComponent = () =&gt; {
    const state: StateLink = useStateLink(stateRef);
    return &lt;&gt;
        
        {state.nested.map((taskState: StateLink, taskIndex) =&gt;
            
        )}
        <p><button> state.set(tasks =&gt; tasks.concat([{ name: 'Untitled' }]))}&gt;
            Add task
        </button></p>

@hookstate/core

The flexible, fast and extendable state management for React that is based on hooks and state usage tracking.

MIT
Latest version published 1 year ago

Package Health Score

59 / 100
Full package analysis

Similar packages