move to SRS Algo

This commit is contained in:
2024-12-11 21:33:52 +01:00
parent 26518bef56
commit ac69a11db5
3 changed files with 127 additions and 33 deletions

View File

@@ -14,22 +14,31 @@
Anzeigen
</button>
<!-- Gewusst Button -->
<!-- Nochmal Button -->
<button
(click)="markKnown()"
(click)="markAgain()"
class="bg-orange-500 disabled:bg-orange-200 text-white py-2 px-4 rounded hover:bg-orange-600"
[disabled]="!isShowingBox || currentBoxIndex >= boxesToReview.length"
>
Nochmal
</button>
<!-- Gut Button -->
<button
(click)="markGood()"
class="bg-blue-500 disabled:bg-blue-200 text-white py-2 px-4 rounded hover:bg-blue-600"
[disabled]="!isShowingBox || currentBoxIndex >= boxesToReview.length"
>
Gewusst
Gut
</button>
<!-- Nicht gewusst Button -->
<!-- Einfach Button -->
<button
(click)="markUnknown()"
class="bg-red-500 disabled:bg-red-200 text-white py-2 px-4 rounded hover:bg-red-600"
(click)="markEasy()"
class="bg-green-500 disabled:bg-green-200 text-white py-2 px-4 rounded hover:bg-green-600"
[disabled]="!isShowingBox || currentBoxIndex >= boxesToReview.length"
>
Nicht gewusst
Einfach
</button>
<!-- Nächstes Bild Button -->
@@ -43,7 +52,7 @@
</div>
<p class="mt-2">{{ progress }}</p>
<p class="mt-2">Gewusst: {{ knownCount }} | Nicht gewusst: {{ unknownCount }}</p>
<!-- <p class="mt-2">Gewusst: {{ knownCount }} | Nicht gewusst: {{ unknownCount }}</p> -->
<button
(click)="closeTraining()"