npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@universal-stores/solid-adapter

v2.1.1

Published

A library that provides Solid Hooks for universal-stores.

Downloads

2

Readme

@universal-stores/solid-adapter

A library that provides Solid Hooks and Components for universal-stores (observable containers of values).

NPM Package

npm install universal-stores @universal-stores/solid-adapter

(note that you also need universal-stores, as that's a peer dependency of this package).

Documentation

Hooks

useStore

useStore is designed after createSignal. By calling this hook you'll get a tuple where the first element is the current value contained in the store and the second element is a setter/updater.

As you can see in the following example, the setter accepts both a new value and an update function.

import {makeStore} from 'universal-stores';
import {useStore} from '@universal-stores/solid-adapter';

const count$ = makeStore(0);

function MyComponent() {
	const [count, setCount] = useStore(count$);
	return (
		<>
			<h1>{count()}</h1>
			<button onClick={() => setCount((c) => c + 1)}>Increment</button>
			<button onClick={() => setCount(0)}>Reset</button>
			<button onClick={() => setCount((c) => c - 1)}>Decrement</button>
		</>
	);
}

useReadonlyStore

useReadonlyStore returns the value of a store. It can be used with both ReadonlyStores and Stores.

import {makeStore} from 'universal-stores';
import {useReadonlyStore} from '@universal-stores/solid-adapter';

const count$ = makeStore(0);

function Counter() {
	const count = useReadonlyStore(count$);
	return (
		<>
			<h1>{count()}</h1>
		</>
	);
}
import {makeReadonlyStore} from 'universal-stores';
import {useReadonlyStore} from '@universal-stores/solid-adapter';

// A lazy loaded readonly store that increments its value every second.
const autoCount$ = makeReadonlyStore<number>(undefined, (set) => {
	let count = 0;
	set(count);
	const intervalId = setInterval(() => {
		count++;
		set(count);
	}, 1000);
	return () => clearInterval(intervalId);
});

function Counter() {
	const count = useReadonlyStore(autoCount$);
	return (
		<>
			<h1>{count()}</h1>
		</>
	);
}

useReadonlyStores

useReadonlyStores can be used to observe multiple stores at once. It takes an object or an array of ReadonlyStores and/or Stores and returns an object or array of accessors to the values contained in them.

Example using an object:

import {makeStore} from 'universal-stores';
import {useReadonlyStores} from '@universal-stores/solid-adapter';

const firstNumber$ = makeStore(4);
const secondNumber$ = makeStore(2);

function Sum() {
	const {first, second} = useReadonlyStores({
		first: firstNumber$,
		second: secondNumber$,
	});
	return (
		<>
			<h1>{first() + second()}</h1>
		</>
	);
}

Example using an array:

import {makeStore} from 'universal-stores';
import {useReadonlyStores} from '@universal-stores/solid-adapter';

const firstNumber$ = makeStore(4);
const secondNumber$ = makeStore(2);

function Sum() {
	const [first, second] = useReadonlyStores([firstNumber$, secondNumber$]);
	return (
		<>
			<h1>{first() + second()}</h1>
		</>
	);
}

Components

If you only need the value of a store in a specific section of your JSX, you can use the following specialized component.

WithStore

Similar to useStore, it takes a Store<T> and a render prop as its children:

import {makeStore} from 'universal-stores';
import {WithStore} from '@universal-stores/solid-adapter';

const count$ = makeStore(0);

function Counter() {
	return (
		<WithStore store={count$}>
			{(count, setCount) => (
				<>
					<h1>Counter: {count}</h1>
					<button onClick={() => setCount((c) => c + 1)}>Increment</button>
					<button onClick={() => setCount(0)}>Reset</button>
					<button onClick={() => setCount((c) => c - 1)}>Decrement</button>
				</>
			)}
		</WithStore>
	);
}

WithReadonlyStore

Similar to useReadonlyStore, it takes a ReadonlyStore<T> (or a Store<T>) and a render prop as its children:

import {makeStore} from 'universal-stores';
import {WithReadonlyStore} from '@universal-stores/solid-adapter';

const count$ = makeStore(0);

function Counter() {
	return (
		<WithReadonlyStore store={count$}>
			{(count) => <h1>{count}</h1>}
		</WithReadonlyStore>
	);
}

WithReadonlyStores

Similar to useReadonlyStores, it takes a collection of ReadonlyStore<T>/Store<T> and a render prop as its children.

Example using an object:

import {makeStore} from 'universal-stores';
import {WithReadonlyStores} from '@universal-stores/solid-adapter';

const firstNumber$ = makeStore(4);
const secondNumber$ = makeStore(2);

function Sum() {
	return (
		<WithReadonlyStores stores={{first: firstNumber$, second: secondNumber$}}>
			{({first, second}) => <h1>{first + second}</h1>}
		</WithReadonlyStores>
	);
}

Example using an array:

import {makeStore} from 'universal-stores';
import {WithReadonlyStores} from '@universal-stores/solid-adapter';

const firstNumber$ = makeStore(4);
const secondNumber$ = makeStore(2);

function Sum() {
	return (
		<WithReadonlyStores stores={[firstNumber$, secondNumber$]}>
			{([firstNumber, secondNumber]) => <h1>{firstNumber + secondNumber}</h1>}
		</WithReadonlyStores>
	);
}