Skip to content

Instantly share code, notes, and snippets.

@seivan
Created April 12, 2020 08:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seivan/e86c3a67bc85cbb1ce09b0ce15ddf048 to your computer and use it in GitHub Desktop.
Save seivan/e86c3a67bc85cbb1ce09b0ce15ddf048 to your computer and use it in GitHub Desktop.
mobx-react-hook
const WithJustAutoRun = React.memo((props: {
first: Todo;
second: Todo;
counter: number;
}) => {
const rendered = useObservation(() => {
return (
<div>
<h1>
Obs: {props.counter.toString() + props.first.completed.toString()}
</h1>
</div>
);
}, [props]);
return <div>{rendered}</div>;
})
const useObservation = (
render: () => JSX.Element,
dependencies: React.DependencyList = []
) => {
const ref = useRef<JSX.Element>();
const [tick, setTick] = useState(0);
useEffect(() => {
return autorun(() => {
ref.current = render();
setTick(tick + 1);
});
}, dependencies);
return ref.current;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment