feat(ui): opening the details page with the reply button (#840)
parent
6a78f9c9e3
commit
2ff46bb8cb
|
@ -24,13 +24,11 @@ const { formatHumanReadableNumber, formatNumber, forSR } = useHumanReadableNumbe
|
||||||
const reply = () => {
|
const reply = () => {
|
||||||
if (!checkLogin())
|
if (!checkLogin())
|
||||||
return
|
return
|
||||||
if (details) {
|
if (details)
|
||||||
focusEditor()
|
focusEditor()
|
||||||
}
|
|
||||||
else {
|
else
|
||||||
const { key, draft } = getReplyDraft(status)
|
navigateTo({ path: getStatusRoute(status).href, state: { focusReply: true } })
|
||||||
openPublishDialog(key, draft())
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,11 @@ const focusEditor = () => {
|
||||||
|
|
||||||
provide('focus-editor', focusEditor)
|
provide('focus-editor', focusEditor)
|
||||||
|
|
||||||
|
watch(publishWidget, () => {
|
||||||
|
if (window.history.state.focusReply)
|
||||||
|
focusEditor()
|
||||||
|
})
|
||||||
|
|
||||||
onReactivated(() => {
|
onReactivated(() => {
|
||||||
// Silently update data when reentering the page
|
// Silently update data when reentering the page
|
||||||
// The user will see the previous content first, and any changes will be updated to the UI when the request is completed
|
// The user will see the previous content first, and any changes will be updated to the UI when the request is completed
|
||||||
|
|
Loading…
Reference in New Issue