A proposal for interoperability of React-style hooks.
- React invented the hooks approach to functional components, but they are stuck in a framework-specific environment.
- Haunted has created a pure JS alternative to React
- Other frameworks (https://github.com/WebReflection/uland) also introduced hooks
If you're trying to write some composed state using the Hooks approach, you have to write to using one of these libraries implementation of useSate
but the useState
interface is actually generic and should be.
An interface and a swappable implementation that can be used to implement universal custom hooks on top of hooks
// universal-hooks.ts
const impl = {
current: undefined
};
export function setImplementation(newImpl){
impl.current = newImpl;
}
export function useState(newState){
if(!impl.current) throw new Error("Universal hooks `setImplementation` should be called before hooks are used");
return impl.current.useState(newState);
}
export function useEffect(cb,deps){
/// ... etc,
}
import {useState} from "universal-hooks"
function useQuery(){
const [data,setData] = useState(undefined);
}
An implementation can be provided at runtime. This is the most simple way to get started.
// index.js
import React from "React"
import {setImplementation} from "universal-hooks"
setImplementation(React);
Rollup, Webpack and other bundlers allow compile-time replacement of implementations.
E.g. with the Rollup alias
plugin https://github.com/rollup/plugins/tree/master/packages/alias
To swap in React
entries: [
{ find: 'universal-hooks', replacement: 'React' },
];
To swap in Haunted
entries: [
{ find: 'universal-hooks', replacement: 'haunted' },
];
- Discussion between
litelement
creator Justin Fagnani andhaunted
created Matthew P about sharing hooks matthewp/haunted#130