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

@captn/react

v0.24.0

Published

The `@captn/react` package includes a collection of React hooks that integrate with the Captain framework, simplifying common tasks such as handling actions, managing downloads, and interacting with a vector store directly from React components.

Downloads

1,941

Readme

@captn/react

The @captn/react package includes a collection of React hooks that integrate with the Captain framework, simplifying common tasks such as handling actions, managing downloads, and interacting with a vector store directly from React components.

Discord

Features

  • useCaptainAction: Automates the execution of actions like focus, click, and type on elements based on URL parameters.
  • useObject: Provides debounced object values to prevent excessive re-renders and ensure performance optimization.
  • useRequiredDownloads: Manages and tracks the status of required file downloads within an application.
  • useSDK: Facilitates inter-process communication (IPC) with an SDK or server backend from React components.
  • useVectorStore: Enables querying and interacting with a vector store for searching and retrieving data.

Installation

To add the @captn/react package to your project, run the following command:

npm install @captn/react

Or with Yarn:

yarn add @captn/react

Usage

useCaptainAction

This hook listens for changes in the URL's action query parameter and executes commands on elements identified by their data-captainid.

import { useCaptainAction } from '@captn/react';

// Component that uses the hook
function MyComponent() {
  useCaptainAction('click:submit-button'); // Automatically clicks the button with `data-captainid="submit-button"`
}

useObject

Debounces an object value to prevent excessive re-renders, useful for optimizing performance in components that rely on rapidly changing state.

import { useObject } from '@captn/react';

function MyComponent({ filterOptions }) {
  const debouncedFilterOptions = useObject(filterOptions);

  // Use debouncedFilterOptions for further processing or API calls
}

useRequiredDownloads

Manages downloads specified by the application, tracking progress and completion.

import { useRequiredDownloads } from '@captn/react';

function DownloadManager({ downloads }) {
  const {
    isCompleted,
    isDownloading,
    downloadCount,
    percent,
    download,
  } = useRequiredDownloads(downloads);

  // Trigger downloads
  useEffect(() => {
    if (!isCompleted) {
      download();
    }
  }, [isCompleted, download]);

  return (
    <div>
      {isDownloading && <p>Downloading: {percent}% completed</p>}
      {isCompleted && <p>All downloads completed!</p>}
    </div>
  );
}

useSDK

Enables components to communicate with an SDK or server using IPC mechanisms, handling both messages and file operations.

import { useSDK } from '@captn/react';

function App() {
  const { send, readFile, writeFile } = useSDK("myAppId", {
    onMessage: message => console.log("Received message:", message),
    onError: error => console.error("Error:", error),
  });

  const handleFileOperations = async () => {
    const filePath = await writeFile('test.txt', 'Hello SDK!', { encoding: 'utf8' });
    const content = await readFile(filePath, 'utf8');
    console.log('File content:', content);
  };

  return (
    <div>
      <button onClick={() => send({ action: "greet", payload: "Hello, SDK!" })}>
        Send Message
      </button>
      <button onClick={handleFileOperations}>
        Test File Operations
      </button>
    </div>
  );
}

useVectorStore

Provides real-time searching capabilities within a vector store, handling query debouncing and state management.

import { useVectorStore } from '@captn/react';

function SearchComponent({ query }) {
  const { data, error } = useVectorStore(query, { score_threshold: 0.5 });

  if (error) {
    return <div>Error: {error.message}</div>;
  }

  return (
    <ul>
      {data.map(item => (
        <li key={item.id}>{item.content}</li>
      ))}
    </ul>
  );
}

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

License

This project is licensed under the AGPL 3.0 License - see the LICENSE file for details.