mirror of
https://github.com/Ellpeck/ObsidianCustomFrames.git
synced 2024-12-22 13:19:24 +01:00
parent
2363a5e338
commit
3ec5caf330
6 changed files with 56 additions and 21 deletions
18
src/frame.ts
18
src/frame.ts
|
@ -12,19 +12,29 @@ export class CustomFrame {
|
||||||
this.data = data;
|
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;`;
|
let style = `padding: ${this.settings.padding}px;`;
|
||||||
if (additionalStyle)
|
if (additionalStyle)
|
||||||
style += additionalStyle;
|
style += additionalStyle;
|
||||||
if (Platform.isDesktopApp && !this.data.forceIframe) {
|
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.setAttribute("allowpopups", "");
|
||||||
this.frame.addEventListener("dom-ready", () => {
|
this.frame.addEventListener("dom-ready", () => {
|
||||||
this.frame.setZoomFactor(this.data.zoomLevel);
|
this.frame.setZoomFactor(this.data.zoomLevel);
|
||||||
this.frame.insertCSS(this.data.customCss);
|
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 {
|
} 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("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;");
|
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;`;
|
style += `transform: scale(${this.data.zoomLevel}); transform-origin: 0 0;`;
|
||||||
|
@ -40,8 +50,6 @@ export class CustomFrame {
|
||||||
src += urlSuffix;
|
src += urlSuffix;
|
||||||
}
|
}
|
||||||
this.frame.setAttribute("src", src);
|
this.frame.setAttribute("src", src);
|
||||||
|
|
||||||
return this.frame;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
refresh(): void {
|
refresh(): void {
|
||||||
|
|
|
@ -68,7 +68,7 @@ export default class CustomFramesPlugin extends Plugin {
|
||||||
urlSuffix ||= "";
|
urlSuffix ||= "";
|
||||||
|
|
||||||
let frame = new CustomFrame(this.settings, data);
|
let frame = new CustomFrame(this.settings, data);
|
||||||
e.appendChild(frame.create(style, urlSuffix));
|
frame.create(e, style, urlSuffix);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ export class CustomFrameView extends ItemView {
|
||||||
onload(): void {
|
onload(): void {
|
||||||
this.contentEl.empty();
|
this.contentEl.empty();
|
||||||
this.contentEl.addClass("custom-frames-view");
|
this.contentEl.addClass("custom-frames-view");
|
||||||
this.contentEl.appendChild(this.frame.create());
|
this.frame.create(this.contentEl);
|
||||||
}
|
}
|
||||||
|
|
||||||
onPaneMenu(menu: Menu, source: string): void {
|
onPaneMenu(menu: Menu, source: string): void {
|
||||||
|
|
|
@ -32,6 +32,17 @@
|
||||||
"zoomLevel": 1,
|
"zoomLevel": 1,
|
||||||
"forceIframe": false,
|
"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}"
|
"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
|
"padding": 5
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue