You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. import type { FC } from 'react'
  2. import { memo } from 'react'
  3. import { useTranslation } from 'react-i18next'
  4. import useConfig from './use-config'
  5. import ApiInput from './components/api-input'
  6. import KeyValue from './components/key-value'
  7. import EditBody from './components/edit-body'
  8. import AuthorizationModal from './components/authorization'
  9. import type { HttpNodeType } from './types'
  10. import Timeout from './components/timeout'
  11. import CurlPanel from './components/curl-panel'
  12. import cn from '@/utils/classnames'
  13. import Field from '@/app/components/workflow/nodes/_base/components/field'
  14. import Split from '@/app/components/workflow/nodes/_base/components/split'
  15. import OutputVars, { VarItem } from '@/app/components/workflow/nodes/_base/components/output-vars'
  16. import { Settings01 } from '@/app/components/base/icons/src/vender/line/general'
  17. import { FileArrow01 } from '@/app/components/base/icons/src/vender/line/files'
  18. import type { NodePanelProps } from '@/app/components/workflow/types'
  19. import BeforeRunForm from '@/app/components/workflow/nodes/_base/components/before-run-form'
  20. import ResultPanel from '@/app/components/workflow/run/result-panel'
  21. const i18nPrefix = 'workflow.nodes.http'
  22. const Panel: FC<NodePanelProps<HttpNodeType>> = ({
  23. id,
  24. data,
  25. }) => {
  26. const { t } = useTranslation()
  27. const {
  28. readOnly,
  29. isDataReady,
  30. inputs,
  31. handleMethodChange,
  32. handleUrlChange,
  33. headers,
  34. setHeaders,
  35. addHeader,
  36. params,
  37. setParams,
  38. addParam,
  39. setBody,
  40. isShowAuthorization,
  41. showAuthorization,
  42. hideAuthorization,
  43. setAuthorization,
  44. setTimeout,
  45. // single run
  46. isShowSingleRun,
  47. hideSingleRun,
  48. runningStatus,
  49. handleRun,
  50. handleStop,
  51. varInputs,
  52. inputVarValues,
  53. setInputVarValues,
  54. runResult,
  55. isShowCurlPanel,
  56. showCurlPanel,
  57. hideCurlPanel,
  58. handleCurlImport,
  59. } = useConfig(id, data)
  60. // To prevent prompt editor in body not update data.
  61. if (!isDataReady)
  62. return null
  63. return (
  64. <div className='pt-2'>
  65. <div className='space-y-4 px-4 pb-4'>
  66. <Field
  67. title={t(`${i18nPrefix}.api`)}
  68. required
  69. operations={
  70. <div className='flex'>
  71. <div
  72. onClick={showAuthorization}
  73. className={cn(!readOnly && 'cursor-pointer hover:bg-state-base-hover', 'flex h-6 items-center space-x-1 rounded-md px-2 ')}
  74. >
  75. {!readOnly && <Settings01 className='h-3 w-3 text-text-tertiary' />}
  76. <div className='text-xs font-medium text-text-tertiary'>
  77. {t(`${i18nPrefix}.authorization.authorization`)}
  78. <span className='ml-1 text-text-secondary'>{t(`${i18nPrefix}.authorization.${inputs.authorization.type}`)}</span>
  79. </div>
  80. </div>
  81. <div
  82. onClick={showCurlPanel}
  83. className={cn(!readOnly && 'cursor-pointer hover:bg-state-base-hover', 'flex h-6 items-center space-x-1 rounded-md px-2 ')}
  84. >
  85. {!readOnly && <FileArrow01 className='h-3 w-3 text-text-tertiary' />}
  86. <div className='text-xs font-medium text-text-tertiary'>
  87. {t(`${i18nPrefix}.curl.title`)}
  88. </div>
  89. </div>
  90. </div>
  91. }
  92. >
  93. <ApiInput
  94. nodeId={id}
  95. readonly={readOnly}
  96. method={inputs.method}
  97. onMethodChange={handleMethodChange}
  98. url={inputs.url}
  99. onUrlChange={handleUrlChange}
  100. />
  101. </Field>
  102. <Field
  103. title={t(`${i18nPrefix}.headers`)}
  104. >
  105. <KeyValue
  106. nodeId={id}
  107. list={headers}
  108. onChange={setHeaders}
  109. onAdd={addHeader}
  110. readonly={readOnly}
  111. />
  112. </Field>
  113. <Field
  114. title={t(`${i18nPrefix}.params`)}
  115. >
  116. <KeyValue
  117. nodeId={id}
  118. list={params}
  119. onChange={setParams}
  120. onAdd={addParam}
  121. readonly={readOnly}
  122. />
  123. </Field>
  124. <Field
  125. title={t(`${i18nPrefix}.body`)}
  126. required
  127. >
  128. <EditBody
  129. nodeId={id}
  130. readonly={readOnly}
  131. payload={inputs.body}
  132. onChange={setBody}
  133. />
  134. </Field>
  135. </div>
  136. <Split />
  137. <Timeout
  138. nodeId={id}
  139. readonly={readOnly}
  140. payload={inputs.timeout}
  141. onChange={setTimeout}
  142. />
  143. {(isShowAuthorization && !readOnly) && (
  144. <AuthorizationModal
  145. nodeId={id}
  146. isShow
  147. onHide={hideAuthorization}
  148. payload={inputs.authorization}
  149. onChange={setAuthorization}
  150. />
  151. )}
  152. <Split />
  153. <div className=''>
  154. <OutputVars>
  155. <>
  156. <VarItem
  157. name='body'
  158. type='string'
  159. description={t(`${i18nPrefix}.outputVars.body`)}
  160. />
  161. <VarItem
  162. name='status_code'
  163. type='number'
  164. description={t(`${i18nPrefix}.outputVars.statusCode`)}
  165. />
  166. <VarItem
  167. name='headers'
  168. type='object'
  169. description={t(`${i18nPrefix}.outputVars.headers`)}
  170. />
  171. <VarItem
  172. name='files'
  173. type='Array[File]'
  174. description={t(`${i18nPrefix}.outputVars.files`)}
  175. />
  176. </>
  177. </OutputVars>
  178. </div>
  179. {isShowSingleRun && (
  180. <BeforeRunForm
  181. nodeName={inputs.title}
  182. nodeType={inputs.type}
  183. onHide={hideSingleRun}
  184. forms={[
  185. {
  186. inputs: varInputs,
  187. values: inputVarValues,
  188. onChange: setInputVarValues,
  189. },
  190. ]}
  191. runningStatus={runningStatus}
  192. onRun={handleRun}
  193. onStop={handleStop}
  194. result={<ResultPanel {...runResult} showSteps={false} />}
  195. />
  196. )}
  197. {(isShowCurlPanel && !readOnly) && (
  198. <CurlPanel
  199. nodeId={id}
  200. isShow
  201. onHide={hideCurlPanel}
  202. handleCurlImport={handleCurlImport}
  203. />
  204. )}
  205. </div>
  206. )
  207. }
  208. export default memo(Panel)