🎨 Improve search jump focus block and then exit focus positioning https://github.com/siyuan-note/siyuan/issues/13577

This commit is contained in:
Daniel 2024-12-25 20:19:44 +08:00
parent c24c0d6af7
commit 9e2bab6718
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 40 additions and 0 deletions

View file

@ -224,6 +224,22 @@ func setBlockReminder(c *gin.Context) {
}
}
func getUnfoldedParentID(c *gin.Context) {
ret := gulu.Ret.NewResult()
defer c.JSON(http.StatusOK, ret)
arg, ok := util.JsonArg(c, ret)
if !ok {
return
}
id := arg["id"].(string)
parentID := model.GetUnfoldedParentID(id)
ret.Data = map[string]interface{}{
"parentID": parentID,
}
}
func checkBlockFold(c *gin.Context) {
ret := gulu.Ret.NewResult()
defer c.JSON(http.StatusOK, ret)