@stateref/connect-react
v18.0.2
Published
vue connector for state-ref
Downloads
217
Readme
state-ref
Universal state management library that can be easily integrated into UI libraries
StateRef
is a state management library focused on data immutability.
It combines proxies and the functional programming lens pattern to efficiently and safely access and modify deeply structured data.
It provides more direct and fine-grained state management compared to other types of state management libraries.
It is also designed for easy integration with other UI libraries. We provide code snippets for connecting with React, Preact, Vue, Svelte, Solid, and Lithent , and users can also create their own connection snippets.
- Table of Contents
Acknowledgements
I would like to extend my gratitude to the following people and projects:
- Juho Vepsäläinen: Thank you for the insightful interview and featuring me on your blog. Your work and contributions to the JavaScript community have been a great source of inspiration.
- lens.ts: This project includes portions of code from the
lens.ts
project, which is licensed under the MIT License.- lens.ts: A TypeScript utility for working with immutable data structures.
- Licensed under the MIT License.
Basic Usage
The basic principle is that the subscription function only reacts to values retrieved through .value
, and when a value is assigned with .value=
, the subscription function is triggered if the value is already subscribed.
Below is a simple usage example.
import { createStore } from "state-ref";
type Info = { age: number; house: { color: string; floor: number }[] };
type People = { john: Info; brown: Info; sara: Info };
const watch = createStore<People>({
john: {
age: 20,
house: [
{ color: "red", floor: 5 },
{ color: "red", floor: 5 },
],
},
brown: { age: 26, house: [{ color: "red", floor: 5 }] },
sara: { age: 26, house: [{ color: "red", floor: 5 }] },
});
// Get references
const stateRef = watch();
// Using value.
console.log(stateRef.john.house[1].color.value);
// Change value.
stateRef.john.house[1].color.value = "yellow";
// To subscribe
watch((stateRef) => {
console.log(
"Changed John's Second House Color",
stateRef.john.house[1].color.value
);
});
When you define the initial state using the createStore
function, it returns watch
, which helps you subscribe to or reference the values.
You can register a subscription function with watch
that triggers when the value changes.
The first argument passed to the subscription function is stateRef
, and by using the value
property of stateRef
, you can retrieve the value. The subscription function will only execute when the referenced value changes.
Here is another example:
const stateRef = watch((stateRef) => {
console.log(
"Changed John's Second House Color",
stateRef.john.house[1].color.value
);
});
const {
john: {
house: [, { color: colorhandleref }],
},
} = stateRef;
stateRef.john.house[1].color.value = "blue";
colorHandleRef.value = "green";
The watch
function returns a stateRef
. Through the returned stateRef
, you can change or reference values outside of the subscription function.
By chaining directly from the stateRef
and assigning a value to the .value
of the part you want to change, the original data in the store will be reflected with copyOnWrite
applied.
You can see in the example that you can use the destructuring operator to directly extract a reference to a specific state and use it.
If you simply read the .value
from the returned stateRef
, any changes to that value will automatically trigger the subscription function."
If you want to avoid automatic updates, you can use a new stateRef
that is not connected to the subscription function.
const otherStateRef = watch();
If you want to cancel the subscription, use abortController
as shown in the example below.
const abortController = new AbortController();
watch((stateRef) => {
console.log(
"Changed John's Second House Color",
stateRef.john.house[1].color.value
);
return abortController.signal;
});
abortController.abort(); // run abort
Usage with React (Same for Preact)
It can be easily integrated with other UI libraries, and below is an example using React.
profileStore.ts
Create the store and pass the
watch
toconnectReact
to create a state that can be used in components.
import { connectReact } from "@stateref/connect-react";
// import { connectPreact } from "@stateref/connect-preact"; // for Preact
import { createStore } from "state-ref";
type Info = { age: number; house: { color: string; floor: number }[] };
type People = { john: Info; brown: Info; sara: Info };
const watch = createStore<People>({
john: {
age: 20,
house: [
{ color: "red", floor: 5 },
{ color: "red", floor: 5 },
],
},
brown: { age: 26, house: [{ color: "red", floor: 5 }] },
sara: { age: 26, house: [{ color: "red", floor: 5 }] },
});
export const useProfileStore = connectReact(watch);
UserComponent.tsx
import { useProfileStore } from 'profileStore';
function UserComponent() {
const {
john: { age: ageRef },
} = useProfileStore();
const increaseAge = () => {
ageRef.value += 1;
};
return (
<button onClick={increaseAge}>
john's age: {ageRef.value}
</button>;
);
}
In the example above, useProfileStore
directly returns stateRef
, allowing easy access to values and modification through copyOnWrite
.
You can create your own custom connection pattern by referring to the connectReact implementation code.
Usage with Svelte
While React and Preact's useProfile
function directly returns stateRef
, SvelteConnect returns Svelte's built-in reactive Writable synchronized with the stateRef
state value.
Below is a usage example.
profileStore.ts
import { connectSvelte } from "@stateref/connect-svelte";
// ... same as React example
export const useProfileStore = connectSvelte(watch);
UserComponent.svelte
<script lang="ts">
import { useProfileStore } from 'profileStore';
const age = useProfileStore<number>(stateRef => stateRef.john.age);
function handleClick() {
age.update(n => n + 1);
}
</script>
<button on:click={handleClick}>
john's age is {$age}
</button>
If Writable needs to reference and modify an object from the store, the copyable
function is available to assist with copyOnWrite
.
import { copyable } from "state-ref";
const profileObj = useProfileRef(stateRef => stateRef);
function handleClick() {
profileObj.update(n => copyable(n).john.age.writeCopy(n.john.age + 1));
}
You can customize it by referring to the connectSvelte implementation code.
Usage with Vue
In Vue, the store is connected and returns Vue's built-in reactive Reactive synchronized with the stateRef
state value.
You can customize it by referring to the connectVue implementation code.
profileStore.ts
import { connectVue } from "@stateref/connect-vue";
// ... same as React example
export const useProfileStore = connectVue(watch);
UserComponent.vue
<script setup lang="ts">
import { useProfileStore } from 'profileStore';
const age = useProfileStore<number>(store => store.john.age);
const incrementFromProfile = () => {
// This looks the same as stateRef, but it's a Reactive value in Vue.
age.value += 1;
};
</script>
<template>
<button @click="incrementFromProfile">
john's age is: {{ age.value }}
</button>
</template>
Usage with Solid
Solid does not directly use stateRef
but returns Solid's built-in reactive Signal synchronized with the stateRef
state value.
You can customize it by referring to the connectSolid implementation code.
profileStore.ts
import { connectSolid } from "@stateref/connect-solid";
// ... same as React example
export const useProfileStore = connectSolid(watch);
UserComponent.tsx
import { useProfileStore } from 'profileStore';
function UserComponent() {
const [age, setAge] = useProfileStore<number>(store => store.john.age);
function increaseAge() {
setAge(age => age + 1);
}
return (
<button onClick={increaseAge}>
john's age: {age()}
</button>;
);
}
If Signal needs to reference and modify an object from the store, the copyable
function is available to assist with copyOnWrite
.
import { copyable } from "state-ref";
const [profileObj, setProfileObj] = useProfileStore(stateRef => stateRef);
function handleClick() {
setProfileObj(n => copyable(n).john.age.writeCopy(n.john.age + 1));
}
Usage with Lithent
profileStore.ts
In Lithent, you can use it directly with watch without needing a connect code.
import { createStore } from "state-ref";
type Info = { age: number; house: { color: string; floor: number }[] };
type People = { john: Info; brown: Info; sara: Info };
export const watch = createStore<People>({
john: {
age: 20,
house: [
{ color: "red", floor: 5 },
{ color: "red", floor: 5 },
],
},
brown: { age: 26, house: [{ color: "red", floor: 5 }] },
sara: { age: 26, house: [{ color: "red", floor: 5 }] },
});
UserComponent.tsx
import { mount, h } from 'lithent';
import { watch } from 'profileStore';
const UserComponent = mount(r => {
const {
john: { age: ageRef },
} = watch(r);
const increaseAge = () => {
ageRef.value += 1;
};
return () => (
<button onClick={increaseAge}>
john's age: {ageRef.value}
</button>;
);
});
npm
test
Plugins must be build before they can be tested.
pnpm install
pnpm build
pnpm test