Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hook-component

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hook-component

Use react hooks in class components with render props

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

hook-component

Use react hooks in class components via render props

NPM

Why?

I have a recent project thats mostly using functional components, but there are a few classes here and there, and I want to create new hooks only APIs. With this I can use them in the few class components as well. I just wanted to put it out there to see if it makes sense.

Is this a good idea?

Not sure honestly. You tell me. It works decently well, and it's extremely ~~declarative~~. If you're not a fan of micro dependencies, you can just use this simplified snippet instead:

const Hook = ({ hook, args, children }) => children(hook(...args));

The module provides a little bit of TypeScript support. Type interference even gets pretty good with createHookComponent, except for hooks that rely on generics. It also covers some edge cases, like non functional or no children.

This doesn't make a lot of sense for most built in hooks, but for custom hooks that you create as abstractions for your app. It also works surprisingly well (and with good type support) when using createHookComponent with some third party packages like react-use and react-apollo-hooks (see example folder). I also think there's something to be said for <Effect/>.

Install

npm install --save hook-component

Usage

import React, { useState } from "react";

import Hook from "hook-component";

class CounterExample extends React.Component {
  render() {
    return (
      <Hook hook={useState} args={[0]}>
        {([count, setCount]) => (
          <button onClick={() => setCount(count => count + 1)}>{count}</button>
        )}
      </Hook>
    );
  }
}
import React, { useEffect } from "react";

import { createHookComponent } from "hook-component";

const Effect = createHookComponent(useEffect);

class TitleExample extends React.Component {
  render() {
    const { title } = this.props;
    return (
      <Effect
        args={[
          () => {
            document.title = title;
          },
          [title]
        ]}
      />
    );
  }
}

License

MIT © karlsander

Changelog

  • 0.1.1 Use React.ReactNode instead of JSX.Element type
  • 0.1.0 Hello World

FAQs

Package last updated on 17 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc