// Do not import anything here -- the built version of this file is copied to packages/app-clipper's // content_scripts folder. function absoluteUrl(url: string) { if (!url) return url; const protocol = url.toLowerCase().split(':')[0]; if (['http', 'https', 'file', 'data'].indexOf(protocol) >= 0) return url; if (url.indexOf('//') === 0) { return location.protocol + url; } else if (url[0] === '/') { return `${location.protocol}//${location.host}${url}`; } else { return `${baseUrl()}/${url}`; } } function pageLocationOrigin() { // location.origin normally returns the protocol + domain + port (eg. https://example.com:8080) // but for file:// protocol this is browser dependant and in particular Firefox returns "null" // in this case. if (location.protocol === 'file:') { return 'file://'; } else { return location.origin; } } function baseUrl() { let output = pageLocationOrigin() + location.pathname; if (output[output.length - 1] !== '/') { const output2 = output.split('/'); output2.pop(); output = output2.join('/'); } return output; } function getJoplinClipperSvgClassName(svg: SVGSVGElement) { for (const className of svg.classList) { if (className.indexOf('joplin-clipper-svg-') === 0) return className; } return ''; } type ImageObject = { width: number; height: number; naturalWidth?: number; naturalHeight?: number; }; export function getImageSizes(element: Document, forceAbsoluteUrls = false) { const output: Record = {}; const images = element.getElementsByTagName('img'); for (let i = 0; i < images.length; i++) { const img = images[i]; if (img.classList && img.classList.contains('joplin-clipper-hidden')) continue; let src = imageSrc(img); src = forceAbsoluteUrls ? absoluteUrl(src) : src; if (!output[src]) output[src] = []; output[src].push({ width: img.width, height: img.height, naturalWidth: img.naturalWidth, naturalHeight: img.naturalHeight, }); } const svgs = element.getElementsByTagName('svg'); for (let i = 0; i < svgs.length; i++) { const svg = svgs[i]; if (svg.classList && svg.classList.contains('joplin-clipper-hidden')) continue; const className = getJoplinClipperSvgClassName(svg);// 'joplin-clipper-svg-' + i; if (!className) { console.warn('SVG without a Joplin class:', svg); continue; } if (!svg.classList.contains(className)) { svg.classList.add(className); } const rect = svg.getBoundingClientRect(); if (!output[className]) output[className] = []; output[className].push({ width: rect.width, height: rect.height, }); } return output; } // In general we should use currentSrc because that's the image that's currently displayed, // especially within tags or with srcset. In these cases there can be multiple // sources and the best one is probably the one being displayed, thus currentSrc. function imageSrc(image: HTMLImageElement) { if (image.currentSrc) return image.currentSrc; return image.src; } // Given a document, return a