2016-10-04 13:30:05 +00:00
|
|
|
import { savePercent, retrievePercent } from '../../_global/js/tools';
|
|
|
|
import { toggleSaveLinkForm } from './uiTools';
|
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
const $ = global.jquery = require('jquery');
|
2016-03-08 16:02:34 +00:00
|
|
|
require('jquery.cookie');
|
2016-09-28 16:59:15 +00:00
|
|
|
require('jquery-ui-browserify');
|
2016-09-28 08:30:18 +00:00
|
|
|
const annotator = require('annotator');
|
2016-03-08 16:02:34 +00:00
|
|
|
|
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
$.fn.ready(() => {
|
|
|
|
const $listmode = $('#listmode');
|
|
|
|
const $listentries = $('#list-entries');
|
2015-01-28 12:58:12 +00:00
|
|
|
|
|
|
|
/* ==========================================================================
|
|
|
|
Menu
|
|
|
|
========================================================================== */
|
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
$('#menu').click(() => {
|
2016-06-09 17:02:38 +00:00
|
|
|
$('#links').toggleClass('menu--open');
|
2016-09-28 08:30:18 +00:00
|
|
|
const content = $('#content');
|
|
|
|
if (content.hasClass('opacity03')) {
|
|
|
|
content.removeClass('opacity03');
|
2015-01-28 12:58:12 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/* ==========================================================================
|
|
|
|
List mode or Table Mode
|
|
|
|
========================================================================== */
|
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
$listmode.click(() => {
|
|
|
|
if ($.cookie('listmode') === 1) {
|
2015-01-28 12:58:12 +00:00
|
|
|
// Cookie
|
2016-06-09 17:02:38 +00:00
|
|
|
$.removeCookie('listmode');
|
2015-01-28 12:58:12 +00:00
|
|
|
|
2016-06-09 17:02:38 +00:00
|
|
|
$listentries.removeClass('listmode');
|
|
|
|
$listmode.removeClass('tablemode');
|
|
|
|
$listmode.addClass('listmode');
|
|
|
|
} else {
|
2015-01-28 12:58:12 +00:00
|
|
|
// Cookie
|
2016-09-28 08:30:18 +00:00
|
|
|
$.cookie('listmode', 1, { expires: 365 });
|
2015-01-28 12:58:12 +00:00
|
|
|
|
2016-06-09 17:02:38 +00:00
|
|
|
$listentries.addClass('listmode');
|
|
|
|
$listmode.removeClass('listmode');
|
|
|
|
$listmode.addClass('tablemode');
|
2015-01-28 12:58:12 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/* ==========================================================================
|
|
|
|
Cookie listmode
|
|
|
|
========================================================================== */
|
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
if ($.cookie('listmode') === 1) {
|
2016-06-09 17:02:38 +00:00
|
|
|
$listentries.addClass('listmode');
|
|
|
|
$listmode.removeClass('listmode');
|
|
|
|
$listmode.addClass('tablemode');
|
2015-01-28 12:58:12 +00:00
|
|
|
}
|
|
|
|
|
2016-02-14 19:12:03 +00:00
|
|
|
/* ==========================================================================
|
|
|
|
Add tag panel
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
$('#nav-btn-add-tag').on('click', () => {
|
2016-06-09 17:02:38 +00:00
|
|
|
$('.nav-panel-add-tag').toggle(100);
|
|
|
|
$('.nav-panel-menu').addClass('hidden');
|
|
|
|
$('#tag_label').focus();
|
|
|
|
return false;
|
|
|
|
});
|
2016-02-14 19:12:03 +00:00
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
/**
|
|
|
|
* Filters & Export
|
|
|
|
*/
|
|
|
|
// no display if filters not available
|
|
|
|
if ($('div').is('#filters')) {
|
|
|
|
$('#button_filters').show();
|
|
|
|
$('#clear_form_filters').on('click', () => {
|
|
|
|
$('#filters input').val('');
|
|
|
|
$('#filters :checked').removeAttr('checked');
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-03-08 16:02:34 +00:00
|
|
|
/* ==========================================================================
|
|
|
|
Annotations & Remember position
|
|
|
|
========================================================================== */
|
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
if ($('article').length) {
|
|
|
|
const app = new annotator.App();
|
|
|
|
|
|
|
|
app.include(annotator.ui.main, {
|
|
|
|
element: document.querySelector('article'),
|
|
|
|
});
|
2016-03-08 16:02:34 +00:00
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
const x = JSON.parse($('#annotationroutes').html());
|
|
|
|
app.include(annotator.storage.http, x);
|
2016-03-08 16:02:34 +00:00
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
app.start().then(() => {
|
|
|
|
app.annotations.load({ entry: x.entryId });
|
|
|
|
});
|
2016-03-08 16:02:34 +00:00
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
$(window).scroll(() => {
|
|
|
|
const scrollTop = $(window).scrollTop();
|
|
|
|
const docHeight = $(document).height();
|
|
|
|
const scrollPercent = (scrollTop) / (docHeight);
|
|
|
|
const scrollPercentRounded = Math.round(scrollPercent * 100) / 100;
|
|
|
|
savePercent(x.entryId, scrollPercentRounded);
|
|
|
|
});
|
2016-03-08 16:02:34 +00:00
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
retrievePercent(x.entryId);
|
2016-03-08 16:02:34 +00:00
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
$(window).resize(() => {
|
2016-06-09 17:02:38 +00:00
|
|
|
retrievePercent(x.entryId);
|
2016-09-28 08:30:18 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Close window after adding entry if popup
|
|
|
|
*/
|
|
|
|
const currentUrl = window.location.href;
|
|
|
|
if (currentUrl.match('&closewin=true')) {
|
|
|
|
window.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tags autocomplete
|
|
|
|
*/
|
2016-09-28 16:59:15 +00:00
|
|
|
/**
|
|
|
|
* Not working on v2
|
|
|
|
*
|
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
$('#value').bind('keydown', (event) => {
|
|
|
|
if (event.keyCode === $.ui.keyCode.TAB && $(this).data('ui-autocomplete').menu.active) {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
}).autocomplete({
|
|
|
|
source: function source(request, response) {
|
|
|
|
$.getJSON('./?view=tags', {
|
|
|
|
term: extractLast(request.term),
|
|
|
|
//id: $(':hidden#entry_id').val()
|
|
|
|
}, response);
|
|
|
|
},
|
|
|
|
search: function search() {
|
|
|
|
// custom minLength
|
|
|
|
const term = extractLast(this.value);
|
|
|
|
return term.length >= 1;
|
|
|
|
},
|
|
|
|
focus: function focus() {
|
|
|
|
// prevent value inserted on focus
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
select: function select(event, ui) {
|
|
|
|
const terms = split(this.value);
|
|
|
|
// remove the current input
|
|
|
|
terms.pop();
|
|
|
|
// add the selected item
|
|
|
|
terms.push(ui.item.value);
|
|
|
|
// add placeholder to get the comma-and-space at the end
|
|
|
|
terms.push('');
|
|
|
|
this.value = terms.join(', ');
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
});
|
2016-09-28 16:59:15 +00:00
|
|
|
*/
|
2016-09-28 08:30:18 +00:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Close the message box when the user clicks the close icon
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
$('a.closeMessage').on('click', () => {
|
|
|
|
$(this).parents('div.messages').slideUp(300, () => { $(this).remove(); });
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#search-form').hide();
|
|
|
|
$('#bagit-form').hide();
|
|
|
|
$('#filters').hide();
|
|
|
|
$('#download-form').hide();
|
2016-03-08 16:02:34 +00:00
|
|
|
|
2016-09-28 08:30:18 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Toggle the 'Search' popup in the sidebar
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
function toggleSearch() {
|
|
|
|
$('#search-form').toggle();
|
|
|
|
$('#search').toggleClass('current');
|
|
|
|
$('#search').toggleClass('active-current');
|
|
|
|
$('#search-arrow').toggleClass('arrow-down');
|
|
|
|
if ($('#search').hasClass('current')) {
|
|
|
|
$('#content').addClass('opacity03');
|
|
|
|
} else {
|
|
|
|
$('#content').removeClass('opacity03');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Toggle the 'Filter' popup on entries list
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
function toggleFilter() {
|
|
|
|
$('#filters').toggle();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Toggle the 'Download' popup on entries list
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
function toggleDownload() {
|
|
|
|
$('#download-form').toggle();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Toggle the 'Save a Link' popup in the sidebar
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
function toggleBagit() {
|
|
|
|
$('#bagit-form').toggle();
|
|
|
|
$('#bagit').toggleClass('current');
|
|
|
|
$('#bagit').toggleClass('active-current');
|
|
|
|
$('#bagit-arrow').toggleClass('arrow-down');
|
|
|
|
if ($('#bagit').hasClass('current')) {
|
|
|
|
$('#content').addClass('opacity03');
|
|
|
|
} else {
|
|
|
|
$('#content').removeClass('opacity03');
|
2016-03-08 16:02:34 +00:00
|
|
|
}
|
2016-09-28 08:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Close all #links popups in the sidebar
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
function closePopups() {
|
|
|
|
$('#links .messages').hide();
|
|
|
|
$('#links > li > a').removeClass('active-current');
|
|
|
|
$('#links > li > a').removeClass('current');
|
|
|
|
$('[id$=-arrow]').removeClass('arrow-down');
|
|
|
|
$('#content').removeClass('opacity03');
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#search').click(() => {
|
|
|
|
closePopups();
|
|
|
|
toggleSearch();
|
|
|
|
$('#searchfield').focus();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.filter-btn').click(() => {
|
|
|
|
closePopups();
|
|
|
|
toggleFilter();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.download-btn').click(() => {
|
|
|
|
closePopups();
|
|
|
|
toggleDownload();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#bagit').click(() => {
|
|
|
|
closePopups();
|
|
|
|
toggleBagit();
|
|
|
|
$('#plainurl').focus();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#search-form-close').click(() => {
|
|
|
|
toggleSearch();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#filter-form-close').click(() => {
|
|
|
|
toggleFilter();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#download-form-close').click(() => {
|
|
|
|
toggleDownload();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#bagit-form-close').click(() => {
|
|
|
|
toggleBagit();
|
|
|
|
});
|
|
|
|
|
|
|
|
const $bagitFormForm = $('#bagit-form-form');
|
|
|
|
|
|
|
|
/* ==========================================================================
|
|
|
|
bag it link and close button
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
// send 'bag it link' form request via ajax
|
|
|
|
$bagitFormForm.submit((event) => {
|
|
|
|
$('body').css('cursor', 'wait');
|
|
|
|
$('#add-link-result').empty();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
type: $bagitFormForm.attr('method'),
|
|
|
|
url: $bagitFormForm.attr('action'),
|
|
|
|
data: $bagitFormForm.serialize(),
|
|
|
|
success: function success() {
|
|
|
|
$('#add-link-result').html('Done!');
|
|
|
|
$('#plainurl').val('');
|
|
|
|
$('#plainurl').blur('');
|
|
|
|
$('body').css('cursor', 'auto');
|
|
|
|
},
|
|
|
|
error: function error() {
|
|
|
|
$('#add-link-result').html('Failed!');
|
|
|
|
$('body').css('cursor', 'auto');
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
|
|
|
|
|
|
|
/* ==========================================================================
|
|
|
|
Process all links inside an article
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
$('article a[href^="http"]').after(
|
|
|
|
() => `<a href="${$(this).attr('href')}" class="add-to-wallabag-link-after" ` +
|
|
|
|
'alt="add to wallabag" title="add to wallabag"></a>'
|
|
|
|
);
|
|
|
|
|
|
|
|
$('.add-to-wallabag-link-after').click((event) => {
|
|
|
|
toggleSaveLinkForm($(this).attr('href'), event);
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
2015-01-28 12:58:12 +00:00
|
|
|
});
|