feat(ui): opening the details page with the reply button (#840)

This commit is contained in:
Piotrek Tomczewski 2023-01-07 08:55:07 +01:00 committed by GitHub
parent 6a78f9c9e3
commit 2ff46bb8cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 6 deletions

View file

@ -24,13 +24,11 @@ const { formatHumanReadableNumber, formatNumber, forSR } = useHumanReadableNumbe
const reply = () => {
if (!checkLogin())
return
if (details) {
if (details)
focusEditor()
}
else {
const { key, draft } = getReplyDraft(status)
openPublishDialog(key, draft())
}
else
navigateTo({ path: getStatusRoute(status).href, state: { focusReply: true } })
}
</script>

View file

@ -49,6 +49,11 @@ const focusEditor = () => {
provide('focus-editor', focusEditor)
watch(publishWidget, () => {
if (window.history.state.focusReply)
focusEditor()
})
onReactivated(() => {
// 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