2018-02-04 19:12:24 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2019-12-30 22:54:13 +02:00
|
|
|
<head id="joplin-container-root-head">
|
2018-03-20 01:04:48 +02:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
2018-02-04 19:12:24 +02:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2019-11-07 22:32:11 +02:00
|
|
|
#joplin-container-content {
|
2019-07-14 17:00:02 +02:00
|
|
|
/* Needs this in case the content contains elements with absolute positioning */
|
|
|
|
/* Without this they would just stay at a fixed position when scrolling */
|
|
|
|
position: relative;
|
2018-02-04 19:12:24 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
2019-07-16 23:58:44 +02:00
|
|
|
|
|
|
|
/* Note: the height is set via updateBodyHeight(). Setting it here to 100% */
|
|
|
|
/* won't work with some pages due to the position: relative */
|
2018-02-04 19:12:24 +02:00
|
|
|
}
|
|
|
|
|
2018-03-20 01:04:48 +02:00
|
|
|
mark {
|
2018-12-09 02:18:10 +02:00
|
|
|
background: #F3B717;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mark-selected {
|
2018-03-20 01:04:48 +02:00
|
|
|
background: #CF3F00;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2018-05-19 20:09:27 +02:00
|
|
|
ul ul, ul ol, ol ul, ol ol {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2018-02-04 19:12:24 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
2019-11-07 22:32:11 +02:00
|
|
|
<body id="joplin-container-body">
|
|
|
|
<div id="joplin-container-styleContainer"></div>
|
|
|
|
<div id="joplin-container-markScriptContainer"></div>
|
|
|
|
<div id="joplin-container-content" ondragstart="return false;" ondrop="return false;"></div>
|
2019-01-17 21:01:35 +02:00
|
|
|
<script src="./lib.js"></script>
|
2018-02-04 19:12:24 +02:00
|
|
|
|
|
|
|
<script>
|
2019-05-24 18:34:18 +02:00
|
|
|
const ipcProxySendToHost = (methodName, arg) => {
|
|
|
|
window.postMessage({ target: 'main', name: methodName, args: [ arg ] }, '*');
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2019-11-07 22:32:11 +02:00
|
|
|
const contentElement = document.getElementById('joplin-container-content');
|
2018-02-04 19:12:24 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
const ipc = {};
|
2018-09-21 19:20:06 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
window.addEventListener('message', webviewLib.logEnabledEventHandler(event => {
|
|
|
|
// Here we only deal with messages that are sent from the main Electro process to the webview.
|
|
|
|
if (!event.data || event.data.target !== 'webview') return;
|
2018-09-21 19:20:06 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
const callName = event.data.name;
|
|
|
|
const callData = event.data.data;
|
2018-09-21 19:20:06 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
if (!ipc[callName]) {
|
|
|
|
console.warn('Missing IPC function:', event.data);
|
|
|
|
} else {
|
|
|
|
ipc[callName](callData);
|
|
|
|
}
|
|
|
|
}));
|
2019-12-30 22:54:13 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
// Note: the scroll position source of truth is "percentScroll_". This is easier to manage than scrollTop because
|
|
|
|
// the scrollTop value depends on the images being loaded or not. For example, if the scrollTop is saved while
|
|
|
|
// images are being displayed then restored while images are being reloaded, the new scrollTop might be changed
|
|
|
|
// so that it is not greater than contentHeight. On the other hand, with percentScroll it is possible to restore
|
|
|
|
// it at any time knowing that it's not going to be changed because the content height has changed.
|
|
|
|
// To restore percentScroll the "checkScrollIID" interval is used. It constantly resets the scroll position during
|
|
|
|
// one second after the content has been updated.
|
|
|
|
//
|
|
|
|
// ignoreNextScroll is used to differentiate between scroll event from the users and those that are the result
|
|
|
|
// of programmatically changing scrollTop. We only want to respond to events initiated by the user.
|
|
|
|
|
|
|
|
let percentScroll_ = 0;
|
|
|
|
let checkScrollIID_ = null;
|
|
|
|
|
|
|
|
function setPercentScroll(percent) {
|
|
|
|
percentScroll_ = percent;
|
|
|
|
contentElement.scrollTop = percentScroll_ * maxScrollTop();
|
2018-02-04 19:12:24 +02:00
|
|
|
}
|
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
function percentScroll() {
|
|
|
|
return percentScroll_;
|
|
|
|
}
|
2018-02-04 19:12:24 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
function restorePercentScroll() {
|
|
|
|
setPercentScroll(percentScroll_);
|
|
|
|
}
|
2017-11-07 23:11:14 +02:00
|
|
|
|
2019-09-09 19:16:00 +02:00
|
|
|
ipc.scrollToHash = (event) => {
|
|
|
|
if (window.scrollToHashIID_) clearInterval(window.scrollToHashIID_);
|
|
|
|
window.scrollToHashIID_ = setInterval(() => {
|
|
|
|
if (document.readyState !== 'complete') return;
|
|
|
|
clearInterval(window.scrollToHashIID_);
|
|
|
|
const hash = event.hash.toLowerCase();
|
|
|
|
const e = document.getElementById(hash);
|
|
|
|
if (!e) {
|
|
|
|
console.warn('Cannot find hash', hash);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
e.scrollIntoView();
|
|
|
|
|
|
|
|
// Make sure the editor pane is also scrolled
|
|
|
|
setTimeout(() => {
|
|
|
|
const percent = currentPercentScroll();
|
|
|
|
setPercentScroll(percent);
|
|
|
|
ipcProxySendToHost('percentScroll', percent);
|
|
|
|
}, 10);
|
|
|
|
}, 100);
|
|
|
|
}
|
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
ipc.setHtml = (event) => {
|
|
|
|
const html = event.html;
|
2017-11-28 22:58:07 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
markJsHackMarkerInserted_ = false;
|
2018-09-21 19:20:06 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
updateBodyHeight();
|
2018-12-14 00:57:14 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
contentElement.innerHTML = html;
|
2018-02-04 20:45:52 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
let previousContentHeight = contentElement.scrollHeight;
|
|
|
|
let startTime = Date.now();
|
|
|
|
restorePercentScroll();
|
2018-02-04 19:12:24 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
if (!checkScrollIID_) {
|
|
|
|
checkScrollIID_ = setInterval(() => {
|
|
|
|
const h = contentElement.scrollHeight;
|
|
|
|
if (h !== previousContentHeight) {
|
|
|
|
previousContentHeight = h;
|
|
|
|
restorePercentScroll();
|
|
|
|
}
|
|
|
|
if (Date.now() - startTime >= 1000) {
|
|
|
|
clearInterval(checkScrollIID_);
|
|
|
|
checkScrollIID_ = null;
|
|
|
|
}
|
|
|
|
}, 1);
|
|
|
|
}
|
2018-02-04 19:12:24 +02:00
|
|
|
|
2019-12-30 22:54:13 +02:00
|
|
|
const pluginAssetsContainer = document.createElement('div');
|
|
|
|
pluginAssetsContainer.innerHTML = event.options.pluginAssetsHeadersHtml;
|
|
|
|
document.getElementById('joplin-container-styleContainer').appendChild(pluginAssetsContainer);
|
2019-12-29 19:58:40 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
if (event.options.downloadResources === 'manual') {
|
|
|
|
webviewLib.setupResourceManualDownload();
|
|
|
|
}
|
2018-02-04 19:12:24 +02:00
|
|
|
}
|
2019-02-18 20:11:53 +02:00
|
|
|
|
2019-10-28 20:56:38 +02:00
|
|
|
let lastScrollEventTime = 0;
|
2019-05-24 18:34:18 +02:00
|
|
|
ipc.setPercentScroll = (event) => {
|
|
|
|
const percent = event.percent;
|
2018-02-04 19:12:24 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
if (checkScrollIID_) {
|
|
|
|
clearInterval(checkScrollIID_);
|
|
|
|
checkScrollIID_ = null;
|
|
|
|
}
|
2018-09-21 19:20:06 +02:00
|
|
|
|
2019-10-28 20:56:38 +02:00
|
|
|
lastScrollEventTime = Date.now();
|
2019-05-24 18:34:18 +02:00
|
|
|
setPercentScroll(percent);
|
2018-02-04 19:12:24 +02:00
|
|
|
}
|
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
// HACK for Mark.js bug - https://github.com/julmot/mark.js/issues/127
|
|
|
|
let markJsHackMarkerInserted_ = false;
|
|
|
|
function addMarkJsSpaceHack(document) {
|
|
|
|
if (markJsHackMarkerInserted_) return;
|
|
|
|
|
|
|
|
const prepareElementsForMarkJs = (elements, type) => {
|
|
|
|
// const markJsHackMarker_ = '​ ​'
|
|
|
|
const markJsHackMarker_ = ' ';
|
|
|
|
for (let i = 0; i < elements.length; i++) {
|
|
|
|
if (!type) {
|
|
|
|
elements[i].innerHTML = elements[i].innerHTML + markJsHackMarker_;
|
|
|
|
} else if (type === 'insertBefore') {
|
|
|
|
elements[i].insertAdjacentHTML('beforeBegin', markJsHackMarker_);
|
|
|
|
}
|
2018-12-14 00:57:14 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-24 18:34:18 +02:00
|
|
|
|
|
|
|
prepareElementsForMarkJs(document.getElementsByTagName('p'));
|
|
|
|
prepareElementsForMarkJs(document.getElementsByTagName('div'));
|
|
|
|
prepareElementsForMarkJs(document.getElementsByTagName('br'), 'insertBefore');
|
|
|
|
markJsHackMarkerInserted_ = true;
|
2018-12-14 00:57:14 +02:00
|
|
|
}
|
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
let mark_ = null;
|
|
|
|
let markSelectedElement_ = null;
|
|
|
|
function setMarkers(keywords, options = null) {
|
|
|
|
if (!options) options = {};
|
|
|
|
|
|
|
|
// TODO: Add support for scriptType on mobile and CLI
|
2018-12-14 00:57:14 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
if (!mark_) {
|
2019-11-07 22:32:11 +02:00
|
|
|
mark_ = new Mark(document.getElementById('joplin-container-content'), {
|
2019-05-24 18:34:18 +02:00
|
|
|
exclude: ['img'],
|
|
|
|
acrossElements: true,
|
|
|
|
});
|
|
|
|
}
|
2018-12-09 02:18:10 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
addMarkJsSpaceHack(document);
|
2019-01-14 21:11:54 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
mark_.unmark()
|
2018-03-20 01:04:48 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
if (markSelectedElement_) markSelectedElement_.classList.remove('mark-selected');
|
2018-12-14 00:57:14 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
let selectedElement = null;
|
|
|
|
let elementIndex = 0;
|
2018-12-09 02:18:10 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
const onEachElement = (element) => {
|
|
|
|
if (!('selectedIndex' in options)) return;
|
2018-12-09 02:18:10 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
if (('selectedIndex' in options) && elementIndex === options.selectedIndex) {
|
|
|
|
markSelectedElement_ = element;
|
|
|
|
element.classList.add('mark-selected');
|
|
|
|
selectedElement = element;
|
|
|
|
}
|
|
|
|
|
|
|
|
elementIndex++;
|
|
|
|
}
|
2018-12-09 02:18:10 +02:00
|
|
|
|
2019-06-26 00:09:53 +02:00
|
|
|
const markKeywordOptions = {
|
|
|
|
each: onEachElement,
|
|
|
|
};
|
|
|
|
|
|
|
|
if ('separateWordSearch' in options) markKeywordOptions.separateWordSearch = options.separateWordSearch;
|
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
for (let i = 0; i < keywords.length; i++) {
|
|
|
|
let keyword = keywords[i];
|
2018-12-14 00:57:14 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
markJsUtils.markKeyword(mark_, keyword, {
|
|
|
|
pregQuote: pregQuote,
|
|
|
|
replaceRegexDiacritics: replaceRegexDiacritics,
|
2019-06-26 00:09:53 +02:00
|
|
|
}, markKeywordOptions);
|
2018-12-14 00:57:14 +02:00
|
|
|
}
|
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
ipcProxySendToHost('setMarkerCount', elementIndex);
|
2018-12-14 00:57:14 +02:00
|
|
|
|
2019-09-07 12:57:31 +02:00
|
|
|
// We only scroll the element into view if the search just happened. So when the user type the search
|
|
|
|
// or select the next/previous result, we scroll into view. However for other actions that trigger a
|
|
|
|
// re-render, we don't scroll as this is normally not wanted.
|
|
|
|
// This is to go around this issue: https://github.com/laurent22/joplin/issues/1833
|
|
|
|
if (selectedElement && Date.now() - options.searchTimestamp <= 1000) selectedElement.scrollIntoView();
|
2018-12-09 02:18:10 +02:00
|
|
|
}
|
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
let markLoaded_ = false;
|
|
|
|
ipc.setMarkers = (event) => {
|
|
|
|
const keywords = event.keywords;
|
|
|
|
const options = event.options;
|
2018-12-09 02:18:10 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
if (!keywords.length && !markLoaded_) return;
|
2018-03-20 01:04:48 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
if (!markLoaded_) {
|
|
|
|
const script = document.createElement('script');
|
|
|
|
script.onload = function() {
|
|
|
|
setMarkers(keywords, options);
|
|
|
|
};
|
2018-09-21 19:20:06 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
script.src = '../../node_modules/mark.js/dist/mark.min.js';
|
2019-11-07 22:32:11 +02:00
|
|
|
document.getElementById('joplin-container-markScriptContainer').appendChild(script);
|
2019-05-24 18:34:18 +02:00
|
|
|
markLoaded_ = true;
|
|
|
|
} else {
|
2018-12-09 02:18:10 +02:00
|
|
|
setMarkers(keywords, options);
|
2019-05-24 18:34:18 +02:00
|
|
|
}
|
|
|
|
}
|
2018-03-20 01:04:48 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
function maxScrollTop() {
|
|
|
|
return Math.max(0, contentElement.scrollHeight - contentElement.clientHeight);
|
2018-03-20 01:04:48 +02:00
|
|
|
}
|
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
// The body element needs to have a fixed height for the content to be scrollable
|
|
|
|
function updateBodyHeight() {
|
2019-11-07 22:32:11 +02:00
|
|
|
document.getElementById('joplin-container-body').style.height = window.innerHeight + 'px';
|
|
|
|
document.getElementById('joplin-container-content').style.height = window.innerHeight + 'px';
|
2019-05-24 18:34:18 +02:00
|
|
|
}
|
2018-02-04 19:12:24 +02:00
|
|
|
|
2019-09-09 19:16:00 +02:00
|
|
|
function currentPercentScroll() {
|
|
|
|
const m = maxScrollTop();
|
|
|
|
return m ? contentElement.scrollTop / m : 0;
|
|
|
|
}
|
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
contentElement.addEventListener('scroll', webviewLib.logEnabledEventHandler(e => {
|
2019-10-28 20:56:38 +02:00
|
|
|
// If the last scroll event was done by the user, lastScrollEventTime is set and
|
|
|
|
// we can use that to skip the event handling. We skip it because in that case
|
|
|
|
// the scroll position has already been updated. Also we add a 200ms interval
|
|
|
|
// because otherwise it's most likely a glitch where we called ipc.setPercentScroll
|
|
|
|
// but the scroll event listener has not been called.
|
|
|
|
if (lastScrollEventTime && Date.now() - lastScrollEventTime < 200) {
|
|
|
|
lastScrollEventTime = 0;
|
2019-05-24 18:34:18 +02:00
|
|
|
return;
|
|
|
|
}
|
2019-10-28 20:56:38 +02:00
|
|
|
|
|
|
|
lastScrollEventTime = 0;
|
|
|
|
|
2019-09-09 19:16:00 +02:00
|
|
|
const percent = currentPercentScroll();
|
2019-05-24 18:34:18 +02:00
|
|
|
setPercentScroll(percent);
|
|
|
|
|
|
|
|
ipcProxySendToHost('percentScroll', percent);
|
|
|
|
}));
|
2018-02-04 20:45:52 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
document.addEventListener('contextmenu', webviewLib.logEnabledEventHandler(event => {
|
|
|
|
let element = event.target;
|
2018-09-21 19:20:06 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
// To handle right clicks on resource icons
|
|
|
|
if (element && !element.getAttribute('data-resource-id')) element = element.parentElement;
|
|
|
|
|
|
|
|
if (element && element.getAttribute('data-resource-id')) {
|
2018-09-21 19:20:06 +02:00
|
|
|
ipcProxySendToHost('contextMenu', {
|
2019-05-24 18:34:18 +02:00
|
|
|
type: element.getAttribute('src') ? 'image' : 'resource',
|
|
|
|
resourceId: element.getAttribute('data-resource-id'),
|
2018-06-26 01:52:46 +02:00
|
|
|
});
|
2019-05-24 18:34:18 +02:00
|
|
|
} else {
|
|
|
|
const selectedText = window.getSelection().toString();
|
|
|
|
|
|
|
|
if (selectedText) {
|
|
|
|
ipcProxySendToHost('contextMenu', {
|
|
|
|
type: 'text',
|
|
|
|
textToCopy: selectedText,
|
|
|
|
});
|
|
|
|
} else if (event.target.getAttribute('href')) {
|
|
|
|
ipcProxySendToHost('contextMenu', {
|
|
|
|
type: 'link',
|
|
|
|
textToCopy: event.target.getAttribute('href'),
|
|
|
|
});
|
|
|
|
}
|
2018-06-26 01:52:46 +02:00
|
|
|
}
|
2019-05-24 18:34:18 +02:00
|
|
|
}));
|
|
|
|
|
|
|
|
webviewLib.initialize({
|
|
|
|
postMessage: ipcProxySendToHost,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Disable drag and drop otherwise it's possible to drop a URL
|
|
|
|
// on it and it will open in the view as a website.
|
|
|
|
document.addEventListener('drop', webviewLib.logEnabledEventHandler(e => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
}));
|
|
|
|
document.addEventListener('dragover', webviewLib.logEnabledEventHandler(e => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
}));
|
|
|
|
document.addEventListener('dragover', webviewLib.logEnabledEventHandler(e => {
|
|
|
|
e.preventDefault();
|
|
|
|
}));
|
|
|
|
|
|
|
|
window.addEventListener('resize', webviewLib.logEnabledEventHandler(() => {
|
|
|
|
updateBodyHeight();
|
|
|
|
}));
|
2018-02-04 20:45:52 +02:00
|
|
|
|
2019-05-24 18:34:18 +02:00
|
|
|
updateBodyHeight();
|
|
|
|
} catch (error) {
|
|
|
|
ipcProxySendToHost('error:' + JSON.stringify(webviewLib.cloneError(error)));
|
|
|
|
throw error;
|
|
|
|
}
|
2018-02-04 19:12:24 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
2018-11-08 00:37:13 +02:00
|
|
|
</html>
|