panel.tsx 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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='pt-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. <Timeout
  136. nodeId={id}
  137. readonly={readOnly}
  138. payload={inputs.timeout}
  139. onChange={setTimeout}
  140. />
  141. {(isShowAuthorization && !readOnly) && (
  142. <AuthorizationModal
  143. nodeId={id}
  144. isShow
  145. onHide={hideAuthorization}
  146. payload={inputs.authorization}
  147. onChange={setAuthorization}
  148. />
  149. )}
  150. <Split />
  151. <div className=''>
  152. <OutputVars>
  153. <>
  154. <VarItem
  155. name='body'
  156. type='string'
  157. description={t(`${i18nPrefix}.outputVars.body`)}
  158. />
  159. <VarItem
  160. name='status_code'
  161. type='number'
  162. description={t(`${i18nPrefix}.outputVars.statusCode`)}
  163. />
  164. <VarItem
  165. name='headers'
  166. type='object'
  167. description={t(`${i18nPrefix}.outputVars.headers`)}
  168. />
  169. <VarItem
  170. name='files'
  171. type='Array[File]'
  172. description={t(`${i18nPrefix}.outputVars.files`)}
  173. />
  174. </>
  175. </OutputVars>
  176. </div>
  177. {isShowSingleRun && (
  178. <BeforeRunForm
  179. nodeName={inputs.title}
  180. onHide={hideSingleRun}
  181. forms={[
  182. {
  183. inputs: varInputs,
  184. values: inputVarValues,
  185. onChange: setInputVarValues,
  186. },
  187. ]}
  188. runningStatus={runningStatus}
  189. onRun={handleRun}
  190. onStop={handleStop}
  191. result={<ResultPanel {...runResult} showSteps={false} />}
  192. />
  193. )}
  194. {(isShowCurlPanel && !readOnly) && (
  195. <CurlPanel
  196. nodeId={id}
  197. isShow
  198. onHide={hideCurlPanel}
  199. handleCurlImport={handleCurlImport}
  200. />
  201. )}
  202. </div>
  203. )
  204. }
  205. export default React.memo(Panel)