Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵月辉
/
fastgpt-migrated
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
32395346
authored
Jul 22, 2023
by
archer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf: phone ui
parent
f5fad608
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
31 deletions
+42
-31
client/src/constants/theme.ts
+3
-1
client/src/pages/app/detail/components/BasicEdit/index.tsx
+19
-16
client/src/pages/app/detail/components/KBSelectModal.tsx
+17
-11
client/src/pages/app/detail/components/OverView.tsx
+3
-3
No files found.
client/src/constants/theme.ts
View file @
32395346
...
@@ -17,7 +17,9 @@ const { definePartsStyle: numInputPart, defineMultiStyleConfig: numInputMultiSty
...
@@ -17,7 +17,9 @@ const { definePartsStyle: numInputPart, defineMultiStyleConfig: numInputMultiSty
// modal 弹窗
// modal 弹窗
const
ModalTheme
=
defineMultiStyleConfig
({
const
ModalTheme
=
defineMultiStyleConfig
({
baseStyle
:
definePartsStyle
({
baseStyle
:
definePartsStyle
({
dialog
:
{}
dialog
:
{
maxW
:
'90vw'
}
})
})
});
});
...
...
client/src/pages/app/detail/components/BasicEdit/index.tsx
View file @
32395346
...
@@ -21,6 +21,7 @@ import { useUserStore } from '@/store/user';
...
@@ -21,6 +21,7 @@ import { useUserStore } from '@/store/user';
import
{
useQuery
}
from
'@tanstack/react-query'
;
import
{
useQuery
}
from
'@tanstack/react-query'
;
import
{
QuestionOutlineIcon
,
SmallAddIcon
}
from
'@chakra-ui/icons'
;
import
{
QuestionOutlineIcon
,
SmallAddIcon
}
from
'@chakra-ui/icons'
;
import
{
useForm
,
useFieldArray
}
from
'react-hook-form'
;
import
{
useForm
,
useFieldArray
}
from
'react-hook-form'
;
import
{
useGlobalStore
}
from
'@/store/global'
;
import
{
import
{
appModules2Form
,
appModules2Form
,
getDefaultAppForm
,
getDefaultAppForm
,
...
@@ -59,6 +60,7 @@ const VariableEditModal = dynamic(() => import('../VariableEditModal'));
...
@@ -59,6 +60,7 @@ const VariableEditModal = dynamic(() => import('../VariableEditModal'));
const
Settings
=
({
appId
}:
{
appId
:
string
})
=>
{
const
Settings
=
({
appId
}:
{
appId
:
string
})
=>
{
const
theme
=
useTheme
();
const
theme
=
useTheme
();
const
{
appDetail
,
updateAppDetail
,
loadKbList
,
myKbList
}
=
useUserStore
();
const
{
appDetail
,
updateAppDetail
,
loadKbList
,
myKbList
}
=
useUserStore
();
const
{
isPc
}
=
useGlobalStore
();
const
[
editVariable
,
setEditVariable
]
=
useState
<
VariableItemType
>
();
const
[
editVariable
,
setEditVariable
]
=
useState
<
VariableItemType
>
();
...
@@ -153,9 +155,15 @@ const Settings = ({ appId }: { appId: string }) => {
...
@@ -153,9 +155,15 @@ const Settings = ({ appId }: { appId: string }) => {
bg
:
'myGray.200'
bg
:
'myGray.200'
}
}
};
};
const
LabelStyles
:
BoxProps
=
{
w
:
[
'60px'
,
'100px'
],
flexShrink
:
0
,
fontSize
:
[
'sm'
,
'md'
]
};
return
(
return
(
<
Flex
<
Box
display=
{
[
'block'
,
'flex'
]
}
flexDirection=
{
'column'
}
flexDirection=
{
'column'
}
h=
{
'100%'
}
h=
{
'100%'
}
borderRight=
{
'1.5px solid'
}
borderRight=
{
'1.5px solid'
}
...
@@ -163,7 +171,7 @@ const Settings = ({ appId }: { appId: string }) => {
...
@@ -163,7 +171,7 @@ const Settings = ({ appId }: { appId: string }) => {
pt=
{
4
}
pt=
{
4
}
pl=
{
4
}
pl=
{
4
}
>
>
<
Flex
overflowY=
{
'auto'
}
pr=
{
4
}
justifyContent=
{
'space-between'
}
>
<
Flex
pr=
{
4
}
justifyContent=
{
'space-between'
}
>
<
Box
fontSize=
{
[
'md'
,
'xl'
]
}
fontWeight=
{
'bold'
}
>
<
Box
fontSize=
{
[
'md'
,
'xl'
]
}
fontWeight=
{
'bold'
}
>
应用配置
应用配置
<
MyTooltip
label=
{
'仅包含基础功能,复杂 agent 功能请使用高级编排。'
}
>
<
MyTooltip
label=
{
'仅包含基础功能,复杂 agent 功能请使用高级编排。'
}
>
...
@@ -175,7 +183,7 @@ const Settings = ({ appId }: { appId: string }) => {
...
@@ -175,7 +183,7 @@ const Settings = ({ appId }: { appId: string }) => {
fontSize=
{
'sm'
}
fontSize=
{
'sm'
}
onClick=
{
openConfirm
(
handleSubmit
((
data
)
=>
onSubmitSave
(
data
)))
}
onClick=
{
openConfirm
(
handleSubmit
((
data
)
=>
onSubmitSave
(
data
)))
}
>
>
保存并预览
{
isPc
?
'保存并预览'
:
'保存'
}
</
Button
>
</
Button
>
</
Flex
>
</
Flex
>
<
Box
flex=
{
'1 0 0'
}
my=
{
4
}
pr=
{
4
}
overflowY=
{
'auto'
}
>
<
Box
flex=
{
'1 0 0'
}
my=
{
4
}
pr=
{
4
}
overflowY=
{
'auto'
}
>
...
@@ -243,9 +251,7 @@ const Settings = ({ appId }: { appId: string }) => {
...
@@ -243,9 +251,7 @@ const Settings = ({ appId }: { appId: string }) => {
</
Flex
>
</
Flex
>
<
Flex
alignItems=
{
'center'
}
mt=
{
5
}
>
<
Flex
alignItems=
{
'center'
}
mt=
{
5
}
>
<
Box
w=
{
[
'60px'
,
'100px'
]
}
flexShrink=
{
0
}
>
<
Box
{
...
LabelStyles
}
>
对话模型
</
Box
>
对话模型
</
Box
>
<
MySelect
<
MySelect
width=
{
[
'100%'
,
'300px'
]
}
width=
{
[
'100%'
,
'300px'
]
}
value=
{
getValues
(
'chatModel.model'
)
}
value=
{
getValues
(
'chatModel.model'
)
}
...
@@ -262,9 +268,7 @@ const Settings = ({ appId }: { appId: string }) => {
...
@@ -262,9 +268,7 @@ const Settings = ({ appId }: { appId: string }) => {
/>
/>
</
Flex
>
</
Flex
>
<
Flex
alignItems=
{
'center'
}
my=
{
10
}
>
<
Flex
alignItems=
{
'center'
}
my=
{
10
}
>
<
Box
w=
{
[
'60px'
,
'100px'
]
}
flexShrink=
{
0
}
>
<
Box
{
...
LabelStyles
}
>
温度
</
Box
>
温度
</
Box
>
<
Box
flex=
{
1
}
ml=
{
'10px'
}
>
<
Box
flex=
{
1
}
ml=
{
'10px'
}
>
<
MySlider
<
MySlider
markList=
{
[
markList=
{
[
...
@@ -283,9 +287,7 @@ const Settings = ({ appId }: { appId: string }) => {
...
@@ -283,9 +287,7 @@ const Settings = ({ appId }: { appId: string }) => {
</
Box
>
</
Box
>
</
Flex
>
</
Flex
>
<
Flex
alignItems=
{
'center'
}
mt=
{
12
}
mb=
{
10
}
>
<
Flex
alignItems=
{
'center'
}
mt=
{
12
}
mb=
{
10
}
>
<
Box
w=
{
[
'60px'
,
'100px'
]
}
flexShrink=
{
0
}
>
<
Box
{
...
LabelStyles
}
>
回复上限
</
Box
>
回复上限
</
Box
>
<
Box
flex=
{
1
}
ml=
{
'10px'
}
>
<
Box
flex=
{
1
}
ml=
{
'10px'
}
>
<
MySlider
<
MySlider
markList=
{
[
markList=
{
[
...
@@ -305,7 +307,7 @@ const Settings = ({ appId }: { appId: string }) => {
...
@@ -305,7 +307,7 @@ const Settings = ({ appId }: { appId: string }) => {
</
Box
>
</
Box
>
</
Flex
>
</
Flex
>
<
Flex
mt=
{
10
}
alignItems=
{
'flex-start'
}
>
<
Flex
mt=
{
10
}
alignItems=
{
'flex-start'
}
>
<
Box
w=
{
[
'60px'
,
'100px'
]
}
flexShrink=
{
0
}
>
<
Box
{
...
LabelStyles
}
>
提示词
提示词
<
MyTooltip
label=
{
ChatModelSystemTip
}
>
<
MyTooltip
label=
{
ChatModelSystemTip
}
>
<
QuestionOutlineIcon
display=
{
[
'none'
,
'inline'
]
}
ml=
{
1
}
/>
<
QuestionOutlineIcon
display=
{
[
'none'
,
'inline'
]
}
ml=
{
1
}
/>
...
@@ -319,7 +321,7 @@ const Settings = ({ appId }: { appId: string }) => {
...
@@ -319,7 +321,7 @@ const Settings = ({ appId }: { appId: string }) => {
></
Textarea
>
></
Textarea
>
</
Flex
>
</
Flex
>
<
Flex
mt=
{
5
}
alignItems=
{
'flex-start'
}
>
<
Flex
mt=
{
5
}
alignItems=
{
'flex-start'
}
>
<
Box
w=
{
[
'60px'
,
'100px'
]
}
flexShrink=
{
0
}
>
<
Box
{
...
LabelStyles
}
>
限定词
限定词
<
MyTooltip
label=
{
ChatModelLimitTip
}
>
<
MyTooltip
label=
{
ChatModelLimitTip
}
>
<
QuestionOutlineIcon
display=
{
[
'none'
,
'inline'
]
}
ml=
{
1
}
/>
<
QuestionOutlineIcon
display=
{
[
'none'
,
'inline'
]
}
ml=
{
1
}
/>
...
@@ -434,7 +436,7 @@ const Settings = ({ appId }: { appId: string }) => {
...
@@ -434,7 +436,7 @@ const Settings = ({ appId }: { appId: string }) => {
}
}
}
}
/>
/>
)
}
)
}
</
Fle
x
>
</
Bo
x
>
);
);
};
};
...
@@ -517,10 +519,11 @@ const ChatTest = ({ appId }: { appId: string }) => {
...
@@ -517,10 +519,11 @@ const ChatTest = ({ appId }: { appId: string }) => {
};
};
const
BasicEdit
=
({
appId
}:
{
appId
:
string
})
=>
{
const
BasicEdit
=
({
appId
}:
{
appId
:
string
})
=>
{
const
{
isPc
}
=
useGlobalStore
();
return
(
return
(
<
Grid
gridTemplateColumns=
{
[
'1fr'
,
'550px 1fr'
]
}
h=
{
'100%'
}
>
<
Grid
gridTemplateColumns=
{
[
'1fr'
,
'550px 1fr'
]
}
h=
{
'100%'
}
>
<
Settings
appId=
{
appId
}
/>
<
Settings
appId=
{
appId
}
/>
<
ChatTest
appId=
{
appId
}
/>
{
isPc
&&
<
ChatTest
appId=
{
appId
}
/>
}
</
Grid
>
</
Grid
>
);
);
};
};
...
...
client/src/pages/app/detail/components/KBSelectModal.tsx
View file @
32395346
...
@@ -17,10 +17,11 @@ import {
...
@@ -17,10 +17,11 @@ import {
import
Avatar
from
'@/components/Avatar'
;
import
Avatar
from
'@/components/Avatar'
;
import
{
KbListItemType
}
from
'@/types/plugin'
;
import
{
KbListItemType
}
from
'@/types/plugin'
;
import
{
useForm
}
from
'react-hook-form'
;
import
{
useForm
}
from
'react-hook-form'
;
import
MyTooltip
from
'@/components/MyTooltip'
;
import
{
QuestionOutlineIcon
}
from
'@chakra-ui/icons'
;
import
{
QuestionOutlineIcon
}
from
'@chakra-ui/icons'
;
import
type
{
SelectedKbType
}
from
'@/types/plugin'
;
import
type
{
SelectedKbType
}
from
'@/types/plugin'
;
import
{
useGlobalStore
}
from
'@/store/global'
;
import
MySlider
from
'@/components/Slider'
;
import
MySlider
from
'@/components/Slider'
;
import
MyTooltip
from
'@/components/MyTooltip'
;
export
type
KbParamsType
=
{
export
type
KbParamsType
=
{
searchSimilarity
:
number
;
searchSimilarity
:
number
;
...
@@ -41,9 +42,10 @@ export const KBSelectModal = ({
...
@@ -41,9 +42,10 @@ export const KBSelectModal = ({
})
=>
{
})
=>
{
const
theme
=
useTheme
();
const
theme
=
useTheme
();
const
[
selectedKbList
,
setSelectedKbList
]
=
useState
<
SelectedKbType
>
(
activeKbs
);
const
[
selectedKbList
,
setSelectedKbList
]
=
useState
<
SelectedKbType
>
(
activeKbs
);
const
{
isPc
}
=
useGlobalStore
();
return
(
return
(
<
Modal
isOpen=
{
true
}
onClose=
{
onClose
}
>
<
Modal
isOpen=
{
true
}
isCentered=
{
!
isPc
}
onClose=
{
onClose
}
>
<
ModalOverlay
/>
<
ModalOverlay
/>
<
ModalContent
<
ModalContent
display=
{
'flex'
}
display=
{
'flex'
}
...
@@ -141,8 +143,8 @@ export const KbParamsModal = ({
...
@@ -141,8 +143,8 @@ export const KbParamsModal = ({
<
ModalHeader
>
搜索参数调整
</
ModalHeader
>
<
ModalHeader
>
搜索参数调整
</
ModalHeader
>
<
ModalCloseButton
/>
<
ModalCloseButton
/>
<
ModalBody
>
<
ModalBody
>
<
Flex
pt=
{
3
}
pb=
{
5
}
>
<
Box
display=
{
[
'block'
,
'flex'
]
}
pt=
{
3
}
pb=
{
5
}
>
<
Box
flex=
{
'0 0 100px'
}
>
<
Box
flex=
{
'0 0 100px'
}
mb=
{
[
8
,
0
]
}
>
相似度
相似度
<
MyTooltip
label=
{
'高相似度推荐0.8及以上。'
}
>
<
MyTooltip
label=
{
'高相似度推荐0.8及以上。'
}
>
<
QuestionOutlineIcon
ml=
{
1
}
/>
<
QuestionOutlineIcon
ml=
{
1
}
/>
...
@@ -162,9 +164,11 @@ export const KbParamsModal = ({
...
@@ -162,9 +164,11 @@ export const KbParamsModal = ({
setRefresh
(
!
refresh
);
setRefresh
(
!
refresh
);
}
}
}
}
/>
/>
</
Flex
>
</
Box
>
<
Flex
py=
{
8
}
>
<
Box
display=
{
[
'block'
,
'flex'
]
}
py=
{
8
}
>
<
Box
flex=
{
'0 0 100px'
}
>
单次搜索数量
</
Box
>
<
Box
flex=
{
'0 0 100px'
}
mb=
{
[
8
,
0
]
}
>
单次搜索数量
</
Box
>
<
Box
flex=
{
1
}
>
<
Box
flex=
{
1
}
>
<
MySlider
<
MySlider
markList=
{
[
markList=
{
[
...
@@ -180,9 +184,11 @@ export const KbParamsModal = ({
...
@@ -180,9 +184,11 @@ export const KbParamsModal = ({
}
}
}
}
/>
/>
</
Box
>
</
Box
>
</
Flex
>
</
Box
>
<
Flex
pt=
{
3
}
>
<
Box
display=
{
[
'block'
,
'flex'
]
}
pt=
{
3
}
>
<
Box
flex=
{
'0 0 100px'
}
>
空搜索回复
</
Box
>
<
Box
flex=
{
'0 0 100px'
}
mb=
{
[
2
,
0
]
}
>
空搜索回复
</
Box
>
<
Box
flex=
{
1
}
>
<
Box
flex=
{
1
}
>
<
Textarea
<
Textarea
rows=
{
5
}
rows=
{
5
}
...
@@ -193,7 +199,7 @@ export const KbParamsModal = ({
...
@@ -193,7 +199,7 @@ export const KbParamsModal = ({
{
...
register
('
searchEmptyText
')}
{
...
register
('
searchEmptyText
')}
></
Textarea
>
></
Textarea
>
</
Box
>
</
Box
>
</
Fle
x
>
</
Bo
x
>
</
ModalBody
>
</
ModalBody
>
<
ModalFooter
>
<
ModalFooter
>
<
Button
variant=
{
'base'
}
mr=
{
3
}
onClick=
{
onClose
}
>
<
Button
variant=
{
'base'
}
mr=
{
3
}
onClick=
{
onClose
}
>
...
...
client/src/pages/app/detail/components/OverView.tsx
View file @
32395346
...
@@ -54,7 +54,7 @@ const OverView = ({ appId }: { appId: string }) => {
...
@@ -54,7 +54,7 @@ const OverView = ({ appId }: { appId: string }) => {
});
});
return
(
return
(
<
Flex
h=
{
'100%'
}
flexDirection=
{
'column'
}
position=
{
'relative'
}
>
<
Box
h=
{
'100%'
}
display=
{
[
'block'
,
'flex'
]
}
flexDirection=
{
'column'
}
position=
{
'relative'
}
>
<
Grid
<
Grid
gridTemplateColumns=
{
[
'1fr'
,
'repeat(2,1fr)'
]
}
gridTemplateColumns=
{
[
'1fr'
,
'repeat(2,1fr)'
]
}
gridGap=
{
[
2
,
4
,
6
]
}
gridGap=
{
[
2
,
4
,
6
]
}
...
@@ -142,7 +142,7 @@ const OverView = ({ appId }: { appId: string }) => {
...
@@ -142,7 +142,7 @@ const OverView = ({ appId }: { appId: string }) => {
</
Flex
>
</
Flex
>
</
Grid
>
</
Grid
>
<
Box
flex=
{
'1 0 0'
}
h=
{
0
}
mt=
{
4
}
borderTop=
{
theme
.
borders
.
base
}
>
<
Box
flex=
{
'1 0 0'
}
h=
{
[
'auto'
,
0
]
}
mt=
{
4
}
borderTop=
{
theme
.
borders
.
base
}
>
<
BasicEdit
appId=
{
appId
}
/>
<
BasicEdit
appId=
{
appId
}
/>
</
Box
>
</
Box
>
...
@@ -151,7 +151,7 @@ const OverView = ({ appId }: { appId: string }) => {
...
@@ -151,7 +151,7 @@ const OverView = ({ appId }: { appId: string }) => {
)
}
)
}
<
ConfirmChild
/>
<
ConfirmChild
/>
<
Loading
fixed=
{
false
}
/>
<
Loading
fixed=
{
false
}
/>
</
Fle
x
>
</
Bo
x
>
);
);
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment