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
17b20270
authored
Mar 27, 2025
by
Archer
Committed by
GitHub
Mar 27, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: ts (#4357)
parent
9d97b605
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
133 additions
and
0 deletions
+133
-0
packages/web/hooks/useEditTextarea.tsx
+133
-0
No files found.
packages/web/hooks/useEditTextarea.tsx
0 → 100644
View file @
17b20270
import
React
,
{
useCallback
,
useRef
}
from
'react'
;
import
{
ModalFooter
,
ModalBody
,
Input
,
useDisclosure
,
Button
,
Box
,
Textarea
}
from
'@chakra-ui/react'
;
import
MyModal
from
'../components/common/MyModal'
;
import
{
useToast
}
from
'./useToast'
;
import
{
useTranslation
}
from
'next-i18next'
;
export
const
useEditTextarea
=
({
title
,
tip
,
placeholder
=
''
,
canEmpty
=
true
,
valueRule
,
rows
=
10
}:
{
title
:
string
;
tip
?:
string
;
placeholder
?:
string
;
canEmpty
?:
boolean
;
valueRule
?:
(
val
:
string
)
=>
string
|
void
;
rows
?:
number
;
})
=>
{
const
{
t
}
=
useTranslation
();
const
{
isOpen
,
onOpen
,
onClose
}
=
useDisclosure
();
const
textareaRef
=
useRef
<
HTMLTextAreaElement
|
null
>
(
null
);
const
onSuccessCb
=
useRef
<
(
content
:
string
)
=>
void
|
Promise
<
void
>>
();
const
onErrorCb
=
useRef
<
(
err
:
any
)
=>
void
>
();
const
{
toast
}
=
useToast
();
const
defaultValue
=
useRef
(
''
);
const
onOpenModal
=
useCallback
(
({
defaultVal
,
onSuccess
,
onError
}:
{
defaultVal
:
string
;
onSuccess
:
(
content
:
string
)
=>
any
;
onError
?:
(
err
:
any
)
=>
void
;
})
=>
{
onOpen
();
onSuccessCb
.
current
=
onSuccess
;
onErrorCb
.
current
=
onError
;
defaultValue
.
current
=
defaultVal
;
},
[
onOpen
]
);
const
onclickConfirm
=
useCallback
(
async
()
=>
{
if
(
!
textareaRef
.
current
||
!
onSuccessCb
.
current
)
return
;
const
val
=
textareaRef
.
current
.
value
;
if
(
!
canEmpty
&&
!
val
)
{
textareaRef
.
current
.
focus
();
return
;
}
if
(
valueRule
)
{
const
result
=
valueRule
(
val
);
if
(
result
)
{
return
toast
({
status
:
'warning'
,
title
:
result
});
}
}
try
{
await
onSuccessCb
.
current
(
val
);
onClose
();
}
catch
(
err
)
{
onErrorCb
.
current
?.(
err
);
}
},
[
canEmpty
,
onClose
]);
// eslint-disable-next-line react/display-name
const
EditModal
=
useCallback
(
({
maxLength
=
30
,
iconSrc
=
'modal/edit'
,
closeBtnText
=
t
(
'common:common.Close'
)
}:
{
maxLength
?:
number
;
iconSrc
?:
string
;
closeBtnText
?:
string
;
})
=>
(
<
MyModal
isOpen=
{
isOpen
}
onClose=
{
onClose
}
iconSrc=
{
iconSrc
}
title=
{
title
}
maxW=
{
'500px'
}
>
<
ModalBody
pt=
{
tip
?
'3 !important'
:
'5 !important'
}
>
{
!!
tip
&&
(
<
Box
mb=
{
3
}
color=
{
'myGray.500'
}
fontSize=
{
'sm'
}
>
{
tip
}
</
Box
>
)
}
<
Textarea
ref=
{
textareaRef
}
defaultValue=
{
defaultValue
.
current
}
placeholder=
{
placeholder
}
autoFocus
maxLength=
{
maxLength
}
rows=
{
rows
}
bg=
{
'myGray.50'
}
/>
</
ModalBody
>
<
ModalFooter
>
{
!!
closeBtnText
&&
(
<
Button
mr=
{
3
}
variant=
{
'whiteBase'
}
onClick=
{
onClose
}
>
{
closeBtnText
}
</
Button
>
)
}
<
Button
onClick=
{
onclickConfirm
}
px=
{
6
}
>
{
t
(
'common:common.Confirm'
)
}
</
Button
>
</
ModalFooter
>
</
MyModal
>
),
[
isOpen
,
onClose
,
onclickConfirm
,
placeholder
,
tip
,
title
]
);
return
{
onOpenModal
,
EditModal
};
};
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