Feat: frontend support timezone of timestamp (#4070)

This commit is contained in:
KVOJJJin
2024-05-04 16:15:32 +08:00
committed by GitHub
parent f68b6b0e5e
commit c0476c7881
15 changed files with 88 additions and 58 deletions

View File

@@ -6,7 +6,6 @@ import {
} from 'react'
import { useTranslation } from 'react-i18next'
import { produce, setAutoFreeze } from 'immer'
import dayjs from 'dayjs'
import type {
ChatConfig,
ChatItem,
@@ -20,6 +19,7 @@ import { ssePost } from '@/service/base'
import { replaceStringWithValues } from '@/app/components/app/configuration/prompt-value-panel'
import type { Annotation } from '@/models/log'
import { WorkflowRunningStatus } from '@/app/components/workflow/types'
import useTimestamp from '@/hooks/use-timestamp'
type GetAbortController = (abortController: AbortController) => void
type SendCallback = {
@@ -78,6 +78,7 @@ export const useChat = (
stopChat?: (taskId: string) => void,
) => {
const { t } = useTranslation()
const { formatTime } = useTimestamp()
const { notify } = useToastContext()
const connversationId = useRef('')
const hasStopResponded = useRef(false)
@@ -336,7 +337,7 @@ export const useChat = (
: []),
],
more: {
time: dayjs.unix(newResponseItem.created_at).format('hh:mm A'),
time: formatTime(newResponseItem.created_at, 'hh:mm A'),
tokens: newResponseItem.answer_tokens + newResponseItem.message_tokens,
latency: newResponseItem.provider_response_latency.toFixed(2),
},
@@ -498,6 +499,7 @@ export const useChat = (
promptVariablesConfig,
handleUpdateChatList,
handleResponding,
formatTime,
])
const handleAnnotationEdited = useCallback((query: string, answer: string, index: number) => {