@preact-signals/utils
@preact-signals/utils
is a standard library for Preact Signals, designed to provide essential utilities for comfortable and streamlined usage. This package includes several features to enhance the flexibility and maintainability of Preact Signal-based projects.
Split your code because of you want, not because of you have to
Prerequisites
Ensure that one of the preact signals runtimes is installed:
@preact/signals
for preact
, requiring an additional step.@preact/signals-core
for vanilla js requiring an additional step.@preact/signals-react
for react
.
@preact/signals-core
additional step:
We need to resolve @preact/signals-react
as @preact/signals-core
Vite example:
import { defineConfig } from 'vite';
export default defineConfig({
resolve: {
alias: {
"@preact/signals-react": "@preact/signals-core",
},
},
})
Astro example:
import { defineConfig } from "astro/config";
export default defineConfig({
vite: {
resolve: {
alias: {
"@preact/signals-react": "@preact/signals-core",
},
},
},
});
@preact/signals
additional step:
Resolve @preact/signals-react
as @preact/signals
. For guidance, see resolve react
as preact
and follow a similar process with signals. Additionally, dedupe preact
.
import preact from "@preact/preset-vite";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [preact()],
resolve: {
dedupe: ["preact"],
alias: [
{ find: "react", replacement: "preact/compat" },
{ find: "react-dom/test-utils", replacement: "preact/test-utils" },
{ find: "react-dom", replacement: "preact/compat" },
{ find: "react/jsx-runtime", replacement: "preact/jsx-runtime" },
{ find: "@preact/signals-react", replacement: "@preact/signals" },
],
},
});
Installation
Fetch @preact-signals/utils
via your preferred package manager:
npm install @preact-signals/utils
yarn add @preact-signals/utils
pnpm add @preact-signals/utils
Library consist from many entries:
@preact-signals/utils
for library agnostic utils@preact-signals/utils/components
for reactive components@preact-signals/utils/hooks
for reactive hooks@preact-signals/utils/hocs
provides hocs wrappers that bring reactivity to your components@preact-signals/utils/store
provides deep reactivity implementation@preact-signals/utils/store/hooks
provides deep reactivity implementation
Main Entry: @preact-signals/utils
Uncached
/$
The Uncached
type functions similarly to a Preact signal, essentially wrapping a function that can be passed into props or JSX. You can create it using the $
function.
const sig = signal(1);
<div>{$(() => sig.value * 10)}</div>;
reaction
The reaction
function allows responding to changes tracked within a dependent function. It is useful for managing side-effects or synchronizing non-reactive parts of your code.
reaction
is enhanced version of this:
const reaction = (deps, fn) =>
effect(() => {
const value = deps();
untracked(() => fn(value));
});
const sig = signal(1);
const sig2 = signal(2);
const dispose = reaction(
() => sig.value,
(value) => {
if (sig2.value * 10 === value) {
sig2.value = value;
}
}
);
reaction(
() => {
sig.value;
return sig2.value;
},
() => {
console.log("reacted");
return () => {
console.log("reaction disposed");
};
},
{
memoize: true,
}
);
accessor
/setter
These functions act as wrapper creators for signals, offering a convenient way to separate reading and writing responsibilities.
resource
The resource
type binds a signal to a promise, including Preact Signals' reactivity. It can be retried, rejected, or resolved, offering a streamlined way to manage asynchronous operations.
const [resource, { refetch }] = createResource({
fetcher: async () => {
const response = await fetch("https://example.com");
return response.json();
},
});
return <Show when={resource}>{(result) => <div>{result()}</div>}</Show>;
createFlatStore
This function offers a simple store implementation, converting key values into signals on demand.
When deep reactivity API will be stable, possibly flat stores will be deprecated
const [store, setStore] = createFlatStore({
a: 1,
b: 2,
get c() {
return this.a + this.b;
},
});
const c = computed(() => store.a + store.b);
store.a = 2;
store.b = 3;
console.log(store.c);
console.log(c.value);
setStore({ a: 3, b: 4 });
console.log(c.value);
createFlatStoreOfSignals
This function wraps provided signals and value to flat store. You can pass computed's too and it will be readonly field
When deep reactivity API will be stable, possibly flat stores will be deprecated
const [store, setStore] = createFlatStoreOfSignals({
a: 1,
b: 2,
c: signal(10),
d: computed(() => 10),
get e() {
return this.a + this.b;
},
});
setStore({
a: 10,
b: 11,
c: 12,
});
setStore({
e: 10,
d: 10,
});
@preact-signals/utils/store
: Deep Reactivity
deepSignal
Takes an inner value and returns a reactive and mutable signal, with deepReactive inside of it.
const a = deepSignal({ a: 1, b: 2 });
const c = computed(() => a.value.a + a.value.b);
a.value = { a: 2, b: 3 };
console.log(c.value);
a.value.b = 4;
console.log(c.value);
Store API
Store API contains Vue-like API for deep reactivity. It's has one significant change: if reactive
wrapper is deep - it will be named with deep
prefix. So reacitve
becomes deepReactive
.
Vue | @preact-signals/utils/store |
---|
reactive | Store.deepReactive |
readonly | Store.deepReadonly |
shallowReadonly | Store.shallowReadonly |
shallowReactive | Store.shallowReactive |
isReactive | Store.isReactive |
isReadonly | Store.isReadonly |
isProxy | Store.isProxy |
toRaw | Store.toRaw |
markRaw | Store.markRaw |
To use Store API you should wrap your object with Store.deepReactive
or Store.shallowReactive
:
import { Store } from "@preact-signals/utils/store";
const a = Store.deepReactive({ a: 1, b: 2 });
const b = Store.shallowReactive({ a: 1, b: 2 });
const c = computed(() => a.value.a + a.value.b + b.value.a + b.value.b);
@preact-signals/utils/store/hooks
: Deep Reactivity Hooks
Exports hook which takes as first argument callback which will be applied on the first rended to create reactive
primitive.
useDeepSignal
Takes creator callback and returns a reactive and mutable signal, with deepReactive inside of it.
const a = useDeepSignal(() => ({ a: 1, b: 2 }));
There are also: useDeepReactive
, useShallowReactive
.
@preact-signals/utils/hooks
: Hooks for Signals
This entry provides hooks designed to work with signals, enhancing reactivity and composability in your components.
const a = useInitSignal(() => new Set());
const b = useComputedOnce(() => a.value.size);
useSignalEffectOnce(() => a.value.size);
const [store, setStore] = useFlatStore(() => ({
a: 1,
b: 2,
}));
const [store2, setStore2] = useFlatStoreOfSignals(() => ({
a: 1,
b: signal(10),
}));
const [resource, { refetch }] = useResource({
fetcher: async () => {
const response = await fetch("https://example.com");
return response.json();
},
});
useLinkedSignal
Creates signal that linked to value passed to hook, with unwrapping of signals to avoid .value.value
const s1 = useLinkedSignal(Math.random() > 0.5 ? 1 : 0);
console.log(s1.peek());
const s2 = useLinkedSignal(Math.random() > 0.5 ? signal(true) : false);
console.log(s2.peek());
const s3 = useLinkedSignal(signal(signal(signal(false))));
console.log(s3.peek());
@preact-signals/utils/components
: Reactive Components
This section includes components like Show
, Switch
, Match
, For
, allowing you to scope reactivity within your JSX. These components aid in writing more declarative and readable code.
All of this component works with reactive unit, which is Signal or Accessor callback
import { Show, For } from "@preact-signals/utils/components";
<Show fallback={<p>Loading...</p>} when={() => arr.value}>
{(data) => (
<ul>
<For each={data} keyExtractor={(item) => item.id}>
{(item) => <li>{renderItem(item)}</li>}
</For>
</ul>
)}
</Show>;
import { Switch, Match } from "@preact-signals/utils/components";
<Switch fallback={<p>Not found</p>}>
<Match when={() => route.value === "home"}>
<Home />
</Match>
<Match when={() => route.value === "about"}>
<About />
</Match>
<Match when={() => route.value === "users"}>
<Users />
</Match>
</Switch>;
@preact-signals/utils/hocs
: High Order Components (HOCs)
HOCs in this entry allow you to inject signals or uncached
instances into props, aiding in the creation of reusable and composable logic across various components.
Examples:
const View$ = withSignalProps(View);
const Text$ = withSignalProps(Text);
const a = signal(10);
const b = signal(5);
<View$ hitSlop={useComputed(() => a.value + b.value)} />;
<View$ hitSlop={$(() => a.value + b.value)} />;
reactifyLite
Makes you component truly reactive. Your props are will be use getter to signals under the hood. So you can safely pass it into effect or reactive component like Show
or Switch
without worries about tracking.
const Comp = (props: ReactiveProps<{ a: number }>) => (
<Show when={() => props.a > 10}>{(v) => v + 10}</Show>
);
const B = reactifyLite(Comp);
<B a={$(() => a.value + b.value)} />;
<C a$$={a.value + b.value} />;
Heavily inspired by:
License
@preact-signals/utils
is licensed under the MIT License, and you're free to use, modify, and distribute it under the terms outlined in the LICENSE file.