panel.tsx 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. import type { FC } from 'react'
  2. import React 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='mt-2'>
  65. <div className='px-4 pb-4 space-y-4'>
  66. <Field
  67. title={t(`${i18nPrefix}.api`)}
  68. operations={
  69. <div className='flex'>
  70. <div
  71. onClick={showAuthorization}
  72. className={cn(!readOnly && 'cursor-pointer hover:bg-gray-50', 'flex items-center h-6 space-x-1 px-2 rounded-md ')}
  73. >
  74. {!readOnly && <Settings01 className='w-3 h-3 text-gray-500' />}
  75. <div className='text-xs font-medium text-gray-500'>
  76. {t(`${i18nPrefix}.authorization.authorization`)}
  77. <span className='ml-1 text-gray-700'>{t(`${i18nPrefix}.authorization.${inputs.authorization.type}`)}</span>
  78. </div>
  79. </div>
  80. <div
  81. onClick={showCurlPanel}
  82. className={cn(!readOnly && 'cursor-pointer hover:bg-gray-50', 'flex items-center h-6 space-x-1 px-2 rounded-md ')}
  83. >
  84. {!readOnly && <FileArrow01 className='w-3 h-3 text-gray-500' />}
  85. <div className='text-xs font-medium text-gray-500'>
  86. {t(`${i18nPrefix}.curl.title`)}
  87. </div>
  88. </div>
  89. </div>
  90. }
  91. >
  92. <ApiInput
  93. nodeId={id}
  94. readonly={readOnly}
  95. method={inputs.method}
  96. onMethodChange={handleMethodChange}
  97. url={inputs.url}
  98. onUrlChange={handleUrlChange}
  99. />
  100. </Field>
  101. <Field
  102. title={t(`${i18nPrefix}.headers`)}
  103. >
  104. <KeyValue
  105. nodeId={id}
  106. list={headers}
  107. onChange={setHeaders}
  108. onAdd={addHeader}
  109. readonly={readOnly}
  110. />
  111. </Field>
  112. <Field
  113. title={t(`${i18nPrefix}.params`)}
  114. >
  115. <KeyValue
  116. nodeId={id}
  117. list={params}
  118. onChange={setParams}
  119. onAdd={addParam}
  120. readonly={readOnly}
  121. />
  122. </Field>
  123. <Field
  124. title={t(`${i18nPrefix}.body`)}
  125. >
  126. <EditBody
  127. nodeId={id}
  128. readonly={readOnly}
  129. payload={inputs.body}
  130. onChange={setBody}
  131. />
  132. </Field>
  133. </div>
  134. <Split />
  135. <div className='px-4 pt-4 pb-4'>
  136. <Timeout
  137. nodeId={id}
  138. readonly={readOnly}
  139. payload={inputs.timeout}
  140. onChange={setTimeout}
  141. />
  142. </div>
  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='px-4 pt-4 pb-2'>
  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. onHide={hideSingleRun}
  183. forms={[
  184. {
  185. inputs: varInputs,
  186. values: inputVarValues,
  187. onChange: setInputVarValues,
  188. },
  189. ]}
  190. runningStatus={runningStatus}
  191. onRun={handleRun}
  192. onStop={handleStop}
  193. result={<ResultPanel {...runResult} showSteps={false} />}
  194. />
  195. )}
  196. {(isShowCurlPanel && !readOnly) && (
  197. <CurlPanel
  198. nodeId={id}
  199. isShow
  200. onHide={hideCurlPanel}
  201. handleCurlImport={handleCurlImport}
  202. />
  203. )}
  204. </div>
  205. )
  206. }
  207. export default React.memo(Panel)