mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-03-05 20:30:15 +01:00
🎨 状态栏显示选中内容的字数 https://github.com/siyuan-note/siyuan/issues/4932
This commit is contained in:
parent
1b173ae421
commit
46c4d842f9
3 changed files with 62 additions and 0 deletions
|
|
@ -104,6 +104,44 @@ func getRecentUpdatedBlocks(c *gin.Context) {
|
|||
ret.Data = blocks
|
||||
}
|
||||
|
||||
func getContentWordCount(c *gin.Context) {
|
||||
ret := gulu.Ret.NewResult()
|
||||
defer c.JSON(http.StatusOK, ret)
|
||||
|
||||
arg, ok := util.JsonArg(c, ret)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
|
||||
content := arg["content"].(string)
|
||||
runeCount, wordCount := model.ContentWordCount(content)
|
||||
ret.Data = map[string]interface{}{
|
||||
"runeCount": runeCount,
|
||||
"wordCount": wordCount,
|
||||
}
|
||||
}
|
||||
|
||||
func getBlocksWordCount(c *gin.Context) {
|
||||
ret := gulu.Ret.NewResult()
|
||||
defer c.JSON(http.StatusOK, ret)
|
||||
|
||||
arg, ok := util.JsonArg(c, ret)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
|
||||
idsArg := arg["ids"].([]interface{})
|
||||
var ids []string
|
||||
for _, id := range idsArg {
|
||||
ids = append(ids, id.(string))
|
||||
}
|
||||
runeCount, wordCount := model.BlocksWordCount(ids)
|
||||
ret.Data = map[string]interface{}{
|
||||
"runeCount": runeCount,
|
||||
"wordCount": wordCount,
|
||||
}
|
||||
}
|
||||
|
||||
func getBlockWordCount(c *gin.Context) {
|
||||
ret := gulu.Ret.NewResult()
|
||||
defer c.JSON(http.StatusOK, ret)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue