fchat-rising/chat/preview/helper/external.ts

195 lines
5.1 KiB
TypeScript
Raw Normal View History

2020-03-15 16:23:39 +00:00
import { ImageUrlMutator } from '../image-url-mutator';
2020-03-15 18:17:36 +00:00
import { ImagePreviewHelper } from './helper';
2020-03-15 16:23:39 +00:00
import * as _ from 'lodash';
export class ExternalImagePreviewHelper extends ImagePreviewHelper {
2020-10-25 22:55:21 +00:00
protected lastExternalUrl: string | undefined = undefined;
2020-03-15 16:23:39 +00:00
protected allowCachedUrl = true;
protected urlMutator = new ImageUrlMutator(this.parent.debug);
protected ratio: number | null = null;
hide(): void {
const wasVisible = this.visible;
if (this.parent.debug)
console.log('ImagePreview: exec hide mutator');
if (wasVisible) {
const webview = this.parent.getWebview();
2020-04-04 20:22:42 +00:00
// if (this.allowCachedUrl) {
// // tslint:disable-next-line:no-floating-promises
// webview.executeJavaScript(this.parent.jsMutator.getHideMutator());
// } else {
// tslint:disable-next-line:no-floating-promises
2020-04-09 23:06:48 +00:00
webview.stop();
webview.loadURL('about:blank')
.catch(
(err: any) => {
console.warn('webview.loadURL() in hide()', err);
}
);
2020-04-04 20:22:42 +00:00
//}
2020-03-15 16:23:39 +00:00
this.visible = false;
}
}
setRatio(ratio: number): void {
this.ratio = ratio;
}
2020-11-06 23:44:40 +00:00
getName(): string {
return 'ExternalImagePreviewHelper';
}
2020-10-25 22:55:21 +00:00
reactsToSizeUpdates(): boolean {
return true;
}
shouldTrackLoading(): boolean {
return true;
}
usesWebView(): boolean {
return true;
}
2020-03-15 16:23:39 +00:00
setDebug(debug: boolean): void {
this.debug = debug;
this.urlMutator.setDebug(debug);
}
2020-10-25 22:55:21 +00:00
show(url: string | undefined): void {
2020-03-15 16:23:39 +00:00
const webview = this.parent.getWebview();
if (!this.parent) {
throw new Error('Empty parent v2');
}
if (!webview) {
throw new Error('Empty webview!');
}
2020-10-25 22:55:21 +00:00
if (!url) {
throw new Error('Empty URL!');
}
2020-03-15 16:23:39 +00:00
// const oldUrl = this.url;
2020-04-02 00:27:21 +00:00
// const oldLastExternalUrl = this.lastExternalUrl;
2020-03-15 16:23:39 +00:00
this.url = url;
this.lastExternalUrl = url;
this.visible = true;
try {
2020-04-02 00:27:21 +00:00
// if ((this.allowCachedUrl) && ((webview.getURL() === url) || (url === oldLastExternalUrl))) {
// if (this.debug)
// console.log('ImagePreview: exec re-show mutator');
//
// // tslint:disable-next-line:no-floating-promises
// webview.executeJavaScript(this.parent.jsMutator.getReShowMutator());
// } else {
// if (this.debug)
// console.log('ImagePreview: must load; skip re-show because urls don\'t match', this.url, webview.getURL());
this.ratio = null;
webview.stop();
2023-12-03 00:41:17 +00:00
webview.setAudioMuted(true);
2020-04-02 00:27:21 +00:00
// Broken promise chain on purpose
// tslint:disable-next-line:no-floating-promises
2023-12-03 00:41:17 +00:00
void this.urlMutator.resolve(url)
2020-04-02 00:27:21 +00:00
.then(
async(finalUrl: string) => {
if (this.debug)
console.log('ImagePreview: must load', finalUrl, this.url, webview.getURL());
webview.stop();
2023-12-03 00:41:17 +00:00
await webview.loadURL(finalUrl);
webview.setAudioMuted(true);
2020-04-02 00:27:21 +00:00
}
2020-04-09 23:06:48 +00:00
)
.catch(
(err: any) => {
console.warn('webview.loadURL() in show()', err);
}
2020-04-02 00:27:21 +00:00
);
// }
2020-03-15 16:23:39 +00:00
} catch (err) {
console.error('ImagePreview: Webview reuse error', err);
}
}
2020-10-25 22:55:21 +00:00
match(domainName: string | undefined, url: string | undefined): boolean {
if ((!domainName) || (!url)) {
return false;
}
return (ImagePreviewHelper.HTTP_TESTER.test(url))
&& (!((domainName === 'f-list.net') || (domainName === 'static.f-list.net')));
2020-03-15 16:23:39 +00:00
}
determineScalingRatio(): Record<string, any> {
// ratio = width / height
const ratio = this.ratio;
if (!ratio) {
return {};
}
const ww = window.innerWidth;
const wh = window.innerHeight;
const maxWidth = Math.round(ww * 0.5);
const maxHeight = Math.round(wh * 0.7);
if (ratio >= 1) {
const presumedWidth = maxWidth;
const presumedHeight = presumedWidth / ratio;
return {
width: `${presumedWidth}px`,
height: `${presumedHeight}px`
};
// tslint:disable-next-line:unnecessary-else
} else {
const presumedHeight = maxHeight;
const presumedWidth = presumedHeight * ratio;
return {
width: `${presumedWidth}px`,
height: `${presumedHeight}px`
};
}
}
2020-10-25 22:55:21 +00:00
2020-03-15 16:23:39 +00:00
renderStyle(): Record<string, any> {
return this.isVisible()
? _.merge({ display: 'flex' }, this.determineScalingRatio())
: { display: 'none' };
}
}