* 检查高亮是否已经创建了闪卡
(highlightId: string)
| 273 | * 检查高亮是否已经创建了闪卡 |
| 274 | */ |
| 275 | private checkHasFlashcard(highlightId: string): boolean { |
| 276 | const fsrsManager = this.plugin.fsrsManager; |
| 277 | if (!fsrsManager || !highlightId) { |
| 278 | return false; |
| 279 | } |
| 280 | |
| 281 | const cards = fsrsManager.findCardsBySourceId(highlightId, 'highlight'); |
| 282 | return cards && cards.length > 0; |
| 283 | } |
| 284 | } |
no test coverage detected