Compare commits
1 Commits
DEBUG-scro
...
multipleNe
Author | SHA1 | Date | |
---|---|---|---|
33ed64c0c0
|
32
.drone.yml
32
.drone.yml
@ -1,32 +0,0 @@
|
|||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: Build Anki Plugin
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
event:
|
|
||||||
include:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Build Archive
|
|
||||||
image: debian:bookworm
|
|
||||||
pull: always
|
|
||||||
commands:
|
|
||||||
- apt-get update && apt-get install -y zip slugify
|
|
||||||
- ./build.sh
|
|
||||||
|
|
||||||
- name: Upload Artifact to Gitea
|
|
||||||
depends_on:
|
|
||||||
- Build Archive
|
|
||||||
image: plugins/gitea-release
|
|
||||||
settings:
|
|
||||||
api_key:
|
|
||||||
from_secret: gitea_api_token
|
|
||||||
checksum: sha256
|
|
||||||
base_url: https://git.tobiasmanske.de
|
|
||||||
files:
|
|
||||||
- "*.ankiaddon"
|
|
||||||
|
|
||||||
image_pull_secrets:
|
|
||||||
- registry
|
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -169,4 +169,3 @@ tags
|
|||||||
|
|
||||||
# Stores actual addon config if the src directory is symlinked into an anki installation during development
|
# Stores actual addon config if the src directory is symlinked into an anki installation during development
|
||||||
src/meta.json
|
src/meta.json
|
||||||
src/manifest.json
|
|
||||||
|
20
build.sh
20
build.sh
@ -1,27 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
set -o nounset
|
|
||||||
|
|
||||||
SLUG=$(slugify "${DRONE_COMMIT_REF}")
|
|
||||||
|
|
||||||
if [ -d src/__pycache__ ]; then
|
if [ -d src/__pycache__ ]; then
|
||||||
rm -r src/__pycache__
|
rm -r src/__pycache__
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd src
|
cd src
|
||||||
|
zip -r ../editor-preview.ankiaddon --exclude meta.json -- *
|
||||||
# Create Manifest
|
|
||||||
cat - > manifest.json <<EOF
|
|
||||||
{
|
|
||||||
"name": "Editor Live Preview - ${SLUG}",
|
|
||||||
"package": "editor-live-preview-${SLUG}"
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
zip -r ../editor-preview-external.ankiaddon --exclude meta.json -- *
|
|
||||||
zip -r ../editor-preview-ankiweb.ankiaddon --exclude meta.json --exclude manifest.json -- *
|
|
||||||
cd ..
|
cd ..
|
||||||
echo "Ankiweb Contents"
|
unzip -l editor-preview.ankiaddon
|
||||||
unzip -l editor-preview-ankiweb.ankiaddon
|
|
||||||
echo "External Contents"
|
|
||||||
unzip -l editor-preview-external.ankiaddon
|
|
||||||
|
119
src/__init__.py
119
src/__init__.py
@ -8,9 +8,8 @@ from aqt.webview import AnkiWebView
|
|||||||
|
|
||||||
config = mw.addonManager.getConfig(__name__)
|
config = mw.addonManager.getConfig(__name__)
|
||||||
|
|
||||||
|
|
||||||
class EditorPreview(object):
|
class EditorPreview(object):
|
||||||
js = [
|
js=[
|
||||||
"js/mathjax.js",
|
"js/mathjax.js",
|
||||||
"js/vendor/mathjax/tex-chtml.js",
|
"js/vendor/mathjax/tex-chtml.js",
|
||||||
"js/reviewer.js",
|
"js/reviewer.js",
|
||||||
@ -19,8 +18,7 @@ class EditorPreview(object):
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
gui_hooks.editor_did_init.append(self.editor_init_hook)
|
gui_hooks.editor_did_init.append(self.editor_init_hook)
|
||||||
gui_hooks.editor_did_init_buttons.append(self.editor_init_button_hook)
|
gui_hooks.editor_did_init_buttons.append(self.editor_init_button_hook)
|
||||||
self.scrollLock = config["enableScrollLockByDefault"]
|
if int(buildinfo.version.split(".")[2]) < 45: # < 2.1.45
|
||||||
if int(buildinfo.version.split(".")[2]) < 45: # < 2.1.45
|
|
||||||
self.js = [
|
self.js = [
|
||||||
"js/vendor/jquery.min.js",
|
"js/vendor/jquery.min.js",
|
||||||
"js/vendor/css_browser_selector.min.js",
|
"js/vendor/css_browser_selector.min.js",
|
||||||
@ -29,126 +27,71 @@ class EditorPreview(object):
|
|||||||
"js/reviewer.js",
|
"js/reviewer.js",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
def editor_init_hook(self, ed: editor.Editor):
|
def editor_init_hook(self, ed: editor.Editor):
|
||||||
ed.editor_preview = AnkiWebView(title="editor_preview")
|
ed.webview = AnkiWebView(title="editor_preview")
|
||||||
# This is taken out of clayout.py
|
# This is taken out of clayout.py
|
||||||
ed.editor_preview.stdHtml(
|
ed.webview.stdHtml(
|
||||||
ed.mw.reviewer.revHtml(),
|
ed.mw.reviewer.revHtml(),
|
||||||
css=["css/reviewer.css"],
|
css=["css/reviewer.css"],
|
||||||
js=self.js,
|
js=self.js,
|
||||||
context=ed,
|
context=ed,
|
||||||
)
|
)
|
||||||
|
|
||||||
if not config["showPreviewAutomatically"]:
|
if not config['showPreviewAutomatically']:
|
||||||
ed.editor_preview.hide()
|
ed.webview.hide()
|
||||||
|
|
||||||
self._inject_splitter(ed)
|
self._inject_splitter(ed)
|
||||||
gui_hooks.editor_did_fire_typing_timer.append(lambda o: self.onedit_hook(ed, o))
|
gui_hooks.editor_did_fire_typing_timer.append(lambda o: self.onedit_hook(ed, o))
|
||||||
gui_hooks.editor_did_load_note.append(
|
gui_hooks.editor_did_load_note.append(lambda o: None if o != ed else self.editor_note_hook(o))
|
||||||
lambda o: None if o != ed else self.editor_note_hook(o)
|
|
||||||
)
|
|
||||||
|
|
||||||
def _get_splitter(self, editor):
|
|
||||||
layout = editor.outerLayout
|
|
||||||
mainR, editorR = [int(r) for r in config["splitRatio"].split(":")]
|
|
||||||
location = config["location"]
|
|
||||||
split = QSplitter()
|
|
||||||
if location == "above":
|
|
||||||
split.setOrientation(Qt.Vertical)
|
|
||||||
split.addWidget(editor.editor_preview)
|
|
||||||
split.addWidget(editor.web)
|
|
||||||
sizes = [editorR, mainR]
|
|
||||||
elif location == "below":
|
|
||||||
split.setOrientation(Qt.Vertical)
|
|
||||||
split.addWidget(editor.web)
|
|
||||||
split.addWidget(editor.editor_preview)
|
|
||||||
sizes = [mainR, editorR]
|
|
||||||
elif location == "left":
|
|
||||||
split.setOrientation(Qt.Horizontal)
|
|
||||||
split.addWidget(editor.editor_preview)
|
|
||||||
split.addWidget(editor.web)
|
|
||||||
sizes = [editorR, mainR]
|
|
||||||
elif location == "right":
|
|
||||||
split.setOrientation(Qt.Horizontal)
|
|
||||||
split.addWidget(editor.web)
|
|
||||||
split.addWidget(editor.editor_preview)
|
|
||||||
sizes = [mainR, editorR]
|
|
||||||
else:
|
|
||||||
raise ValueError("Invalid value for config key location")
|
|
||||||
|
|
||||||
split.setSizes(sizes)
|
|
||||||
return split
|
|
||||||
|
|
||||||
def _inject_splitter(self, editor: editor.Editor):
|
def _inject_splitter(self, editor: editor.Editor):
|
||||||
layout = editor.outerLayout
|
layout = editor.outerLayout
|
||||||
|
split = QSplitter()
|
||||||
|
split.setOrientation(Qt.Vertical)
|
||||||
web_index = layout.indexOf(editor.web)
|
web_index = layout.indexOf(editor.web)
|
||||||
layout.removeWidget(editor.web)
|
layout.removeWidget(editor.web)
|
||||||
|
split.addWidget(editor.web)
|
||||||
split = self._get_splitter(editor)
|
split.addWidget(editor.webview)
|
||||||
|
splitRatio = config['splitRatio']
|
||||||
|
upperR, lowerR = [int(r) for r in splitRatio.split(":")]
|
||||||
|
split.setStretchFactor(0, upperR)
|
||||||
|
split.setStretchFactor(1, lowerR)
|
||||||
layout.insertWidget(web_index, split)
|
layout.insertWidget(web_index, split)
|
||||||
|
|
||||||
def isScrollLocked(self):
|
|
||||||
return self.scrollLock
|
|
||||||
|
|
||||||
def toggleScrollLock(self):
|
|
||||||
self.scrollLock = not self.scrollLock
|
|
||||||
|
|
||||||
def editor_note_hook(self, editor):
|
def editor_note_hook(self, editor):
|
||||||
# Dont lock the editor in place when loading a new note
|
self.onedit_hook(editor, editor.note)
|
||||||
# i.e. when using the cards browser
|
|
||||||
self.onedit_hook(editor, editor.note, keep_scrollbar_value=False)
|
|
||||||
|
|
||||||
def editor_init_button_hook(self, buttons, editor):
|
def editor_init_button_hook(self, buttons, editor):
|
||||||
addon_path = os.path.dirname(__file__)
|
addon_path = os.path.dirname(__file__)
|
||||||
icons_dir = os.path.join(addon_path, "icons")
|
icons_dir = os.path.join(addon_path, 'icons')
|
||||||
previewButton = editor.addButton(
|
b = editor.addButton(icon=os.path.join(icons_dir, 'file.svg'), cmd="_editor_toggle_preview", tip='Toggle Live Preview',
|
||||||
icon=os.path.join(icons_dir, "file.svg"),
|
func=lambda o=editor: self.onEditorPreviewButton(o), disables=False
|
||||||
cmd="_editor_toggle_preview",
|
)
|
||||||
tip="Toggle Live Preview",
|
buttons.append(b)
|
||||||
func=lambda o=editor: self.onEditorPreviewButton(o),
|
|
||||||
disables=False,
|
|
||||||
)
|
|
||||||
scrollLockButton = editor.addButton(
|
|
||||||
# icon=os.path.join(icons_dir, "file.svg"),
|
|
||||||
icon=None,
|
|
||||||
label="🔒",
|
|
||||||
cmd="_editor_toggle_scroll_lock",
|
|
||||||
tip="Toggle Scroll Locking",
|
|
||||||
func=lambda o=editor: self.onEditorScrollLockButton(o),
|
|
||||||
disables=True,
|
|
||||||
)
|
|
||||||
buttons.append(previewButton)
|
|
||||||
buttons.append(scrollLockButton)
|
|
||||||
|
|
||||||
def onEditorPreviewButton(self, origin: editor.Editor):
|
def onEditorPreviewButton(self, origin: editor.Editor):
|
||||||
if origin.editor_preview.isHidden():
|
if origin.webview.isHidden():
|
||||||
origin.editor_preview.show()
|
origin.webview.show()
|
||||||
else:
|
else:
|
||||||
origin.editor_preview.hide()
|
origin.webview.hide()
|
||||||
|
|
||||||
def onEditorScrollLockButton(self, origin: editor.Editor):
|
|
||||||
self.toggleScrollLock()
|
|
||||||
|
|
||||||
def _obtainCardText(self, note):
|
def _obtainCardText(self, note):
|
||||||
c = note.ephemeral_card()
|
c = note.ephemeral_card()
|
||||||
a = mw.prepare_card_text_for_display(c.answer())
|
a = mw.prepare_card_text_for_display(c.answer())
|
||||||
a = gui_hooks.card_will_show(a, c, "clayoutAnswer")
|
a = gui_hooks.card_will_show(a, c, "clayoutAnswer")
|
||||||
bodyclass = theme_manager.body_classes_for_card_ord(
|
if theme_manager.night_mode:
|
||||||
c.ord, theme_manager.night_mode
|
bodyclass = theme_manager.body_classes_for_card_ord(c.ord, mw.pm.night_mode())
|
||||||
)
|
else:
|
||||||
|
bodyclass = theme_manager.body_classes_for_card_ord(c.ord)
|
||||||
bodyclass += " editor-preview"
|
bodyclass += " editor-preview"
|
||||||
|
|
||||||
return f"_showAnswer({json.dumps(a)},'{bodyclass}');"
|
return f"_showAnswer({json.dumps(a)},'{bodyclass}');"
|
||||||
|
|
||||||
def onedit_hook(self, editor, origin, keep_scrollbar_value=True):
|
def onedit_hook(self, editor, origin):
|
||||||
if editor.note == origin:
|
if editor.note == origin:
|
||||||
page: QWebEnginePage = editor.editor_preview.page()
|
editor.webview.eval(self._obtainCardText(editor.note))
|
||||||
scrollbar_value = page.scrollPosition()
|
|
||||||
editor.editor_preview.eval(self._obtainCardText(editor.note))
|
|
||||||
if keep_scrollbar_value and self.isScrollLocked():
|
|
||||||
page.runJavaScript(
|
|
||||||
f"window.scrollTo({scrollbar_value.x()}, {scrollbar_value.y()});"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
eprev = EditorPreview()
|
eprev = EditorPreview()
|
||||||
|
@ -1,6 +1 @@
|
|||||||
{
|
{"showPreviewAutomatically": true, "splitRatio": "4:1"}
|
||||||
"showPreviewAutomatically": true,
|
|
||||||
"splitRatio": "1:1",
|
|
||||||
"location": "below",
|
|
||||||
"enableScrollLockByDefault": true
|
|
||||||
}
|
|
@ -2,11 +2,5 @@
|
|||||||
\- `showPreviewAutomatically` [boolean (true | false)]:<br/>
|
\- `showPreviewAutomatically` [boolean (true | false)]:<br/>
|
||||||
Defines if the preview window should show up automatically as you enter the Editor (default: true)<br/><br/>
|
Defines if the preview window should show up automatically as you enter the Editor (default: true)<br/><br/>
|
||||||
\- `splitRatio` [int:int]:<br/>
|
\- `splitRatio` [int:int]:<br/>
|
||||||
Defines the default split ratio of the main view and preview view (default: 1:1)<br/>
|
Defines the default split ratio of the main view and preview view (default: 4:1)
|
||||||
<br/>
|
|
||||||
\- `location` [string (above | below | left | right)]:<br/>
|
|
||||||
Defines where to render the preview (default: below)
|
|
||||||
<br/>
|
|
||||||
\- `showPreviewAutomatically` [boolean (true | false)]:<br/>
|
|
||||||
Whether to keep the scrollbar at the same location when text changed or not (default: true)<br/>
|
|
||||||
<br/>
|
<br/>
|
||||||
|
Reference in New Issue
Block a user