conversation-variable-modal.tsx 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. 'use client'
  2. import React, { useCallback } from 'react'
  3. import { useMount } from 'ahooks'
  4. import { useTranslation } from 'react-i18next'
  5. import { capitalize } from 'lodash-es'
  6. import copy from 'copy-to-clipboard'
  7. import { RiCloseLine } from '@remixicon/react'
  8. import Modal from '@/app/components/base/modal'
  9. import { BubbleX } from '@/app/components/base/icons/src/vender/line/others'
  10. import CodeEditor from '@/app/components/workflow/nodes/_base/components/editor/code-editor'
  11. import {
  12. Clipboard,
  13. ClipboardCheck,
  14. } from '@/app/components/base/icons/src/vender/line/files'
  15. import { useStore } from '@/app/components/workflow/store'
  16. import type {
  17. ConversationVariable,
  18. } from '@/app/components/workflow/types'
  19. import { ChatVarType } from '@/app/components/workflow/panel/chat-variable-panel/type'
  20. import { CodeLanguage } from '@/app/components/workflow/nodes/code/types'
  21. import useTimestamp from '@/hooks/use-timestamp'
  22. import { fetchCurrentValueOfConversationVariable } from '@/service/workflow'
  23. import cn from '@/utils/classnames'
  24. export type Props = {
  25. conversationID: string
  26. onHide: () => void
  27. }
  28. const ConversationVariableModal = ({
  29. conversationID,
  30. onHide,
  31. }: Props) => {
  32. const { t } = useTranslation()
  33. const { formatTime } = useTimestamp()
  34. const varList = useStore(s => s.conversationVariables) as ConversationVariable[]
  35. const appID = useStore(s => s.appId)
  36. const [currentVar, setCurrentVar] = React.useState<ConversationVariable>(varList[0])
  37. const [latestValueMap, setLatestValueMap] = React.useState<Record<string, string>>({})
  38. const [latestValueTimestampMap, setLatestValueTimestampMap] = React.useState<Record<string, number>>({})
  39. const getChatVarLatestValues = useCallback(async () => {
  40. if (conversationID && varList.length > 0) {
  41. const res = await fetchCurrentValueOfConversationVariable({
  42. url: `/apps/${appID}/conversation-variables`,
  43. params: { conversation_id: conversationID },
  44. })
  45. if (res.data.length > 0) {
  46. const valueMap = res.data.reduce((acc: any, cur) => {
  47. acc[cur.id] = cur.value
  48. return acc
  49. }, {})
  50. setLatestValueMap(valueMap)
  51. const timestampMap = res.data.reduce((acc: any, cur) => {
  52. acc[cur.id] = cur.updated_at
  53. return acc
  54. }, {})
  55. setLatestValueTimestampMap(timestampMap)
  56. }
  57. }
  58. }, [appID, conversationID, varList.length])
  59. const [isCopied, setIsCopied] = React.useState(false)
  60. const handleCopy = useCallback(() => {
  61. copy(currentVar.value)
  62. setIsCopied(true)
  63. setTimeout(() => {
  64. setIsCopied(false)
  65. }, 2000)
  66. }, [currentVar.value])
  67. useMount(() => {
  68. getChatVarLatestValues()
  69. })
  70. return (
  71. <Modal
  72. isShow
  73. onClose={() => { }}
  74. className={cn('w-[920px] max-w-[920px] h-[640px] p-0')}
  75. >
  76. <div className='absolute right-4 top-4 p-2 cursor-pointer' onClick={onHide}>
  77. <RiCloseLine className='w-4 h-4 text-text-tertiary' />
  78. </div>
  79. <div className='w-full h-full flex'>
  80. {/* LEFT */}
  81. <div className='shrink-0 flex flex-col w-[224px] h-full bg-background-sidenav-bg border-r border-divider-burn'>
  82. <div className='shrink-0 pt-5 pl-5 pr-4 pb-3 text-text-primary system-xl-semibold'>{t('workflow.chatVariable.panelTitle')}</div>
  83. <div className='grow overflow-y-auto px-3 py-2'>
  84. {varList.map(chatVar => (
  85. <div key={chatVar.id} className={cn('group mb-0.5 p-2 flex items-center radius-md hover:bg-state-base-hover cursor-pointer', currentVar.id === chatVar.id && 'bg-state-base-hover')} onClick={() => setCurrentVar(chatVar)}>
  86. <BubbleX className={cn('shrink-0 mr-1 w-4 h-4 text-text-tertiary group-hover:text-util-colors-teal-teal-700', currentVar.id === chatVar.id && 'text-util-colors-teal-teal-700')} />
  87. <div title={chatVar.name} className={cn('text-text-tertiary system-sm-medium truncate group-hover:text-util-colors-teal-teal-700', currentVar.id === chatVar.id && 'text-util-colors-teal-teal-700')}>{chatVar.name}</div>
  88. </div>
  89. ))}
  90. </div>
  91. </div>
  92. {/* RIGHT */}
  93. <div className='grow flex flex-col w-0 h-full bg-components-panel-bg'>
  94. <div className='shrink-0 p-4 pb-2'>
  95. <div className='flex items-center gap-1 py-1'>
  96. <div className='text-text-primary system-xl-semibold'>{currentVar.name}</div>
  97. <div className='text-text-tertiary system-xs-medium'>{capitalize(currentVar.value_type)}</div>
  98. </div>
  99. </div>
  100. <div className='grow p-4 pt-2 flex flex-col h-0'>
  101. <div className='shrink-0 mb-2 flex items-center gap-2'>
  102. <div className='shrink-0 text-text-tertiary system-xs-medium-uppercase'>{t('workflow.chatVariable.storedContent').toLocaleUpperCase()}</div>
  103. <div className='grow h-[1px]' style={{
  104. background: 'linear-gradient(to right, rgba(16, 24, 40, 0.08) 0%, rgba(255, 255, 255) 100%)',
  105. }}></div>
  106. {latestValueTimestampMap[currentVar.id] && (
  107. <div className='shrink-0 text-text-tertiary system-xs-regular'>{t('workflow.chatVariable.updatedAt')}{formatTime(latestValueTimestampMap[currentVar.id], t('appLog.dateTimeFormat') as string)}</div>
  108. )}
  109. </div>
  110. <div className='grow overflow-y-auto'>
  111. {currentVar.value_type !== ChatVarType.Number && currentVar.value_type !== ChatVarType.String && (
  112. <div className='h-full flex flex-col bg-components-input-bg-normal rounded-lg px-2 pb-2'>
  113. <div className='shrink-0 flex justify-between items-center h-7 pt-1 pl-3 pr-2'>
  114. <div className='text-text-secondary system-xs-semibold'>JSON</div>
  115. <div className='flex items-center p-1'>
  116. {!isCopied
  117. ? (
  118. <Clipboard className='w-4 h-4 text-text-tertiary cursor-pointer' onClick={handleCopy} />
  119. )
  120. : (
  121. <ClipboardCheck className='w-4 h-4 text-text-tertiary' />
  122. )
  123. }
  124. </div>
  125. </div>
  126. <div className='grow pl-4'>
  127. <CodeEditor
  128. readOnly
  129. noWrapper
  130. isExpand
  131. language={CodeLanguage.json}
  132. value={latestValueMap[currentVar.id] || ''}
  133. isJSONStringifyBeauty
  134. />
  135. </div>
  136. </div>
  137. )}
  138. {(currentVar.value_type === ChatVarType.Number || currentVar.value_type === ChatVarType.String) && (
  139. <div className='h-full px-4 py-3 rounded-lg bg-components-input-bg-normal text-components-input-text-filled system-md-regular overflow-y-auto overflow-x-hidden'>{latestValueMap[currentVar.id] || ''}</div>
  140. )}
  141. </div>
  142. </div>
  143. </div>
  144. </div>
  145. </Modal>
  146. )
  147. }
  148. export default ConversationVariableModal