mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* Enable Cmd+W shortcut in "Edit Current" on Mac * Enable Cmd+W shortcut in "Fields" editor on Mac * Enable Cmd+W shortcut in "Cards" editing on Mac * Enable Cmd+W shortcut in "Sync" tab modal on Mac * Enable Cmd+W shortcut in "Custom Study" tab modal on Mac * Enable Cmd+W shortcut in Settings view on Mac * Enable Cmd+W shortcut in Export dialogs on Mac * Enable Cmd+W shortcut for getText dialog on Mac * Enable Cmd+W shortcut in "Change Deck" on Mac * Enable Cmd+W shortcut in Reposition dialog on Mac * Enable Cmd+W shortcut in "Grade Now" dialog on Mac * Enable Cmd+W shortcut in "Reset…" dialog on Mac * Remove duplicate camelCase variant of add_close_shortcut (dae) - The camelCase variant will remain accessible with a warning. - The removed setattr line is legacy cruft, and wasn't doing anything.
85 lines
2.5 KiB
Python
85 lines
2.5 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
|
|
|
|
import json
|
|
from dataclasses import dataclass
|
|
from urllib.parse import quote
|
|
|
|
import aqt
|
|
import aqt.deckconf
|
|
import aqt.main
|
|
import aqt.operations
|
|
from aqt.qt import *
|
|
from aqt.utils import add_close_shortcut, disable_help_button, restoreGeom, saveGeom, tr
|
|
from aqt.webview import AnkiWebView, AnkiWebViewKind
|
|
|
|
|
|
@dataclass
|
|
class ImportArgs:
|
|
path: str
|
|
title = "importLog"
|
|
kind = AnkiWebViewKind.IMPORT_LOG
|
|
ts_page = "import-page"
|
|
|
|
def args_json(self) -> str:
|
|
return json.dumps(self.path)
|
|
|
|
|
|
class JsonFileArgs(ImportArgs):
|
|
def args_json(self) -> str:
|
|
return json.dumps(dict(type="json_file", path=self.path))
|
|
|
|
|
|
class CsvArgs(ImportArgs):
|
|
title = "csv import"
|
|
kind = AnkiWebViewKind.IMPORT_CSV
|
|
ts_page = "import-csv"
|
|
|
|
|
|
class AnkiPackageArgs(ImportArgs):
|
|
title = "anki package import"
|
|
kind = AnkiWebViewKind.IMPORT_ANKI_PACKAGE
|
|
ts_page = "import-anki-package"
|
|
|
|
|
|
class ImportDialog(QDialog):
|
|
DEFAULT_SIZE = (800, 600)
|
|
MIN_SIZE = (400, 300)
|
|
silentlyClose = True
|
|
|
|
def __init__(self, mw: aqt.main.AnkiQt, args: ImportArgs) -> None:
|
|
QDialog.__init__(self, mw, Qt.WindowType.Window)
|
|
self.mw = mw
|
|
self.args = args
|
|
self._setup_ui()
|
|
self.show()
|
|
|
|
def _setup_ui(self) -> None:
|
|
self.setWindowModality(Qt.WindowModality.ApplicationModal)
|
|
self.mw.garbage_collect_on_dialog_finish(self)
|
|
self.setMinimumSize(*self.MIN_SIZE)
|
|
disable_help_button(self)
|
|
restoreGeom(self, self.args.title, default_size=self.DEFAULT_SIZE)
|
|
add_close_shortcut(self)
|
|
|
|
self.web: AnkiWebView | None = AnkiWebView(kind=self.args.kind)
|
|
self.web.setVisible(False)
|
|
self.web.load_sveltekit_page(f"{self.args.ts_page}/{quote(self.args.path)}")
|
|
layout = QVBoxLayout()
|
|
layout.setContentsMargins(0, 0, 0, 0)
|
|
layout.addWidget(self.web)
|
|
self.setLayout(layout)
|
|
restoreGeom(self, self.args.title, default_size=(800, 800))
|
|
|
|
self.setWindowTitle(tr.decks_import_file())
|
|
|
|
def reject(self) -> None:
|
|
if self.mw.col and self.windowModality() == Qt.WindowModality.ApplicationModal:
|
|
self.mw.col.set_wants_abort()
|
|
assert self.web is not None
|
|
self.web.cleanup()
|
|
self.web = None
|
|
saveGeom(self, self.args.title)
|
|
QDialog.reject(self)
|