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

54 lines
1.0 KiB
TypeScript
Raw Normal View History

2020-03-15 18:17:36 +00:00
import { ImagePreviewHelper } from './helper';
2020-03-15 16:23:39 +00:00
2020-10-25 22:55:21 +00:00
2020-03-15 16:23:39 +00:00
export class LocalImagePreviewHelper extends ImagePreviewHelper {
hide(): void {
this.visible = false;
2020-10-25 22:55:21 +00:00
this.url = undefined;
2020-03-15 16:23:39 +00:00
}
2020-10-25 22:55:21 +00:00
show(url: string | undefined): void {
2020-03-15 16:23:39 +00:00
this.visible = true;
this.url = url;
}
2020-10-25 22:55:21 +00:00
setRatio(_ratio: number): void {
// do nothing
}
reactsToSizeUpdates(): boolean {
return false;
}
shouldTrackLoading(): boolean {
return false;
}
usesWebView(): boolean {
return false;
}
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
}
renderStyle(): Record<string, any> {
return this.isVisible()
? { backgroundImage: `url(${this.getUrl()})`, display: 'block' }
: { display: 'none' };
}
}