mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 22:42:25 -04:00

'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()
61 lines
1.6 KiB
Python
61 lines
1.6 KiB
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import List, Optional
|
|
|
|
import aqt
|
|
from anki.collection import Config
|
|
from anki.lang import TR
|
|
from aqt.qt import *
|
|
from aqt.utils import getText, tooltip, tr
|
|
|
|
|
|
def set_due_date_dialog(
|
|
*,
|
|
mw: aqt.AnkiQt,
|
|
parent: QDialog,
|
|
card_ids: List[int],
|
|
config_key: Optional[Config.String.Key.V],
|
|
) -> None:
|
|
if not card_ids:
|
|
return
|
|
|
|
default_text = (
|
|
mw.col.get_config_string(config_key) if config_key is not None else ""
|
|
)
|
|
prompt = "\n".join(
|
|
[
|
|
tr(TR.SCHEDULING_SET_DUE_DATE_PROMPT, cards=len(card_ids)),
|
|
tr(TR.SCHEDULING_SET_DUE_DATE_PROMPT_HINT),
|
|
]
|
|
)
|
|
(days, success) = getText(
|
|
prompt=prompt,
|
|
parent=parent,
|
|
default=default_text,
|
|
title=tr(TR.ACTIONS_SET_DUE_DATE),
|
|
)
|
|
if not success or not days.strip():
|
|
return
|
|
|
|
mw.perform_op(
|
|
lambda: mw.col.sched.set_due_date(card_ids, days, config_key),
|
|
success=lambda _: tooltip(
|
|
tr(TR.SCHEDULING_SET_DUE_DATE_DONE, cards=len(card_ids)),
|
|
parent=parent,
|
|
),
|
|
)
|
|
|
|
|
|
def forget_cards(*, mw: aqt.AnkiQt, parent: QDialog, card_ids: List[int]) -> None:
|
|
if not card_ids:
|
|
return
|
|
|
|
mw.perform_op(
|
|
lambda: mw.col.sched.schedule_cards_as_new(card_ids),
|
|
success=lambda _: tooltip(
|
|
tr(TR.SCHEDULING_FORGOT_CARDS, cards=len(card_ids)), parent=parent
|
|
),
|
|
)
|