mirror of
https://github.com/wallabag/wallabag.git
synced 2025-03-15 23:52:39 +00:00
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import $ from 'jquery';
|
|
|
|
function supportsLocalStorage() {
|
|
try {
|
|
return 'localStorage' in window && window.localStorage !== null;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function savePercent(id, percent) {
|
|
if (!supportsLocalStorage()) { return false; }
|
|
localStorage[`wallabag.article.${id}.percent`] = percent;
|
|
return true;
|
|
}
|
|
|
|
function retrievePercent(id, resized) {
|
|
if (!supportsLocalStorage()) { return false; }
|
|
|
|
const bheight = $(document).height();
|
|
const percent = localStorage[`wallabag.article.${id}.percent`];
|
|
const scroll = bheight * percent;
|
|
|
|
if (!resized) {
|
|
window.scrollTo({
|
|
top: scroll,
|
|
behavior: 'smooth',
|
|
});
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
function initPreviewText() {
|
|
// no display if preview_text not available
|
|
if ($('div').is('#preview-article')) {
|
|
const defaultFontFamily = $('#config_font').val();
|
|
const defaultFontSize = $('#config_fontsize').val();
|
|
const defaultLineHeight = $('#config_lineHeight').val();
|
|
const defaultMaxWidth = $('#config_maxWidth').val();
|
|
const previewContent = $('#preview-content');
|
|
|
|
previewContent.css('font-family', defaultFontFamily);
|
|
previewContent.css('font-size', `${defaultFontSize}em`);
|
|
previewContent.css('line-height', `${defaultLineHeight}em`);
|
|
$('#preview-article').css('max-width', `${defaultMaxWidth}em`);
|
|
}
|
|
}
|
|
|
|
export {
|
|
savePercent,
|
|
retrievePercent,
|
|
initPreviewText,
|
|
};
|