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

@finesoftware/react-forge-jira

v1.0.5

Published

`@finesoftware/react-forge-jira` is a fully typed abstraction around various [Atlassian Forge](https://developer.atlassian.com/platform/forge/) capabilities, for React. It is part of the [Forge Dev Kit](https://fine.software/forge-dev-kit).

Downloads

88

Readme

react-forge-jira

@finesoftware/react-forge-jira is a fully typed abstraction around various Atlassian Forge capabilities, for React. It is part of the Forge Dev Kit.

Hook-based Jira API

@finesoftware/react-forge-jira provides a Hook-based abstraction around @finesoftware/forge-jira-api. E.g., the issues of fix version v1 can be loaded like so:

import { useContext } from '@finesoftware/react-forge-jira`;

export default () => {
    const { data: issues, error } = useIssues({ jql: 'fixVersion = v1' });

    if (!issues) {
        return <span>Loading...</span>;
    }

    return <span>{issues.issues.length} issues found</span>;
}

This API is based on SWR. All SWR options (except for fetcher) can be passed as an optional second argument, e.g. like so:

useIssues({ jql: 'fixVersion = v1' }, { shouldRetryOnError: false  });

In addition to the standard SWR options, a skip flag can be provided to enable conditional fetching.

useIssues({ jql: 'fixVersion = v1' }, { skip: true  });

Please refer to the SWR documentation for the full API reference and usage patterns.

The following requests are current available:

  • useBulkPermissions (based on getBulkPermissions)
  • useConfiguration (based on getConfiguration)
  • useCreateIssueMetadata (based on getCreateIssueMetadata)
  • useFields (based on getFields)
  • useGroups (based on findGroups)
  • useGroupsInBulk (based on getGroupsInBulk)
  • useIssue (based on getIssue)
  • useIssueLink (based on getIssueLink)
  • useIssueLinkType (based on getIssueLinkType)
  • useIssueLinkTypes (based on getIssueLinkTypes)
  • useIssueProperty (based on getIssueProperty)
  • useIssues (based on searchIssues)
  • useIssueTypes (based on getIssueTypes)
  • useMyPermissions (based on getMyPermissions)
  • usePriorities (based on getPriorities)
  • usePriority (based on getPriority)
  • useProject (based on getProject)
  • useProjectComponents (based on getProjectComponents)
  • useProjectProperties (based on getProjectProperties)
  • useProjectProperty (based on getProjectProperty)
  • useProjects (based on findProjects)
  • useProjectVersions (based on getProjectVersions)
  • useTransitions (based on getTransitions)
  • useUser (based on getUser)
  • useUserProperties (based on getUserProperties)
  • useUserProperty (based on getUserProperty)
  • useUsers (based on findUsers)
  • useUsersAndGroups (based on findUsersAndGroups)
  • useUsersAssignableToIssues (based on findUsersAssignableToIssue)

The above list of requests is not complete, however more requests will be added in the future. If you require additional requests (or find a bug), please raise an issue against the Forge Dev Kit.