siyuan/kernel/conf/flashcard.go

70 lines
2.8 KiB
Go
Raw Normal View History

// SiYuan - Refactor your thinking
// Copyright (c) 2020-present, b3log.org
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package conf
import (
"bytes"
"fmt"
2024-09-11 11:44:06 +08:00
"github.com/open-spaced-repetition/go-fsrs/v3"
)
type Flashcard struct {
NewCardLimit int `json:"newCardLimit"` // 新卡上限 https://github.com/siyuan-note/siyuan/issues/7695
ReviewCardLimit int `json:"reviewCardLimit"` // 复习卡上限 https://github.com/siyuan-note/siyuan/issues/7703
Mark bool `json:"mark"` // 是否启用标记制卡 https://github.com/siyuan-note/siyuan/issues/7794
List bool `json:"list"` // 是否启用列表块制卡 https://github.com/siyuan-note/siyuan/issues/7701
SuperBlock bool `json:"superBlock"` // 是否启用超级块制卡 https://github.com/siyuan-note/siyuan/issues/7702
Heading bool `json:"heading"` // 是否启用标题块制卡 https://github.com/siyuan-note/siyuan/issues/9005
Deck bool `json:"deck"` // 是否启用卡包制卡 https://github.com/siyuan-note/siyuan/issues/7724
ReviewMode int `json:"reviewMode"` // 复习模式0新旧混合1新卡优先2旧卡优先 https://github.com/siyuan-note/siyuan/issues/10303
// Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309
RequestRetention float64 `json:"requestRetention"`
MaximumInterval int `json:"maximumInterval"`
Weights string `json:"weights"`
}
func NewFlashcard() *Flashcard {
param := fsrs.DefaultParam()
return &Flashcard{
NewCardLimit: 20,
ReviewCardLimit: 200,
Mark: true,
List: true,
SuperBlock: true,
Heading: true,
Deck: false,
ReviewMode: 0,
RequestRetention: param.RequestRetention,
MaximumInterval: int(param.MaximumInterval),
Weights: DefaultFSRSWeights(),
}
}
func DefaultFSRSWeights() string {
buf := bytes.Buffer{}
defaultWs := fsrs.DefaultWeights()
for i, w := range defaultWs {
buf.WriteString(fmt.Sprintf("%v", w))
if i < len(defaultWs)-1 {
buf.WriteString(", ")
}
}
return buf.String()
}