2019-02-05 04:59:03 +01:00
|
|
|
# Copyright: Ankitects Pty Ltd and contributors
|
2012-12-21 08:51:59 +01:00
|
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
2020-01-22 01:46:35 +01:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2020-02-17 16:49:21 +01:00
|
|
|
from dataclasses import dataclass
|
2021-02-01 13:08:56 +01:00
|
|
|
from typing import Any, Callable, Dict, List, Optional, Tuple
|
2020-02-17 16:49:21 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
import aqt
|
undoable ops now return changes directly; add new *_ops.py files
- Introduced a new transact() method that wraps the return value
in a separate struct that describes the changes that were made.
- Changes are now gathered from the undo log, so we don't need to
guess at what was changed - eg if update_note() is called with identical
note contents, no changes are returned. Card changes will only be set
if cards were actually generated by the update_note() call, and tag
will only be set if a new tag was added.
- mw.perform_op() has been updated to expect the op to return the changes,
or a structure with the changes in it, and it will use them to fire the
change hook, instead of fetching the changes from undo_status(), so there
is no risk of race conditions.
- the various calls to mw.perform_op() have been split into separate
files like card_ops.py. Aside from making the code cleaner, this works
around a rather annoying issue with mypy. Because we run it with
no_strict_optional, mypy is happy to accept an operation that returns None,
despite the type signature saying it requires changes to be returned.
Turning no_strict_optional on for the whole codebase is not practical
at the moment, but we can enable it for individual files.
Still todo:
- The cursor keeps moving back to the start of a field when typing -
we need to ignore the refresh hook when we are the initiator.
- The busy cursor icon should probably be delayed a few hundreds ms.
- Still need to think about a nicer way of handling saveNow()
- op_made_changes(), op_affects_study_queue() might be better embedded
as properties in the object instead
2021-03-16 05:26:42 +01:00
|
|
|
from anki.collection import OpChanges
|
2021-04-30 12:03:20 +02:00
|
|
|
from anki.scheduler import UnburyDeck
|
2020-02-08 06:31:41 +01:00
|
|
|
from aqt import gui_hooks
|
2021-04-22 13:03:16 +02:00
|
|
|
from aqt.deckdescription import DeckDescriptionDialog
|
2021-05-27 05:11:20 +02:00
|
|
|
from aqt.deckoptions import display_options_for_deck
|
2021-04-30 12:03:20 +02:00
|
|
|
from aqt.operations.scheduling import (
|
|
|
|
empty_filtered_deck,
|
|
|
|
rebuild_filtered_deck,
|
|
|
|
unbury_deck,
|
|
|
|
)
|
2020-01-20 11:10:38 +01:00
|
|
|
from aqt.sound import av_player
|
2020-01-22 01:46:35 +01:00
|
|
|
from aqt.toolbar import BottomBar
|
2021-03-26 05:21:04 +01:00
|
|
|
from aqt.utils import askUserDialog, openLink, shortcut, tooltip, tr
|
2019-12-20 10:19:03 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2020-02-08 23:59:29 +01:00
|
|
|
class OverviewBottomBar:
|
2021-02-01 14:28:21 +01:00
|
|
|
def __init__(self, overview: Overview) -> None:
|
2020-02-08 23:59:29 +01:00
|
|
|
self.overview = overview
|
|
|
|
|
|
|
|
|
2020-02-17 16:49:21 +01:00
|
|
|
@dataclass
|
|
|
|
class OverviewContent:
|
2020-02-17 16:53:47 +01:00
|
|
|
"""Stores sections of HTML content that the overview will be
|
|
|
|
populated with.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
deck {str} -- Plain text deck name
|
|
|
|
shareLink {str} -- HTML of the share link section
|
|
|
|
desc {str} -- HTML of the deck description section
|
|
|
|
table {str} -- HTML of the deck stats table section
|
|
|
|
"""
|
|
|
|
|
2020-02-17 16:49:21 +01:00
|
|
|
deck: str
|
|
|
|
shareLink: str
|
|
|
|
desc: str
|
|
|
|
table: str
|
|
|
|
|
|
|
|
|
2017-02-06 23:21:33 +01:00
|
|
|
class Overview:
|
2012-12-21 08:51:59 +01:00
|
|
|
"Deck overview."
|
|
|
|
|
2020-01-22 01:46:35 +01:00
|
|
|
def __init__(self, mw: aqt.AnkiQt) -> None:
|
2012-12-21 08:51:59 +01:00
|
|
|
self.mw = mw
|
|
|
|
self.web = mw.web
|
2020-01-22 01:46:35 +01:00
|
|
|
self.bottom = BottomBar(mw, mw.bottomWeb)
|
2021-03-14 15:03:41 +01:00
|
|
|
self._refresh_needed = False
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2021-02-01 13:08:56 +01:00
|
|
|
def show(self) -> None:
|
2020-01-20 11:10:38 +01:00
|
|
|
av_player.stop_and_clear_queue()
|
2020-02-08 23:59:29 +01:00
|
|
|
self.web.set_bridge_command(self._linkHandler, self)
|
2017-06-22 08:36:54 +02:00
|
|
|
self.mw.setStateShortcuts(self._shortcutKeys())
|
2012-12-21 08:51:59 +01:00
|
|
|
self.refresh()
|
|
|
|
|
2021-02-01 13:08:56 +01:00
|
|
|
def refresh(self) -> None:
|
2021-03-24 03:56:06 +01:00
|
|
|
self._refresh_needed = False
|
2012-12-21 08:51:59 +01:00
|
|
|
self.mw.col.reset()
|
|
|
|
self._renderPage()
|
|
|
|
self._renderBottom()
|
2016-05-31 10:51:40 +02:00
|
|
|
self.mw.web.setFocus()
|
2020-02-08 06:31:41 +01:00
|
|
|
gui_hooks.overview_did_refresh(self)
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2021-03-14 13:08:37 +01:00
|
|
|
def refresh_if_needed(self) -> None:
|
2021-03-14 15:03:41 +01:00
|
|
|
if self._refresh_needed:
|
2021-03-14 13:08:37 +01:00
|
|
|
self.refresh()
|
more reset refactoring
'card modified' covers the common case where we need to rebuild the
study queue, but is also set when changing the card flags. We want to
avoid a queue rebuild in that case, as it causes UI flicker, and may
result in a different card being shown. Note marking doesn't trigger
a queue build, but still causes flicker, and may return the user back
to the front side when they were looking at the answer.
I still think entity-based change tracking is the simplest in the
common case, but to solve the above, I've introduced an enum describing
the last operation that was taken. This currently is not trying to list
out all possible operations, and just describes the ones we want to
special-case.
Other changes:
- Fire the old 'state_did_reset' hook after an operation is performed,
so legacy code can refresh itself after an operation is performed.
- Fire the new `operation_did_execute` hook when mw.reset() is called,
so that as the UI is updated to the use the new hook, it will still
be able to refresh after legacy code calls mw.reset()
- Update the deck browser, overview and review screens to listen to
the new hook, instead of relying on the main window to call moveToState()
- Add a 'set flag' backend action, so we can distinguish it from a
normal card update.
- Drop the separate added/modified entries in the change list in
favour of a single entry per entity.
- Add typing to mw.state
- Tweak perform_op()
- Convert a few more actions to use perform_op()
2021-03-14 10:54:15 +01:00
|
|
|
|
2021-04-06 02:14:11 +02:00
|
|
|
def op_executed(
|
|
|
|
self, changes: OpChanges, handler: Optional[object], focused: bool
|
|
|
|
) -> bool:
|
2021-06-08 04:09:35 +02:00
|
|
|
if changes.study_queues:
|
2021-03-14 15:03:41 +01:00
|
|
|
self._refresh_needed = True
|
2021-03-14 13:08:37 +01:00
|
|
|
|
|
|
|
if focused:
|
|
|
|
self.refresh_if_needed()
|
more reset refactoring
'card modified' covers the common case where we need to rebuild the
study queue, but is also set when changing the card flags. We want to
avoid a queue rebuild in that case, as it causes UI flicker, and may
result in a different card being shown. Note marking doesn't trigger
a queue build, but still causes flicker, and may return the user back
to the front side when they were looking at the answer.
I still think entity-based change tracking is the simplest in the
common case, but to solve the above, I've introduced an enum describing
the last operation that was taken. This currently is not trying to list
out all possible operations, and just describes the ones we want to
special-case.
Other changes:
- Fire the old 'state_did_reset' hook after an operation is performed,
so legacy code can refresh itself after an operation is performed.
- Fire the new `operation_did_execute` hook when mw.reset() is called,
so that as the UI is updated to the use the new hook, it will still
be able to refresh after legacy code calls mw.reset()
- Update the deck browser, overview and review screens to listen to
the new hook, instead of relying on the main window to call moveToState()
- Add a 'set flag' backend action, so we can distinguish it from a
normal card update.
- Drop the separate added/modified entries in the change list in
favour of a single entry per entity.
- Add typing to mw.state
- Tweak perform_op()
- Convert a few more actions to use perform_op()
2021-03-14 10:54:15 +01:00
|
|
|
|
2021-03-14 15:03:41 +01:00
|
|
|
return self._refresh_needed
|
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
# Handlers
|
|
|
|
############################################################
|
|
|
|
|
2021-02-01 13:08:56 +01:00
|
|
|
def _linkHandler(self, url: str) -> bool:
|
2012-12-21 08:51:59 +01:00
|
|
|
if url == "study":
|
|
|
|
self.mw.col.startTimebox()
|
|
|
|
self.mw.moveToState("review")
|
2013-04-11 07:57:03 +02:00
|
|
|
if self.mw.state == "overview":
|
2021-03-26 04:48:26 +01:00
|
|
|
tooltip(tr.studying_no_cards_are_due_yet())
|
2012-12-21 08:51:59 +01:00
|
|
|
elif url == "anki":
|
2016-05-12 06:45:35 +02:00
|
|
|
print("anki menu")
|
2012-12-21 08:51:59 +01:00
|
|
|
elif url == "opts":
|
2021-05-31 08:24:51 +02:00
|
|
|
display_options_for_deck(self.mw.col.decks.current())
|
2012-12-21 08:51:59 +01:00
|
|
|
elif url == "cram":
|
2021-03-24 04:17:12 +01:00
|
|
|
aqt.dialogs.open("FilteredDeckConfigDialog", self.mw)
|
2012-12-21 08:51:59 +01:00
|
|
|
elif url == "refresh":
|
2021-03-24 03:56:06 +01:00
|
|
|
self.rebuild_current_filtered_deck()
|
2012-12-21 08:51:59 +01:00
|
|
|
elif url == "empty":
|
2021-03-24 03:56:06 +01:00
|
|
|
self.empty_current_filtered_deck()
|
2012-12-21 08:51:59 +01:00
|
|
|
elif url == "decks":
|
|
|
|
self.mw.moveToState("deckBrowser")
|
|
|
|
elif url == "review":
|
2021-02-11 01:09:06 +01:00
|
|
|
openLink(f"{aqt.appShared}info/{self.sid}?v={self.sidVer}")
|
2020-08-27 13:46:34 +02:00
|
|
|
elif url == "studymore" or url == "customStudy":
|
2012-12-21 08:51:59 +01:00
|
|
|
self.onStudyMore()
|
rework sibling handling and change bury semantics
First, burying changes:
- unburying now happens on day rollover, or when manually unburying from
overview screen
- burying is not performed when returning to deck list, or when closing
collection, so burying now must mark cards as modified to ensure sync
consistent
- because they're no longer temporary to a session, make sure we exclude them
in filtered decks in -is:suspended
Sibling spacing changes:
- core behaviour now based on automatically burying related cards when we
answer a card
- applies to reviews, optionally to new cards, and never to cards in the
learning queue (partly because we can't suspend/bury cards in that queue at
the moment)
- this means spacing works consistently in filtered decks now, works on
reviews even when user is late to review, and provides better separation of
new cards
- if burying new cards disabled, we just discard them from the current queue.
an option to set due=ord*space+due would be nicer, but would require
changing a lot of code and is more appropriate for a future major version
change. discarding from queue suffers from the same issue as the new card
cycling in that queue rebuilds may cause cards to be shown close together,
so the default burying behaviour is preferable
- refer to them as 'related cards' rather than 'siblings'
These changes don't require any changes to the database format, so they
should hopefully coexist with older clients without issue.
2013-08-10 08:54:33 +02:00
|
|
|
elif url == "unbury":
|
2021-04-30 12:03:20 +02:00
|
|
|
self.on_unbury()
|
2021-04-22 13:03:16 +02:00
|
|
|
elif url == "description":
|
|
|
|
self.edit_description()
|
2013-01-14 23:42:38 +01:00
|
|
|
elif url.lower().startswith("http"):
|
2012-12-21 08:51:59 +01:00
|
|
|
openLink(url)
|
2016-05-31 10:51:40 +02:00
|
|
|
return False
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2021-02-01 13:08:56 +01:00
|
|
|
def _shortcutKeys(self) -> List[Tuple[str, Callable]]:
|
2017-06-22 08:36:54 +02:00
|
|
|
return [
|
2021-05-31 08:24:51 +02:00
|
|
|
("o", lambda: display_options_for_deck(self.mw.col.decks.current())),
|
2021-03-24 03:56:06 +01:00
|
|
|
("r", self.rebuild_current_filtered_deck),
|
|
|
|
("e", self.empty_current_filtered_deck),
|
2017-06-22 08:36:54 +02:00
|
|
|
("c", self.onCustomStudyKey),
|
2021-04-30 12:03:20 +02:00
|
|
|
("u", self.on_unbury),
|
2017-06-22 08:36:54 +02:00
|
|
|
]
|
|
|
|
|
2021-03-24 03:56:06 +01:00
|
|
|
def _current_deck_is_filtered(self) -> int:
|
2019-12-23 01:34:10 +01:00
|
|
|
return self.mw.col.decks.current()["dyn"]
|
2017-06-22 08:36:54 +02:00
|
|
|
|
2021-03-24 03:56:06 +01:00
|
|
|
def rebuild_current_filtered_deck(self) -> None:
|
2021-04-06 08:38:42 +02:00
|
|
|
rebuild_filtered_deck(
|
|
|
|
parent=self.mw, deck_id=self.mw.col.decks.selected()
|
|
|
|
).run_in_background()
|
2017-06-22 08:36:54 +02:00
|
|
|
|
2021-03-24 03:56:06 +01:00
|
|
|
def empty_current_filtered_deck(self) -> None:
|
2021-04-06 08:38:42 +02:00
|
|
|
empty_filtered_deck(
|
|
|
|
parent=self.mw, deck_id=self.mw.col.decks.selected()
|
|
|
|
).run_in_background()
|
2017-06-22 08:36:54 +02:00
|
|
|
|
2021-02-01 13:08:56 +01:00
|
|
|
def onCustomStudyKey(self) -> None:
|
2021-03-24 03:56:06 +01:00
|
|
|
if not self._current_deck_is_filtered():
|
2012-12-21 08:51:59 +01:00
|
|
|
self.onStudyMore()
|
2017-06-22 08:36:54 +02:00
|
|
|
|
2021-04-30 12:03:20 +02:00
|
|
|
def on_unbury(self) -> None:
|
|
|
|
mode = UnburyDeck.Mode.ALL
|
|
|
|
if self.mw.col.schedVer() != 1:
|
|
|
|
info = self.mw.col.sched.congratulations_info()
|
|
|
|
if info.have_sched_buried and info.have_user_buried:
|
|
|
|
opts = [
|
|
|
|
tr.studying_manually_buried_cards(),
|
|
|
|
tr.studying_buried_siblings(),
|
|
|
|
tr.studying_all_buried_cards(),
|
|
|
|
tr.actions_cancel(),
|
|
|
|
]
|
|
|
|
|
|
|
|
diag = askUserDialog(tr.studying_what_would_you_like_to_unbury(), opts)
|
|
|
|
diag.setDefault(0)
|
|
|
|
ret = diag.run()
|
|
|
|
if ret == opts[0]:
|
|
|
|
mode = UnburyDeck.Mode.USER_ONLY
|
|
|
|
elif ret == opts[1]:
|
|
|
|
mode = UnburyDeck.Mode.SCHED_ONLY
|
|
|
|
elif ret == opts[3]:
|
|
|
|
return
|
|
|
|
|
|
|
|
unbury_deck(
|
|
|
|
parent=self.mw, deck_id=self.mw.col.decks.get_current_id(), mode=mode
|
|
|
|
).run_in_background()
|
2017-12-27 06:17:53 +01:00
|
|
|
|
2021-04-30 12:03:20 +02:00
|
|
|
onUnbury = on_unbury
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
# HTML
|
|
|
|
############################################################
|
|
|
|
|
2021-02-01 13:08:56 +01:00
|
|
|
def _renderPage(self) -> None:
|
2012-12-21 08:51:59 +01:00
|
|
|
but = self.mw.button
|
|
|
|
deck = self.mw.col.decks.current()
|
|
|
|
self.sid = deck.get("sharedFrom")
|
|
|
|
if self.sid:
|
|
|
|
self.sidVer = deck.get("ver", None)
|
|
|
|
shareLink = '<a class=smallLink href="review">Reviews and Updates</a>'
|
|
|
|
else:
|
|
|
|
shareLink = ""
|
2021-01-25 12:11:03 +01:00
|
|
|
if self.mw.col.sched._is_finished():
|
2020-08-27 13:46:34 +02:00
|
|
|
self._show_finished_screen()
|
|
|
|
return
|
2021-01-25 12:11:03 +01:00
|
|
|
table_text = self._table()
|
2020-02-17 16:49:21 +01:00
|
|
|
content = OverviewContent(
|
|
|
|
deck=deck["name"],
|
|
|
|
shareLink=shareLink,
|
|
|
|
desc=self._desc(deck),
|
|
|
|
table=self._table(),
|
|
|
|
)
|
|
|
|
gui_hooks.overview_will_render_content(self, content)
|
2019-12-23 01:34:10 +01:00
|
|
|
self.web.stdHtml(
|
2020-02-17 16:49:21 +01:00
|
|
|
self._body % content.__dict__,
|
2020-11-01 05:26:58 +01:00
|
|
|
css=["css/overview.css"],
|
2021-04-13 19:09:27 +02:00
|
|
|
js=["js/vendor/jquery.min.js"],
|
2020-02-12 22:00:13 +01:00
|
|
|
context=self,
|
2019-12-23 01:34:10 +01:00
|
|
|
)
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2021-02-01 13:08:56 +01:00
|
|
|
def _show_finished_screen(self) -> None:
|
2020-08-27 13:53:28 +02:00
|
|
|
self.web.load_ts_page("congrats")
|
2020-08-27 13:46:34 +02:00
|
|
|
|
2021-02-01 13:08:56 +01:00
|
|
|
def _desc(self, deck: Dict[str, Any]) -> str:
|
2019-12-23 01:34:10 +01:00
|
|
|
if deck["dyn"]:
|
2021-03-26 04:48:26 +01:00
|
|
|
desc = tr.studying_this_is_a_special_deck_for()
|
|
|
|
desc += f" {tr.studying_cards_will_be_automatically_returned_to()}"
|
|
|
|
desc += f" {tr.studying_deleting_this_deck_from_the_deck()}"
|
2012-12-21 08:51:59 +01:00
|
|
|
else:
|
|
|
|
desc = deck.get("desc", "")
|
2021-02-09 09:46:48 +01:00
|
|
|
if deck.get("md", False):
|
|
|
|
desc = self.mw.col.render_markdown(desc)
|
2012-12-21 08:51:59 +01:00
|
|
|
if not desc:
|
|
|
|
return "<p>"
|
2019-12-23 01:34:10 +01:00
|
|
|
if deck["dyn"]:
|
2012-12-21 08:51:59 +01:00
|
|
|
dyn = "dyn"
|
|
|
|
else:
|
|
|
|
dyn = ""
|
2021-02-11 01:09:06 +01:00
|
|
|
return f'<div class="descfont descmid description {dyn}">{desc}</div>'
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2020-08-27 13:46:34 +02:00
|
|
|
def _table(self) -> Optional[str]:
|
2012-12-21 08:51:59 +01:00
|
|
|
counts = list(self.mw.col.sched.counts())
|
|
|
|
but = self.mw.button
|
2021-01-25 12:11:03 +01:00
|
|
|
return """
|
2018-09-28 09:54:43 +02:00
|
|
|
<table width=400 cellpadding=5>
|
2012-12-21 08:51:59 +01:00
|
|
|
<tr><td align=center valign=top>
|
|
|
|
<table cellspacing=5>
|
2020-01-23 06:08:10 +01:00
|
|
|
<tr><td>%s:</td><td><b><span class=new-count>%s</span></b></td></tr>
|
2020-02-19 09:46:12 +01:00
|
|
|
<tr><td>%s:</td><td><b><span class=learn-count>%s</span></b></td></tr>
|
2020-01-23 06:08:10 +01:00
|
|
|
<tr><td>%s:</td><td><b><span class=review-count>%s</span></b></td></tr>
|
2012-12-21 08:51:59 +01:00
|
|
|
</table>
|
|
|
|
</td><td align=center>
|
2019-12-23 01:34:10 +01:00
|
|
|
%s</td></tr></table>""" % (
|
2021-03-26 04:48:26 +01:00
|
|
|
tr.actions_new(),
|
2021-01-25 12:11:03 +01:00
|
|
|
counts[0],
|
2021-03-26 04:48:26 +01:00
|
|
|
tr.scheduling_learning(),
|
2021-01-25 12:11:03 +01:00
|
|
|
counts[1],
|
2021-03-26 04:48:26 +01:00
|
|
|
tr.studying_to_review(),
|
2021-01-25 12:11:03 +01:00
|
|
|
counts[2],
|
2021-03-26 04:48:26 +01:00
|
|
|
but("study", tr.studying_study_now(), id="study", extra=" autofocus"),
|
2021-01-25 12:11:03 +01:00
|
|
|
)
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
_body = """
|
|
|
|
<center>
|
|
|
|
<h3>%(deck)s</h3>
|
|
|
|
%(shareLink)s
|
|
|
|
%(desc)s
|
|
|
|
%(table)s
|
|
|
|
</center>
|
|
|
|
"""
|
|
|
|
|
2021-04-22 13:03:16 +02:00
|
|
|
def edit_description(self) -> None:
|
|
|
|
DeckDescriptionDialog(self.mw)
|
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
# Bottom area
|
|
|
|
######################################################################
|
|
|
|
|
2021-02-01 13:08:56 +01:00
|
|
|
def _renderBottom(self) -> None:
|
2012-12-21 08:51:59 +01:00
|
|
|
links = [
|
2021-03-26 04:48:26 +01:00
|
|
|
["O", "opts", tr.actions_options()],
|
2012-12-21 08:51:59 +01:00
|
|
|
]
|
2019-12-23 01:34:10 +01:00
|
|
|
if self.mw.col.decks.current()["dyn"]:
|
2021-03-26 04:48:26 +01:00
|
|
|
links.append(["R", "refresh", tr.actions_rebuild()])
|
|
|
|
links.append(["E", "empty", tr.studying_empty()])
|
2012-12-21 08:51:59 +01:00
|
|
|
else:
|
2021-03-26 04:48:26 +01:00
|
|
|
links.append(["C", "studymore", tr.actions_custom_study()])
|
2019-12-23 01:34:10 +01:00
|
|
|
# links.append(["F", "cram", _("Filter/Cram")])
|
rework sibling handling and change bury semantics
First, burying changes:
- unburying now happens on day rollover, or when manually unburying from
overview screen
- burying is not performed when returning to deck list, or when closing
collection, so burying now must mark cards as modified to ensure sync
consistent
- because they're no longer temporary to a session, make sure we exclude them
in filtered decks in -is:suspended
Sibling spacing changes:
- core behaviour now based on automatically burying related cards when we
answer a card
- applies to reviews, optionally to new cards, and never to cards in the
learning queue (partly because we can't suspend/bury cards in that queue at
the moment)
- this means spacing works consistently in filtered decks now, works on
reviews even when user is late to review, and provides better separation of
new cards
- if burying new cards disabled, we just discard them from the current queue.
an option to set due=ord*space+due would be nicer, but would require
changing a lot of code and is more appropriate for a future major version
change. discarding from queue suffers from the same issue as the new card
cycling in that queue rebuilds may cause cards to be shown close together,
so the default burying behaviour is preferable
- refer to them as 'related cards' rather than 'siblings'
These changes don't require any changes to the database format, so they
should hopefully coexist with older clients without issue.
2013-08-10 08:54:33 +02:00
|
|
|
if self.mw.col.sched.haveBuried():
|
2021-03-26 04:48:26 +01:00
|
|
|
links.append(["U", "unbury", tr.studying_unbury()])
|
2021-04-22 13:03:16 +02:00
|
|
|
links.append(["", "description", tr.scheduling_description()])
|
2012-12-21 08:51:59 +01:00
|
|
|
buf = ""
|
|
|
|
for b in links:
|
|
|
|
if b[0]:
|
2021-03-26 05:21:04 +01:00
|
|
|
b[0] = tr.actions_shortcut_key(val=shortcut(b[0]))
|
2012-12-21 08:51:59 +01:00
|
|
|
buf += """
|
2019-12-23 01:34:10 +01:00
|
|
|
<button title="%s" onclick='pycmd("%s")'>%s</button>""" % tuple(
|
|
|
|
b
|
|
|
|
)
|
2020-02-12 22:00:13 +01:00
|
|
|
self.bottom.draw(
|
|
|
|
buf=buf, link_handler=self._linkHandler, web_context=OverviewBottomBar(self)
|
|
|
|
)
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
# Studying more
|
|
|
|
######################################################################
|
|
|
|
|
2021-02-01 13:08:56 +01:00
|
|
|
def onStudyMore(self) -> None:
|
2012-12-21 08:51:59 +01:00
|
|
|
import aqt.customstudy
|
2019-12-23 01:34:10 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
aqt.customstudy.CustomStudy(self.mw)
|