|
|
|
@ -18,9 +18,10 @@ const queryDateFormat = 'YYYY-MM-DD HH:mm'
|
|
|
|
|
|
|
|
|
|
|
|
export type IChartViewProps = {
|
|
|
|
export type IChartViewProps = {
|
|
|
|
appId: string
|
|
|
|
appId: string
|
|
|
|
|
|
|
|
headerRight: React.ReactNode
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default function ChartView({ appId }: IChartViewProps) {
|
|
|
|
export default function ChartView({ appId, headerRight }: IChartViewProps) {
|
|
|
|
const { t } = useTranslation()
|
|
|
|
const { t } = useTranslation()
|
|
|
|
const appDetail = useAppStore(state => state.appDetail)
|
|
|
|
const appDetail = useAppStore(state => state.appDetail)
|
|
|
|
const isChatApp = appDetail?.mode !== 'completion' && appDetail?.mode !== 'workflow'
|
|
|
|
const isChatApp = appDetail?.mode !== 'completion' && appDetail?.mode !== 'workflow'
|
|
|
|
@ -46,7 +47,8 @@ export default function ChartView({ appId }: IChartViewProps) {
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<div className='system-xl-semibold mb-4 mt-8 flex flex-row items-center text-text-primary'>
|
|
|
|
<div className='mb-4 flex items-center justify-between'>
|
|
|
|
|
|
|
|
<div className='system-xl-semibold flex flex-row items-center text-text-primary'>
|
|
|
|
<span className='mr-3'>{t('appOverview.analysis.title')}</span>
|
|
|
|
<span className='mr-3'>{t('appOverview.analysis.title')}</span>
|
|
|
|
<SimpleSelect
|
|
|
|
<SimpleSelect
|
|
|
|
items={Object.entries(TIME_PERIOD_MAPPING).map(([k, v]) => ({ value: k, name: t(`appLog.filter.period.${v.name}`) }))}
|
|
|
|
items={Object.entries(TIME_PERIOD_MAPPING).map(([k, v]) => ({ value: k, name: t(`appLog.filter.period.${v.name}`) }))}
|
|
|
|
@ -60,6 +62,8 @@ export default function ChartView({ appId }: IChartViewProps) {
|
|
|
|
defaultValue={'2'}
|
|
|
|
defaultValue={'2'}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{headerRight}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{!isWorkflow && (
|
|
|
|
{!isWorkflow && (
|
|
|
|
<div className='mb-6 grid w-full grid-cols-1 gap-6 xl:grid-cols-2'>
|
|
|
|
<div className='mb-6 grid w-full grid-cols-1 gap-6 xl:grid-cols-2'>
|
|
|
|
<ConversationsChart period={period} id={appId} />
|
|
|
|
<ConversationsChart period={period} id={appId} />
|
|
|
|
|