fixed custom frames in new windows

closes #43 closes #46
This commit is contained in:
Ell 2023-01-30 12:11:19 +01:00
parent 2363a5e338
commit 3ec5caf330
6 changed files with 56 additions and 21 deletions

View file

@ -12,19 +12,29 @@ export class CustomFrame {
this.data = data;
}
create(additionalStyle: string = undefined, urlSuffix: string = undefined): any {
create(parent: HTMLElement, additionalStyle: string = undefined, urlSuffix: string = undefined): void {
let style = `padding: ${this.settings.padding}px;`;
if (additionalStyle)
style += additionalStyle;
if (Platform.isDesktopApp && !this.data.forceIframe) {
this.frame = document.createElement("webview");
let frameDoc = parent.doc;
this.frame = frameDoc.createElement("webview");
parent.appendChild(this.frame);
this.frame.setAttribute("allowpopups", "");
this.frame.addEventListener("dom-ready", () => {
this.frame.setZoomFactor(this.data.zoomLevel);
this.frame.insertCSS(this.data.customCss);
});
this.frame.addEventListener("destroyed", () => {
// recreate the webview if it was moved to a new window
if (frameDoc != parent.doc) {
this.frame.detach();
this.create(parent, additionalStyle, urlSuffix);
}
});
} else {
this.frame = document.createElement("iframe");
this.frame = parent.doc.createElement("iframe");
parent.appendChild(this.frame);
this.frame.setAttribute("sandbox", "allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts allow-top-navigation-by-user-activation");
this.frame.setAttribute("allow", "encrypted-media; fullscreen; oversized-images; picture-in-picture; sync-xhr; geolocation;");
style += `transform: scale(${this.data.zoomLevel}); transform-origin: 0 0;`;
@ -40,8 +50,6 @@ export class CustomFrame {
src += urlSuffix;
}
this.frame.setAttribute("src", src);
return this.frame;
}
refresh(): void {

View file

@ -68,7 +68,7 @@ export default class CustomFramesPlugin extends Plugin {
urlSuffix ||= "";
let frame = new CustomFrame(this.settings, data);
e.appendChild(frame.create(style, urlSuffix));
frame.create(e, style, urlSuffix);
});
}

View file

@ -53,7 +53,7 @@ export class CustomFrameView extends ItemView {
onload(): void {
this.contentEl.empty();
this.contentEl.addClass("custom-frames-view");
this.contentEl.appendChild(this.frame.create());
this.frame.create(this.contentEl);
}
onPaneMenu(menu: Menu, source: string): void {

View file

@ -32,6 +32,17 @@
"zoomLevel": 1,
"forceIframe": false,
"customCss": "/* hide the menu bar, \"Keep\" text, and logo */\nhtml > body > div:nth-child(2) > div:nth-child(2) > div:first-child[class*=\" \"],\nhtml > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child,\nhtml > body > div:nth-child(2) > div:nth-child(2) > div:first-child > div:first-child {\ndisplay: none !important;\n}"
},
{
"url": "https://scholar.google.com",
"displayName": "Scholar",
"icon": "book",
"hideOnMobile": false,
"addRibbonIcon": true,
"openInCenter": false,
"zoomLevel": 1,
"forceIframe": false,
"customCss": ""
}
],
"padding": 5

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long