How to use the @hookstate/core.createStateLink function in @hookstate/core

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 / 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(() => 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 => p + 1) // increment the counter...
, 3000) // ...every 3 seconds

export const ExampleComponent = () => {
    const state = useStateLink(store);
    return <>
        <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>
github avkonst / hookstate / experimental / sizetest / src / Example.tsx View on Github external
import React from 'react';
import { createStateLink, useStateLink, useStateLinkUnmounted } from '@hookstate/core';

const store = createStateLink(0);

useStateLinkUnmounted(store);

export const ExampleComponent = () =&gt; {
    const state = useStateLink(store);
    return &lt;&gt;{state.value}
}
github avkonst / hookstate / examples / src / examples / global-multiple-consumers.tsx View on Github external
import React from 'react';
import { createStateLink, useStateLink } from '@hookstate/core';

const stateRef = createStateLink({ priority: 0, task: 'Untitled Task' });

const TaskView = () =&gt; {
    const state = useStateLink(stateRef);
    return <p>
        Last render at: {(new Date()).toISOString()} <br>
        <span>Task name: {state.value.task} </span>
        <input value="{state.value.task}"> state.nested.task.set(e.target.value)}/&gt;
    </p>
}

const PriorityView = () =&gt; {
    const state = useStateLink(stateRef);
    return <p>
        Last render at: {(new Date()).toISOString()} <br>
        <span>Task priority: {state.value.priority} </span>
        <button> state.nested.priority.set(p =&gt; p + 1)}&gt;Increase priority</button></p>
github avkonst / hookstate / examples / src / examples / global-multiple-consumers-from-root.tsx View on Github external
import React from 'react';
import { createStateLink, useStateLink, StateLink } from '@hookstate/core';

const stateRef = createStateLink({ priority: 0, task: 'Untitled Task' });

const TaskView = (props: { state: StateLink }) =&gt; {
    const state = useStateLink(props.state);
    return <p>
        Last render at: {(new Date()).toISOString()} <br>
        <span>Task name: {state.value} </span>
        <input value="{state.value}"> state.set(e.target.value)}/&gt;
    </p>
}

const PriorityView = (props: { state: StateLink }) =&gt; {
    const state = useStateLink(props.state);
    return <p>
        Last render at: {(new Date()).toISOString()} <br>
        <span>Task priority: {state.value} </span>
        <button> state.set(p =&gt; p + 1)}&gt;Increase priority</button></p>
github avkonst / hookstate / examples / src / examples / global-getting-started.tsx View on Github external
import React from 'react';
import { createStateLink, useStateLink, useStateLinkUnmounted } from '@hookstate/core';

const stateRef = createStateLink(0);

setInterval(() =&gt; useStateLinkUnmounted(stateRef).set(p =&gt; p + 1), 3000)

export const ExampleComponent = () =&gt; {
    const state = useStateLink(stateRef);
    return <p>
        <span><b>Counter value: {state.value}</b> (watch +1 every 3 seconds) </span>
        <button> state.set(p =&gt; p + 1)}&gt;Increment</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

57 / 100
Full package analysis

Similar packages