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

44 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-03-15 18:17:36 +00:00
import ImagePreview from '../ImagePreview.vue';
export abstract class ImagePreviewHelper {
2020-10-25 22:55:21 +00:00
static readonly HTTP_TESTER = /^https?:\/\//;
2020-03-15 18:17:36 +00:00
protected visible = false;
2020-10-25 22:55:21 +00:00
protected url: string | undefined = 'about:blank';
2020-03-15 18:17:36 +00:00
protected parent: ImagePreview;
protected debug: boolean;
2020-10-25 22:55:21 +00:00
abstract show(url: string | undefined): void;
2020-03-15 18:17:36 +00:00
abstract hide(): void;
2020-10-25 22:55:21 +00:00
abstract match(domainName: string | undefined, url: string | undefined): boolean;
2020-03-15 18:17:36 +00:00
abstract renderStyle(): Record<string, any>;
2020-11-06 23:44:40 +00:00
abstract getName(): string;
2020-03-15 18:17:36 +00:00
2020-10-25 22:55:21 +00:00
abstract reactsToSizeUpdates(): boolean;
abstract setRatio(ratio: number): void;
abstract shouldTrackLoading(): boolean;
abstract usesWebView(): boolean;
2020-03-15 18:17:36 +00:00
constructor(parent: ImagePreview) {
if (!parent) {
throw new Error('Empty parent!');
}
this.parent = parent;
this.debug = parent.debug;
}
isVisible(): boolean {
return this.visible;
}
2020-10-25 22:55:21 +00:00
getUrl(): string | undefined {
2020-03-15 18:17:36 +00:00
return this.url;
}
setDebug(debug: boolean): void {
this.debug = debug;
}
}