Questions tagged [atlassian-forge]

Use this tag for questions about the "Atlassian Forge" product from Atlassian that allows developers to build apps that integrate across Atlassian's products like Jira and Confluence.

This tag refers to the Atlassian Forge product from Atlassian that allows developers to build apps that integrate across Atlassian's products like Jira and Confluence.

#Resources

16 questions
2
votes
0 answers

How to Intercept requests in Atlassian Forge applications?

I am exploring on building Atlassian Forge apps in Jira Cloud. In order to intercept a request and then modify the response for that particular request, I was thinking of using Express JS as middleware. To try that out, I wrote a basic Express JS…
1
vote
1 answer

AWS API Gateway IAM Authorization - Generating signature using crypto.js

I am working on an app for Jira Cloud platform using forge framework. I created an HTTP endpoint using AWS API Gateway. This endpoint triggers a lambda function that does some operation on DynamoDB. I employed IAM authorization for the endpoint.…
1
vote
1 answer

How to update Forge UI Issue Panel with JIRA Issue update event listener function?

We have created an Issue panel on JIRA issue view screen. What we need to render is a list of issue keys (which fetched by an API call). This is how we define the Forge library manifest.yml file: modules: jira:issuePanel: - key:…
0
votes
0 answers

AWS - Fatal Error (backing_store) != nullptr

So basically I'm trying to use the AWS Location API to get the coordinates of a given address in an Atlassian Forge Environment. If I read it right, I should use the GetPlaceCommand function, so I tried to use it in my code, first of all I don't…
0
votes
0 answers

Atlassian Forge Form with createableselect does not show new element

I implement a form and I use the atlaskit. The form is implement follow: function App() { const [selection, setSelection] = useState({ domain: undefined, boundedContext: undefined, aggregate: undefined, event: undefined }) const…
Qeychon
  • 477
  • 1
  • 5
  • 15
0
votes
0 answers

Use a jira design system component in my hello world custom UI application when developping add-on for jira cloud

I generated a jira add-on app using Forge CLI. i created the hello-world application using custom UI mode with jira-global tempalte. i deployed and installed it and it worked like a charm. When i tried to get to the next step and use this component…
kamal
  • 1
  • 1
0
votes
0 answers

Atlassian Confluence Forge, trying to understand useState()

From the documentation of Atlassian Forge for Confluence, I am trying this to have a form with a value that can be set. Snippets: const [formState, setFormState] = useState( {depth: -1}); const onSubmit = async (formData) => { setFormState(…
gctwnl
  • 217
  • 1
  • 8
0
votes
0 answers

deploy app and Error: EMFILE: too many open files

I’m trying app deploy but I’ve problem: enter image description here Error: EMFILE: too many open files, open 'C:\Users\domin\AppData\Roaming\@forge\cli-nodejs\Config\config.json' I tried increase the limit on operations, update npm, update forge,…
0
votes
1 answer

Countdown is not updating even with SetInterval

I am trying to create a countdown forge application that takes an input of type date and starts counting based on the actual date. As an example, I am giving as input "After 3 days from now", But I only get as a result, 2d:23h:59m:59s , ans this…
mikasa acker
  • 137
  • 1
  • 1
  • 4
0
votes
0 answers

change state of view of custom component in Atlassian UI kit (with Forge)

I would like to set the state of a checkbox to true in a custom component for Atlassian Jira when a button is clicked. I am using the UI kit with Forge. So what do I have to write in the line // todo: check Checkbox "V2"? import ForgeUI, {…
user1027167
  • 4,320
  • 6
  • 33
  • 40
0
votes
1 answer

Express JS in Altassian Forge causing "process.cwd is not a function" error

I am new to development on Jira Cloud and am currently exploring creating apps using the Atlassian Forge. I was trying to use Express JS in the code as a middleware. Turns out that during deployment, it keeps giving this error "process.cwd is not a…
0
votes
0 answers

Recursive function freezing, Jira Forge app

I am trying to do: pull 50 rows from third party API create payloads for issues create issues (bulk) back to step 1. until I pulled all rows from third party API. Code: /** * Create Jira Issues * * @param configuration * @param assetType *…
user2994290
  • 329
  • 4
  • 13
0
votes
1 answer

Can I return a value from an Atlassian Forge resolver to a custom UI written in Vue?

I have an Atlassian forge resolver import Resolver from '@forge/resolver' const resolver = new Resolver() resolver.define('getIssueKey', ({context}) => { const jiraKey = context.extension.issue.key console.info(`Returning jira key…
RodP
  • 382
  • 2
  • 12
0
votes
1 answer

Forge UI - how do I create a hook to update a state property?

I'm trying to set a state property by using a Forge UI kit hook, like this: const sortOrder [orderBy, setSortOrder] = useAction( ( currentSortOrder, nextSortOrder: string ) => nextSortOrder, "word"); Forge UI hooks work in a similar way to…
Izzy
  • 193
  • 16
0
votes
0 answers

Open a Modal Dialog when issue is Done

I’m just starting with Forge and JIRA apps development, I need to open a ModalDialog when an issue changes its state to “Done” (either by dragging it to the Done column or by changing its status in the issue panel). I don’t know where to start, I…
Joaquín L. Robles
  • 6,261
  • 10
  • 66
  • 96
1
2