mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-06 03:40:04 -06:00
🎨 支持浏览卡包内的闪卡 https://github.com/siyuan-note/siyuan/issues/6943
This commit is contained in:
@@ -38,9 +38,11 @@ func getRiffCards(c *gin.Context) {
|
||||
|
||||
deckID := arg["deckID"].(string)
|
||||
page := int(arg["page"].(float64))
|
||||
blockIDs := model.GetFlashcards(deckID, page)
|
||||
blockIDs, total, pageCount := model.GetFlashcards(deckID, page)
|
||||
ret.Data = map[string]interface{}{
|
||||
"blockIDs": blockIDs,
|
||||
"blockIDs": blockIDs,
|
||||
"total": total,
|
||||
"pageCount": pageCount,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ import (
|
||||
var Decks = map[string]*riff.Deck{}
|
||||
var deckLock = sync.Mutex{}
|
||||
|
||||
func GetFlashcards(deckID string, page int) (blockIDs []string) {
|
||||
func GetFlashcards(deckID string, page int) (blockIDs []string, total, pageCount int) {
|
||||
deck := Decks[deckID]
|
||||
if nil == deck {
|
||||
return
|
||||
@@ -60,6 +60,8 @@ func GetFlashcards(deckID string, page int) (blockIDs []string) {
|
||||
end = len(allBlockIDs)
|
||||
}
|
||||
blockIDs = allBlockIDs[start:end]
|
||||
total = len(allBlockIDs)
|
||||
pageCount = total / 20
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user