@aha-app/aha-develop-react

Common react patterns for Aha! develop

Usage no npm install needed!

<script type="module">
  import ahaAppAhaDevelopReact from 'https://cdn.skypack.dev/@aha-app/aha-develop-react';
</script>

README

React helper utilities for Aha! develop extensions

Install:

npm install @aha-app/aha-develop-react

or

yarn install @aha-app/aha-develop-react

Hooks

useAuth

Run a callback with authentication to an external service and return the data and/or the auth and loading state.

import { useAuth } from "@aha-app/aha-develop-react";

function LoadPullRequests(props) {
  const { loading, authed, data, fetchData } = useAuth(async (authData) => {
    const api = octokit.defaults({
      headers: { authorization: `token ${authData.token}` },
    });

    return await api(FETCH_PULL_REQUESTS_QUERY);
  });

  if (loading) {
    return <aha-spinner />;
  }

  if (!authed) {
    return <button onClick={fetchData}>Load pull requests</button>;
  }

  const pullRequests = data.map((pr, idx) => <PullRequest key={idx} pr={pr} />);

  return <ul>{pullRequests}</ul>;
}

In this example component the callback fetches the data from github. The callback will only be run if the user is authenticated with github. When the component loads it will check the authentication status. If they are not authenticated then authed will be false and the component can display a button to prompt the user to authenticate.

If loading is true then the user is authenticated and the data is being requested.

The component must be wrapped in an AuthProvider. This would usually be done at the root node:

import { AuthProvider } from "@aha-app/aha-develop-react";

aha.on("pullRequests", () => {
  return (
    <AuthProvider serviceName="github" serviceParameters={{ scope: "repo" }}>
      <App />
    </AuthProvider>
  );
});

Multiple services

It's possible to use multiple services in one extension with useAuth:

<AuthProvider serviceName="github">
  <AuthProvider serviceName="gitlab">
    <App />
  </AuthProvider>
</AuthProvider>
const { data, loading, authed, fetchData } = useAuth(fetchGitlabPrs, {
  serviceName: "gitlab",
});
const { data, loading, authed, fetchData } = useAuth(fetchGithubPrs, {
  serviceName: "github",
});

If no serviceName is provided then the first registered AuthProvider is used.

useOutsideAlerter

If there is a modal or popup component controlled by the extension then capturing mouse clicks outside the area of the popup can be tricky due to the shadowRoot container. This hook will set up a container aware event handler:

function Popup({ onClose }) {
  const popupEl = useRef(null);
  useOutsideAlerter(popupEl, () => onClose());

  return (
    <div ref={popupEl}>
      I'm a popup
      <button onClick={onClose}>Close</button>
    </div>
  );
}

The event defaults to "mousedown" and can be customised:

useOutsideAlerter(popupEl, onClose, { event: "mousemove" });