我们在 JIRA 问题视图屏幕上创建了一个问题面板。我们需要渲染的是问题键列表(通过 API 调用获取)。
这就是我们定义 Forge 库 manifest.yml 文件的方式:
modules:
jira:issuePanel:
- key: dylan-hello-world-app-hello-world-panel
function: main
title: Forge App by Dylan
icon: https://developer.atlassian.com/platform/forge/images/icons/issue-panel-icon.svg
trigger:
- key: issue-updated-trigger
events:
- avi:jira:updated:issue
function: issue-trigger-func
function:
- key: main
handler: index.run
- key: issue-trigger-func
handler: index.issueUpdatedTrigger
app:
id: our cloud app id
name: dylan-hello-world-app
permissions:
scopes:
- read:jira-work
我的 run() 函数执行面板的渲染部分(初始渲染)。
当问题更新事件发生时,将触发 issueUpdateTrigger(event, context) 函数。默认情况下,该函数会自动从 JIRA 接收事件和上下文参数。
在 issueUpdateTrigger 中,我们想通过传入上下文再次调用 API 以检索新的问题键列表并更新我们现有面板的上下文。我可以知道我们如何执行相关操作吗?
(我认为必须在索引文件中同时公开 run() 和 issueUpdatedTrigger() 函数,因为这是 Forge 读取函数的方式,因此这两个函数可能无法共享一个共同的祖先函数。)
感谢您的帮助,如果需要更多信息,请告诉我:D