(function() { if (window.jopext_hasRun) return; window.jopext_hasRun = true; console.info('jopext: Loading content script'); let browser_ = null; if (typeof browser !== 'undefined') { // eslint-disable-next-line no-undef browser_ = browser; // eslint-disable-next-line no-undef browserSupportsPromises_ = true; } else if (typeof chrome !== 'undefined') { // eslint-disable-next-line no-undef browser_ = chrome; // eslint-disable-next-line no-undef browserSupportsPromises_ = false; } function absoluteUrl(url) { 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 pageTitle() { const titleElements = document.getElementsByTagName('title'); if (titleElements.length) return titleElements[0].text.trim(); return document.title.trim(); } 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] !== '/') { output = output.split('/'); output.pop(); output = output.join('/'); } return output; } function getJoplinClipperSvgClassName(svg) { for (const className of svg.classList) { if (className.indexOf('joplin-clipper-svg-') === 0) return className; } return ''; } function getImageSizes(element, forceAbsoluteUrls = false) { const output = {}; 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; } function getAnchorNames(element) { const output = []; // Anchor names are normally in A tags but can be in SPAN too // https://github.com/laurent22/joplin-turndown/commit/45f4ee6bf15b8804bdc2aa1d7ecb2f8cb594b8e5#diff-172b8b2bc3ba160589d3a7eeb4913687R232 for (const tagName of ['a', 'span']) { const anchors = element.getElementsByTagName(tagName); for (let i = 0; i < anchors.length; i++) { const anchor = anchors[i]; if (anchor.id) { output.push(anchor.id); } else if (anchor.name) { output.push(anchor.name); } } } 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) { if (image.currentSrc) return image.currentSrc; return image.src; } // Cleans up element by removing all its invisible children (which we don't want to render as Markdown) // And hard-code the image dimensions so that the information can be used by the clipper server to // display them at the right sizes in the notes. function cleanUpElement(convertToMarkup, element, imageSizes, imageIndexes) { const childNodes = element.childNodes; const hiddenNodes = []; for (let i = 0; i < childNodes.length; i++) { const node = childNodes[i]; const nodeName = node.nodeName.toLowerCase(); const isHidden = node && node.classList && node.classList.contains('joplin-clipper-hidden'); if (isHidden) { hiddenNodes.push(node); } else { // If the data-joplin-clipper-value has been set earlier, create a new DIV element // to replace the input or text area, so that it can be exported. if (node.getAttribute && node.getAttribute('data-joplin-clipper-value')) { const div = document.createElement('div'); div.innerText = node.getAttribute('data-joplin-clipper-value'); node.parentNode.insertBefore(div, node.nextSibling); element.removeChild(node); } if (nodeName === 'img') { const src = absoluteUrl(imageSrc(node)); node.setAttribute('src', src); if (!(src in imageIndexes)) imageIndexes[src] = 0; if (!imageSizes[src]) { // This seems to concern dynamic images that don't really such as Gravatar, etc. console.warn('Found an image for which the size had not been fetched:', src); } else { const imageSize = imageSizes[src][imageIndexes[src]]; imageIndexes[src]++; if (imageSize && convertToMarkup === 'markdown') { node.width = imageSize.width; node.height = imageSize.height; } } } if (nodeName === 'svg') { const className = getJoplinClipperSvgClassName(node); if (!(className in imageIndexes)) imageIndexes[className] = 0; if (!imageSizes[className]) { // This seems to concern dynamic images that don't really such as Gravatar, etc. console.warn('Found an SVG for which the size had not been fetched:', className); } else { const imageSize = imageSizes[className][imageIndexes[className]]; imageIndexes[className]++; if (imageSize) { node.style.width = `${imageSize.width}px`; node.style.height = `${imageSize.height}px`; } } } cleanUpElement(convertToMarkup, node, imageSizes, imageIndexes); } } for (const hiddenNode of hiddenNodes) { if (!hiddenNode.parentNode) continue; hiddenNode.parentNode.removeChild(hiddenNode); } } // When we clone the document before cleaning it, we lose some of the information that might have been set via CSS or // JavaScript, in particular whether an element was hidden or not. This function pre-process the document by // adding a "joplin-clipper-hidden" class to all currently hidden elements in the current document. // This class is then used in cleanUpElement() on the cloned document to find an element should be visible or not. function preProcessDocument(element) { const childNodes = element.childNodes; for (let i = childNodes.length - 1; i >= 0; i--) { const node = childNodes[i]; const nodeName = node.nodeName.toLowerCase(); const nodeParent = node.parentNode; const nodeParentName = nodeParent ? nodeParent.nodeName.toLowerCase() : ''; const computedStyle = node.nodeType === 1 ? window.getComputedStyle(node) : {}; let isVisible = node.nodeType === 1 ? computedStyle.display !== 'none' && computedStyle.visibility !== 'hidden' : true; if (isVisible && ['script', 'noscript', 'style', 'select', 'option', 'button'].indexOf(nodeName) >= 0) isVisible = false; // If it's a text input or a textarea and it has a value, save // that value to data-joplin-clipper-value. This is then used // when cleaning up the document to export the value. if (['input', 'textarea'].indexOf(nodeName) >= 0) { isVisible = !!node.value; if (nodeName === 'input' && node.getAttribute('type') !== 'text') isVisible = false; if (isVisible) node.setAttribute('data-joplin-clipper-value', node.value); } if (nodeName === 'script') { const a = node.getAttribute('type'); if (a && a.toLowerCase().indexOf('math/tex') >= 0) isVisible = true; } if (nodeName === 'source' && nodeParentName === 'picture') { isVisible = false; } if (node.nodeType === 8) { // Comments are just removed since we can't add a class node.parentNode.removeChild(node); } else if (!isVisible) { node.classList.add('joplin-clipper-hidden'); } else { preProcessDocument(node); } } } // This sets the PRE elements computed style to the style attribute, so that // the info can be exported and later processed by the htmlToMd converter // to detect code blocks. function hardcodePreStyles(doc) { const preElements = doc.getElementsByTagName('pre'); for (const preElement of preElements) { const fontFamily = getComputedStyle(preElement).getPropertyValue('font-family'); const fontFamilyArray = fontFamily.split(',').map(f => f.toLowerCase().trim()); if (fontFamilyArray.indexOf('monospace') >= 0) { preElement.style.fontFamily = fontFamily; } } } function addSvgClass(doc) { const svgs = doc.getElementsByTagName('svg'); let svgId = 0; for (const svg of svgs) { if (!getJoplinClipperSvgClassName(svg)) { svg.classList.add(`joplin-clipper-svg-${svgId}`); svgId++; } } } // Given a document, return a