fchat-rising/chat/preview/ImagePreview.vue

632 lines
20 KiB
Vue
Raw Normal View History

2019-06-08 02:26:01 +00:00
<template>
<!-- hiding elements instead of using 'v-if' is used here as an optimization -->
2019-07-04 19:34:21 +00:00
<div class="image-preview-wrapper" :class="{visible: visible, interactive: sticky}">
<div class="image-preview-toolbar" v-if="sticky || debug">
<a @click="toggleDevMode()" :class="{toggled: debug}" title="Debug Mode"><i class="fa fa-terminal"></i></a>
<a @click="toggleJsMode()" :class="{toggled: runJs}" title="Expand Images"><i class="fa fa-magic"></i></a>
<a @click="reloadUrl()" title="Reload Image"><i class="fa fa-redo-alt"></i></a>
2020-03-15 02:31:28 +00:00
<a @click="reset()" title="Reset Image Viewer"><i class="fa fa-recycle"></i></a>
2019-07-04 19:34:21 +00:00
<a @click="toggleStickyMode()" :class="{toggled: sticky}" title="Toggle Stickyness"><i class="fa fa-thumbtack"></i></a>
</div>
2020-03-15 18:17:36 +00:00
<!-- note: preload requires a webpack config CopyPlugin configuration -->
<webview preload="./preview/assets/browser.pre.js" src="about:blank" nodeintegration webpreferences="allowRunningInsecureContent, autoplayPolicy=no-user-gesture-required" id="image-preview-ext" ref="imagePreviewExt" class="image-preview-external" :style="externalPreviewStyle"></webview>
2019-06-08 02:26:01 +00:00
<div
class="image-preview-local"
2020-03-15 02:31:28 +00:00
:style="localPreviewStyle"
2019-06-08 02:26:01 +00:00
>
</div>
</div>
</template>
<script lang="ts">
2019-07-12 22:11:55 +00:00
import * as _ from 'lodash';
2019-06-08 02:26:01 +00:00
import {Component, Hook} from '@f-list/vue-ts';
import Vue from 'vue';
2020-03-15 16:23:39 +00:00
import core from '../core';
2019-07-06 16:49:19 +00:00
import { EventBus, EventBusEvent } from './event-bus';
2020-03-15 16:23:39 +00:00
import {domain} from '../../bbcode/core';
import {ImagePreviewMutator} from './image-preview-mutator';
2020-03-15 16:23:39 +00:00
import { ExternalImagePreviewHelper, LocalImagePreviewHelper } from './helper';
2020-03-15 02:31:28 +00:00
import {Point, WebviewTag, remote} from 'electron';
2019-07-06 16:49:19 +00:00
import Timer = NodeJS.Timer;
2020-03-15 02:31:28 +00:00
import IpcMessageEvent = Electron.IpcMessageEvent;
const screen = remote.screen;
2019-07-06 16:49:19 +00:00
interface DidFailLoadEvent extends Event {
errorCode: number;
errorDescription: string;
}
interface DidNavigateEvent extends Event {
httpResponseCode: number;
httpStatusText: string;
}
2019-06-08 02:26:01 +00:00
@Component
export default class ImagePreview extends Vue {
2019-07-08 23:27:14 +00:00
private readonly MinTimePreviewVisible = 100;
2019-07-06 16:49:19 +00:00
visible = false;
2019-10-06 23:08:22 +00:00
externalPreviewHelper = new ExternalImagePreviewHelper(this);
localPreviewHelper = new LocalImagePreviewHelper(this);
2019-07-12 22:11:55 +00:00
2019-07-06 16:49:19 +00:00
url: string | null = null;
domain: string | undefined;
2019-07-06 16:49:19 +00:00
sticky = false;
runJs = true;
debug = false;
2019-06-08 02:26:01 +00:00
2019-10-06 23:08:22 +00:00
jsMutator = new ImagePreviewMutator(this.debug);
2020-03-15 14:02:31 +00:00
externalPreviewStyle: Record<string, any> = {};
localPreviewStyle: Record<string, any> = {};
2020-03-15 02:31:28 +00:00
2019-07-06 16:49:19 +00:00
private interval: Timer | null = null;
2019-06-08 02:26:01 +00:00
2019-07-06 16:49:19 +00:00
private exitInterval: Timer | null = null;
private exitUrl: string | null = null;
private initialCursorPosition: Point | null = null;
private shouldDismiss = false;
private visibleSince = 0;
2019-06-08 02:26:01 +00:00
@Hook('mounted')
onMounted(): void {
2019-06-08 02:26:01 +00:00
EventBus.$on(
'imagepreview-dismiss',
2019-07-06 16:49:19 +00:00
(eventData: EventBusEvent) => {
// console.log('Event dismiss', eventData.url);
2019-07-12 22:11:55 +00:00
this.dismiss(eventData.url as string, eventData.force as boolean);
2019-06-08 02:26:01 +00:00
}
);
EventBus.$on(
'imagepreview-show',
2019-07-06 16:49:19 +00:00
(eventData: EventBusEvent) => {
// console.log('Event show', eventData.url);
2019-07-04 19:34:21 +00:00
if (!core.state.settings.risingLinkPreview) {
return;
}
2019-07-06 16:49:19 +00:00
this.show(eventData.url as string);
2019-06-08 02:26:01 +00:00
}
);
2019-07-04 19:34:21 +00:00
EventBus.$on(
'imagepreview-toggle-stickyness',
2019-07-06 16:49:19 +00:00
(eventData: EventBusEvent) => {
if (!core.state.settings.risingLinkPreview) {
return;
}
const eventUrl = this.jsMutator.mutateUrl(eventData.url as string);
if ((this.url === eventUrl) && (this.visible))
2019-07-04 19:34:21 +00:00
this.sticky = !this.sticky;
}
);
2019-07-07 01:37:15 +00:00
const webview = this.getWebview();
webview.addEventListener(
2019-10-06 23:08:22 +00:00
'update-target-url', // 'did-navigate', // 'dom-ready',
2019-07-06 16:49:19 +00:00
(event: EventBusEvent) => {
const url = webview.getURL();
2019-10-06 23:08:22 +00:00
const js = this.jsMutator.getMutatorJsForSite(url, 'update-target-url');
2019-07-06 16:49:19 +00:00
if (this.debug)
2019-10-06 23:08:22 +00:00
console.log('ImagePreview update-target', event, js);
2019-07-04 19:34:21 +00:00
if ((js) && (this.runJs))
webview.executeJavaScript(js);
2019-07-04 19:34:21 +00:00
}
);
2019-07-12 22:11:55 +00:00
2019-10-06 23:08:22 +00:00
webview.addEventListener(
'dom-ready', // 'did-navigate', // 'dom-ready',
(event: EventBusEvent) => {
const url = webview.getURL();
const js = this.jsMutator.getMutatorJsForSite(url, 'dom-ready');
if (this.debug)
console.log('ImagePreview dom-ready', event, js);
if ((js) && (this.runJs))
webview.executeJavaScript(js, true);
}
);
2019-07-04 19:34:21 +00:00
webview.addEventListener(
'did-fail-load',
2019-07-06 16:49:19 +00:00
(event: Event) => {
const e = event as DidFailLoadEvent;
2019-07-04 19:34:21 +00:00
2019-07-06 16:49:19 +00:00
const js = this.jsMutator.getErrorMutator(e.errorCode, e.errorDescription);
if (this.debug)
2019-07-04 19:34:21 +00:00
console.log('ImagePreview did-fail-load', event, js);
2019-07-06 16:49:19 +00:00
if ((js) && (this.runJs) && (e.errorCode >= 400))
2019-07-04 19:34:21 +00:00
webview.executeJavaScript(js);
}
);
2019-07-04 19:34:21 +00:00
webview.addEventListener(
'did-navigate',
2019-07-06 16:49:19 +00:00
(event: Event) => {
const e = event as DidNavigateEvent;
if (e.httpResponseCode >= 400) {
const js = this.jsMutator.getErrorMutator(e.httpResponseCode, e.httpStatusText);
2019-07-04 19:34:21 +00:00
2019-07-06 16:49:19 +00:00
if (this.debug)
2019-07-04 19:34:21 +00:00
console.log('ImagePreview did-navigate', event, js);
if ((js) && (this.runJs))
webview.executeJavaScript(js);
}
}
);
// webview.getWebContents().on(
webview.addEventListener(
'did-finish-load',
2019-07-06 16:49:19 +00:00
(event: Event) => {
2019-07-04 19:34:21 +00:00
if (this.debug)
console.log('ImagePreview did-finish-load', event);
}
);
2019-07-04 19:34:21 +00:00
2020-03-15 02:31:28 +00:00
webview.addEventListener(
'ipc-message',
(event: IpcMessageEvent) => {
if (this.debug)
console.log('ImagePreview ipc-message', event);
if (event.channel === 'webview.img') {
2020-03-15 14:02:31 +00:00
// tslint:disable-next-line:no-unsafe-any
this.updatePreviewSize(parseInt(event.args[0], 10), parseInt(event.args[1], 10));
2020-03-15 02:31:28 +00:00
}
}
);
2019-10-27 19:31:45 +00:00
/* webview.getWebContents().session.on(
'will-download',
(e: Event) => {
e.preventDefault();
}
);*/
2019-07-12 22:11:55 +00:00
_.each(
2020-03-15 02:31:28 +00:00
['did-start-loading', 'load-commit', 'dom-ready', 'will-navigate', 'did-navigate', 'did-navigate-in-page', 'update-target-url', 'ipc-message'],
2019-07-12 22:11:55 +00:00
(en: string) => {
webview.addEventListener(
en,
(event: Event) => {
if (this.debug)
2019-10-06 23:08:22 +00:00
console.log(`ImagePreview ${en} ${Date.now()}`, event);
2019-07-12 22:11:55 +00:00
}
);
}
);
setInterval(
() => {
if (((this.visible) && (!this.exitInterval) && (!this.shouldDismiss)) || (this.interval))
this.initialCursorPosition = screen.getCursorScreenPoint();
2019-07-12 22:11:55 +00:00
if ((this.visible) && (this.shouldDismiss) && (this.hasMouseMovedSince()) && (!this.exitInterval) && (!this.interval)) {
if (this.debug) {
console.log('ImagePreview: call hide from interval');
}
this.hide();
2019-07-12 22:11:55 +00:00
}
},
2020-03-15 14:02:31 +00:00
50
);
2019-06-08 02:26:01 +00:00
}
2020-03-15 02:31:28 +00:00
reRenderStyles(): void {
2020-03-15 14:02:31 +00:00
// tslint:disable-next-line:no-unsafe-any
2020-03-15 02:31:28 +00:00
this.externalPreviewStyle = this.externalPreviewHelper.renderStyle();
2020-03-15 14:02:31 +00:00
// tslint:disable-next-line:no-unsafe-any
2020-03-15 02:31:28 +00:00
this.localPreviewStyle = this.localPreviewHelper.renderStyle();
if (this.debug) {
2020-03-15 14:02:31 +00:00
console.log(
'ImagePreview: reRenderStyles', 'external',
JSON.parse(JSON.stringify(this.externalPreviewStyle)),
'local', JSON.parse(JSON.stringify(this.localPreviewStyle))
);
2020-03-15 02:31:28 +00:00
}
}
updatePreviewSize(width: number, height: number): void {
if (!this.externalPreviewHelper.isVisible()) {
return;
}
if ((width) && (height)) {
if (this.debug) {
console.log('ImagePreview: updatePreviewSize', width, height, width / height);
}
this.externalPreviewHelper.setRatio(width / height);
this.reRenderStyles();
}
}
2019-07-04 19:34:21 +00:00
hide(): void {
2019-07-12 22:11:55 +00:00
if (this.debug)
2019-10-06 23:08:22 +00:00
console.log('ImagePreview: hide', this.externalPreviewHelper.isVisible(), this.localPreviewHelper.isVisible());
2019-07-12 22:11:55 +00:00
this.cancelExitTimer();
this.url = null;
this.visible = false;
2019-10-06 23:08:22 +00:00
this.localPreviewHelper.hide();
this.externalPreviewHelper.hide();
this.exitUrl = null;
this.exitInterval = null;
this.shouldDismiss = false;
2019-07-04 19:34:21 +00:00
this.sticky = false;
2020-03-15 02:31:28 +00:00
this.reRenderStyles();
}
dismiss(initialUrl: string, force: boolean = false): void {
const url = this.jsMutator.mutateUrl(initialUrl);
2019-07-12 22:11:55 +00:00
if (this.debug) {
console.log('ImagePreview: dismiss', url);
}
if (this.url !== url)
return; // simply ignore
2019-07-04 19:34:21 +00:00
// if (this.debug)
// return;
if (this.sticky)
2019-06-24 01:02:40 +00:00
return;
// console.log('DISMISS');
const due = this.visible ? this.MinTimePreviewVisible - Math.min(this.MinTimePreviewVisible, (Date.now() - this.visibleSince)) : 0;
2019-06-08 02:26:01 +00:00
this.cancelTimer();
if (this.exitInterval)
return;
this.exitUrl = this.url;
this.shouldDismiss = true;
2019-07-12 22:11:55 +00:00
if ((!this.hasMouseMovedSince()) && (!force))
return;
2019-07-12 22:11:55 +00:00
if (this.debug)
2019-10-06 23:08:22 +00:00
console.log('ImagePreview: dismiss.exec', this.externalPreviewHelper.isVisible(), this.localPreviewHelper.isVisible(), url);
2019-07-12 22:11:55 +00:00
// This timeout makes the preview window disappear with a slight delay, which helps UX
// when dealing with situations such as quickly scrolling text that moves the cursor away
// from the link
2019-07-06 16:49:19 +00:00
// tslint:disable-next-line no-unnecessary-type-assertion
this.exitInterval = setTimeout(
() => this.hide(),
due
2019-07-06 16:49:19 +00:00
) as Timer;
2019-06-08 02:26:01 +00:00
}
show(initialUrl: string): void {
const url = this.jsMutator.mutateUrl(initialUrl);
2019-07-12 22:11:55 +00:00
if (this.debug)
2019-10-06 23:08:22 +00:00
console.log('ImagePreview: show', this.externalPreviewHelper.isVisible(), this.localPreviewHelper.isVisible(),
2019-07-12 22:11:55 +00:00
this.visible, this.hasMouseMovedSince(), !!this.interval, this.sticky, url);
// console.log('SHOW');
2019-07-12 22:11:55 +00:00
if ((this.visible) && (!this.exitInterval) && (!this.hasMouseMovedSince())) {
2020-03-15 02:31:28 +00:00
if (!this.sticky) {
if (this.debug) {
console.log('ImagePreview: show cancel: visible & not moved');
}
return;
2019-07-12 22:11:55 +00:00
}
}
if ((this.url === url) && ((this.visible) || (this.interval))) {
if (this.debug) {
2020-03-15 02:31:28 +00:00
console.log('ImagePreview: same url', url, this.url);
2019-07-12 22:11:55 +00:00
}
return;
2019-07-12 22:11:55 +00:00
}
if ((this.url) && (this.sticky) && (this.visible)) {
if (this.debug) {
console.log('ImagePreview: sticky visible');
}
2019-07-04 19:34:21 +00:00
return;
2019-07-12 22:11:55 +00:00
}
if (this.debug)
console.log('ImagePreview: show.exec', url);
2019-07-04 19:34:21 +00:00
const due = ((url === this.exitUrl) && (this.exitInterval)) ? 0 : 100;
2019-06-08 02:26:01 +00:00
this.url = url;
this.domain = domain(url);
this.cancelExitTimer();
2019-06-08 02:26:01 +00:00
this.cancelTimer();
// This timer makes sure that just by accidentally brushing across a link won't show (blink) the preview
// -- you actually have to pause on it
2019-07-06 16:49:19 +00:00
// tslint:disable-next-line no-unnecessary-type-assertion
2019-06-08 02:26:01 +00:00
this.interval = setTimeout(
2020-03-15 14:02:31 +00:00
() => {
2019-07-12 22:11:55 +00:00
if (this.debug)
console.log('ImagePreview: show.timeout', this.url);
2019-10-06 23:08:22 +00:00
this.localPreviewHelper.match(this.domain as string)
? this.localPreviewHelper.show(this.url as string)
: this.localPreviewHelper.hide();
2019-07-07 01:37:15 +00:00
2019-10-06 23:08:22 +00:00
this.externalPreviewHelper.match(this.domain as string)
? this.externalPreviewHelper.show(this.url as string)
: this.externalPreviewHelper.hide();
2020-03-15 14:02:31 +00:00
this.interval = null;
2019-06-08 02:26:01 +00:00
this.visible = true;
this.visibleSince = Date.now();
this.initialCursorPosition = screen.getCursorScreenPoint();
2020-03-15 02:31:28 +00:00
2020-03-15 14:02:31 +00:00
2020-03-15 02:31:28 +00:00
this.reRenderStyles();
2019-06-08 02:26:01 +00:00
},
due
2019-07-06 16:49:19 +00:00
) as Timer;
2019-06-08 02:26:01 +00:00
}
hasMouseMovedSince(): boolean {
if (!this.initialCursorPosition)
return true;
2019-06-08 02:26:01 +00:00
try {
const p = screen.getCursorScreenPoint();
return ((p.x !== this.initialCursorPosition.x) || (p.y !== this.initialCursorPosition.y));
} catch (err) {
2019-07-12 22:11:55 +00:00
console.error('ImagePreview', err);
return true;
2019-06-08 02:26:01 +00:00
}
}
cancelTimer(): void {
if (this.interval)
clearTimeout(this.interval);
2019-06-08 02:26:01 +00:00
this.interval = null;
}
cancelExitTimer(): void {
if (this.exitInterval)
clearTimeout(this.exitInterval);
this.exitInterval = null;
}
isVisible(): boolean {
2019-06-08 02:26:01 +00:00
return this.visible;
}
getUrl(): string | null {
2019-06-08 02:26:01 +00:00
return this.url;
}
2019-10-06 23:08:22 +00:00
/* isExternalUrl(): boolean {
2019-07-04 19:34:21 +00:00
// 'f-list.net' is tested here on purpose, because keeps the character URLs from being previewed
2019-06-08 02:26:01 +00:00
return !((this.domain === 'f-list.net') || (this.domain === 'static.f-list.net'));
}
isInternalUrl(): boolean {
2019-06-08 02:26:01 +00:00
return !this.isExternalUrl();
2019-10-06 23:08:22 +00:00
}*/
2019-07-04 19:34:21 +00:00
toggleDevMode(): void {
this.debug = !this.debug;
2019-07-06 16:49:19 +00:00
this.jsMutator.setDebug(this.debug);
2019-10-27 18:58:41 +00:00
this.localPreviewHelper.setDebug(this.debug);
this.externalPreviewHelper.setDebug(this.debug);
2019-07-06 16:49:19 +00:00
2019-07-04 19:34:21 +00:00
if (this.debug) {
2019-07-07 01:37:15 +00:00
const webview = this.getWebview();
2019-07-04 19:34:21 +00:00
webview.openDevTools();
}
}
toggleStickyMode(): void {
this.sticky = !this.sticky;
if (!this.sticky)
this.hide();
}
toggleJsMode(): void {
this.runJs = !this.runJs;
}
reloadUrl(): void {
2019-10-06 23:08:22 +00:00
if (this.externalPreviewHelper.isVisible()) {
2019-07-07 01:37:15 +00:00
const webview = this.getWebview();
2019-07-04 19:34:21 +00:00
webview.reload();
}
}
2019-07-07 01:37:15 +00:00
getWebview(): WebviewTag {
return this.$refs.imagePreviewExt as WebviewTag;
}
2020-03-15 02:31:28 +00:00
2020-03-15 14:02:31 +00:00
reset(): void {
2020-03-15 02:31:28 +00:00
this.externalPreviewHelper = new ExternalImagePreviewHelper(this);
this.localPreviewHelper = new LocalImagePreviewHelper(this);
this.url = null;
this.domain = undefined;
this.sticky = false;
this.runJs = true;
this.debug = false;
this.jsMutator = new ImagePreviewMutator(this.debug);
this.cancelExitTimer();
this.cancelTimer();
this.exitUrl = null;
this.initialCursorPosition = null;
this.shouldDismiss = false;
this.visibleSince = 0;
this.reRenderStyles();
}
2019-06-08 02:26:01 +00:00
}
</script>
<style lang="scss">
2020-03-15 16:23:39 +00:00
@import "../../node_modules/bootstrap/scss/functions";
@import "../../node_modules/bootstrap/scss/variables";
@import "../../node_modules/bootstrap/scss/mixins/breakpoints";
2019-06-08 02:26:01 +00:00
2019-07-04 19:34:21 +00:00
.image-preview-wrapper {
z-index: 10000;
display: none;
2019-06-08 02:26:01 +00:00
position: absolute;
left: 0;
2019-07-04 19:34:21 +00:00
top: 0;
2019-06-08 02:26:01 +00:00
width: 50%;
2019-06-23 21:48:41 +00:00
height: 70%;
2019-06-08 02:26:01 +00:00
pointer-events: none;
2020-03-15 18:17:36 +00:00
overflow: visible;
2019-07-04 19:34:21 +00:00
&.visible {
display: block;
}
&.interactive {
pointer-events: auto;
.image-preview-local,
.image-preview-auto {
// pointer-events: auto;
}
}
.image-preview-external {
/* position: absolute;
width: 50%;
height: 70%;
top: 0;
left: 0; */
width: 100%;
height: 100%;
// pointer-events: none;
background-color: black;
}
.image-preview-local {
/* position: absolute;
width: 50%;
height: 70%;
top: 0;
left: 0; */
width: 100%;
height: 100%;
// pointer-events: none;
background-size: contain;
background-position: top left;
background-repeat: no-repeat;
// background-color: black;
}
.image-preview-toolbar {
position: absolute;
/* background-color: green; */
left: 0;
top: 0;
margin: 1rem;
height: 3.5rem;
display: flex;
-webkit-backdrop-filter: blur(10px);
flex-direction: row;
width: 15rem;
flex-wrap: nowrap;
background-color: rgba(77, 76, 116, 0.92);
border-radius: 3px;
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 0.5rem;
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
a i.fa {
font-size: 1.25rem;
top: 50%;
position: relative;
transform: translateY(-50%);
}
a {
flex: 1;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.25);
border-radius: 3px;
margin-right: 0.5rem;
background-color: rgba(0, 0, 0, 0.1);
}
a:last-child {
margin-right: 0;
}
.toggled {
background-color: rgba(255, 255, 255, 0.2);
box-shadow: 0 0 1px 0px rgba(255, 255, 255, 0.6);
}
}
}
2019-06-08 02:26:01 +00:00
</style>