preact-pair
v1.1.14
Published
ποΈ Util to help with the paired hook pattern
Downloads
35
Maintainers
Readme
ποΈ Util to help with the paired hook pattern.
Usage
π¦ Node
Install preact-pair
as a dependency:
pnpm add preact-pair
# or
npm install preact-pair
# or
yarn add preact-pair
Import it and use it:
import { useState } from "preact";
import { pair } from "preact-pair";
const useCount = initialCount => {
const [count, setCount] = useState(initialCount);
return { onClick: () => setCount(count + 1), children: count };
};
const PairedCount = pair(useCount);
const Component = ({ array = [] }) => (
<ul>
{array.map(key => (
<PairedCount key={key}>
{usePairedCount => {
const props = usePairedCount(key);
return (
<li>
<button type="button" {...props} />
</li>
);
}}
</PairedCount>
))}
</ul>
);
π¦ Deno
Import preact-pair
using the npm:
prefix, and use it directly:
import { useState } from "npm:preact";
import { pair } from "npm:preact-pair";
const useCount = initialCount => {
const [count, setCount] = useState(initialCount);
return { onClick: () => setCount(count + 1), children: count };
};
const PairedCount = pair(useCount);
const Component = ({ array = [] }) => (
<ul>
{array.map(key => (
<PairedCount key={key}>
{usePairedCount => {
const props = usePairedCount(key);
return (
<li>
<button type="button" {...props} />
</li>
);
}}
</PairedCount>
))}
</ul>
);
π Browser
Import preact-pair
using esm.sh, and use it directly:
<script type="module">
import { h, useState } from "https://esm.sh/preact";
import { pair } from "https://esm.sh/preact-pair";
const useCount = initialCount => {
const [count, setCount] = useState(initialCount);
return { onClick: () => setCount(count + 1), children: count };
};
const PairedCount = pair(useCount);
const Component = ({ array = [] }) =>
h("ul", {
children: array.map(key =>
h(PairedCount, {
key,
children: usePairedCount => {
const props = usePairedCount(key);
return h("li", { children: h("button", props) });
},
}),
),
});
</script>
Useful links
- π Documentation: TypeDoc generated documentation.
- β³ Changelog: List of changes between versions.
- β Tests Coverage: Coveralls page with tests coverage.