From f77c652e612241e046d16690ca239cce44a00b07 Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Mon, 4 Mar 2019 16:08:55 -0500 Subject: Improve context click logic --- app/src/web/assets/js/context_a.ts | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) (limited to 'app/src/web/assets/js/context_a.ts') diff --git a/app/src/web/assets/js/context_a.ts b/app/src/web/assets/js/context_a.ts index 4751bbdc..5eec7611 100644 --- a/app/src/web/assets/js/context_a.ts +++ b/app/src/web/assets/js/context_a.ts @@ -43,12 +43,25 @@ return true; }; + const _getImageStyleUrl = (el: Element): string | null => { + const img = el.querySelector("[style*=\"background-image: url(\"]"); + if (!img) { + return null + } + return (window.getComputedStyle(img, null).backgroundImage).trim().slice(4, -1); + }; + + /** + * Opens image activity for posts with just one image + */ const _frostImage: EventHandler = (e, target) => { let element: Element = target; // Notifications are two layers under for (let i = 0; i < 2; i++) { if (element.tagName !== 'A') { element = element.parentElement; + } else { + break } } if (element.tagName !== 'A') { @@ -60,12 +73,8 @@ } const text = (element.parentElement).innerText; // Check if image item exists, first in children and then in parent - let image = element.querySelector("[style*=\"background-image: url(\"]"); - if (!image) { - image = (element.parentElement).querySelector("[style*=\"background-image: url(\"]") - } - if (image) { - const imageUrl = (window.getComputedStyle(image, null).backgroundImage).trim().slice(4, -1); + const imageUrl = _getImageStyleUrl(element) || _getImageStyleUrl(element.parentElement); + if (imageUrl) { console.log(`Context image: ${imageUrl}`); Frost.loadImage(imageUrl, text); return true; @@ -83,7 +92,7 @@ return true; }; - const handlers = [_frostCopyComment, _frostCopyPost, _frostImage]; + const handlers = [_frostImage, _frostCopyComment, _frostCopyPost]; const _frostAContext = (e: Event) => { Frost.longClick(true); -- cgit v1.2.3