2019-07-18 05:27:39 +02:00
|
|
|
// OnClick attaches a listener to the elements that match the selector.
|
|
|
|
function onClick(selector, callback, noPreventDefault) {
|
|
|
|
let elements = document.querySelectorAll(selector);
|
|
|
|
elements.forEach((element) => {
|
|
|
|
element.onclick = (event) => {
|
|
|
|
if (!noPreventDefault) {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
callback(event);
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show and hide the main menu on mobile devices.
|
|
|
|
function toggleMainMenu() {
|
|
|
|
let menu = document.querySelector(".header nav ul");
|
|
|
|
if (DomHelper.isVisible(menu)) {
|
|
|
|
menu.style.display = "none";
|
|
|
|
} else {
|
|
|
|
menu.style.display = "block";
|
|
|
|
}
|
|
|
|
|
|
|
|
let searchElement = document.querySelector(".header .search");
|
|
|
|
if (DomHelper.isVisible(searchElement)) {
|
|
|
|
searchElement.style.display = "none";
|
|
|
|
} else {
|
|
|
|
searchElement.style.display = "block";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle click events for the main menu (<li> and <a>).
|
|
|
|
function onClickMainMenuListItem(event) {
|
|
|
|
let element = event.target;
|
|
|
|
|
|
|
|
if (element.tagName === "A") {
|
|
|
|
window.location.href = element.getAttribute("href");
|
|
|
|
} else {
|
|
|
|
window.location.href = element.querySelector("a").getAttribute("href");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change the button label when the page is loading.
|
|
|
|
function handleSubmitButtons() {
|
|
|
|
let elements = document.querySelectorAll("form");
|
|
|
|
elements.forEach((element) => {
|
|
|
|
element.onsubmit = () => {
|
2019-08-16 07:08:24 +02:00
|
|
|
let button = element.querySelector("button");
|
2019-07-18 05:27:39 +02:00
|
|
|
|
|
|
|
if (button) {
|
|
|
|
button.innerHTML = button.dataset.labelLoading;
|
|
|
|
button.disabled = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set cursor focus to the search input.
|
|
|
|
function setFocusToSearchInput(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
|
|
let toggleSwitchElement = document.querySelector(".search-toggle-switch");
|
|
|
|
if (toggleSwitchElement) {
|
|
|
|
toggleSwitchElement.style.display = "none";
|
|
|
|
}
|
|
|
|
|
|
|
|
let searchFormElement = document.querySelector(".search-form");
|
|
|
|
if (searchFormElement) {
|
|
|
|
searchFormElement.style.display = "block";
|
|
|
|
}
|
|
|
|
|
|
|
|
let searchInputElement = document.getElementById("search-input");
|
|
|
|
if (searchInputElement) {
|
|
|
|
searchInputElement.focus();
|
|
|
|
searchInputElement.value = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show modal dialog with the list of keyboard shortcuts.
|
|
|
|
function showKeyboardShortcuts() {
|
|
|
|
let template = document.getElementById("keyboard-shortcuts");
|
|
|
|
if (template !== null) {
|
|
|
|
ModalHandler.open(template.content);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark as read visible items of the current page.
|
|
|
|
function markPageAsRead() {
|
|
|
|
let items = DomHelper.getVisibleElements(".items .item");
|
|
|
|
let entryIDs = [];
|
|
|
|
|
|
|
|
items.forEach((element) => {
|
|
|
|
element.classList.add("item-status-read");
|
|
|
|
entryIDs.push(parseInt(element.dataset.id, 10));
|
|
|
|
});
|
|
|
|
|
|
|
|
if (entryIDs.length > 0) {
|
|
|
|
updateEntriesStatus(entryIDs, "read", () => {
|
|
|
|
// Make sure the Ajax request reach the server before we reload the page.
|
|
|
|
|
2019-07-18 06:07:29 +02:00
|
|
|
let element = document.querySelector("a[data-action=markPageAsRead]");
|
2019-07-18 05:27:39 +02:00
|
|
|
let showOnlyUnread = false;
|
|
|
|
if (element) {
|
2019-07-18 06:07:29 +02:00
|
|
|
showOnlyUnread = element.dataset.showOnlyUnread || false;
|
2019-07-18 05:27:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (showOnlyUnread) {
|
|
|
|
window.location.reload();
|
|
|
|
} else {
|
|
|
|
goToPage("next", true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle entry status changes from the list view and entry view.
|
2019-07-26 04:02:39 +02:00
|
|
|
function handleEntryStatus(element) {
|
2019-10-07 05:55:15 +02:00
|
|
|
let toasting = !element;
|
2019-07-26 04:02:39 +02:00
|
|
|
let currentEntry = findEntry(element);
|
|
|
|
if (currentEntry) {
|
2019-10-07 05:55:15 +02:00
|
|
|
toggleEntryStatus(currentEntry, toasting);
|
2019-07-26 04:02:39 +02:00
|
|
|
if (isListView() && currentEntry.classList.contains('current-item')) {
|
2019-07-18 05:27:39 +02:00
|
|
|
goToNextListItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change the entry status to the opposite value.
|
2019-10-07 05:55:15 +02:00
|
|
|
function toggleEntryStatus(element, toasting) {
|
2019-07-18 05:27:39 +02:00
|
|
|
let entryID = parseInt(element.dataset.id, 10);
|
|
|
|
let link = element.querySelector("a[data-toggle-status]");
|
|
|
|
|
|
|
|
let currentStatus = link.dataset.value;
|
|
|
|
let newStatus = currentStatus === "read" ? "unread" : "read";
|
|
|
|
|
|
|
|
updateEntriesStatus([entryID], newStatus);
|
|
|
|
|
|
|
|
if (currentStatus === "read") {
|
2020-03-22 23:18:12 +01:00
|
|
|
link.innerHTML = '<span class="icon-label">' + link.dataset.labelRead + '</span>';
|
2019-07-18 05:27:39 +02:00
|
|
|
link.dataset.value = "unread";
|
2019-10-07 05:55:15 +02:00
|
|
|
if (toasting) {
|
|
|
|
toast(link.dataset.toastUnread);
|
|
|
|
}
|
2019-07-18 05:27:39 +02:00
|
|
|
} else {
|
2020-03-22 23:18:12 +01:00
|
|
|
link.innerHTML = '<span class="icon-label">' + link.dataset.labelUnread + '</span>';
|
2019-07-18 05:27:39 +02:00
|
|
|
link.dataset.value = "read";
|
2019-10-07 05:55:15 +02:00
|
|
|
if (toasting) {
|
|
|
|
toast(link.dataset.toastRead);
|
|
|
|
}
|
2019-07-18 05:27:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (element.classList.contains("item-status-" + currentStatus)) {
|
|
|
|
element.classList.remove("item-status-" + currentStatus);
|
|
|
|
element.classList.add("item-status-" + newStatus);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark a single entry as read.
|
|
|
|
function markEntryAsRead(element) {
|
|
|
|
if (element.classList.contains("item-status-unread")) {
|
|
|
|
element.classList.remove("item-status-unread");
|
|
|
|
element.classList.add("item-status-read");
|
|
|
|
|
|
|
|
let entryID = parseInt(element.dataset.id, 10);
|
|
|
|
updateEntriesStatus([entryID], "read");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-27 06:35:44 +02:00
|
|
|
// Send the Ajax request to refresh all feeds in the background
|
|
|
|
function handleRefreshAllFeeds() {
|
|
|
|
let url = document.body.dataset.refreshAllFeedsUrl;
|
|
|
|
let request = new RequestBuilder(url);
|
|
|
|
|
|
|
|
request.withCallback(() => {
|
|
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
|
|
|
|
request.withHttpMethod("GET");
|
|
|
|
request.execute();
|
|
|
|
}
|
|
|
|
|
2019-07-18 05:27:39 +02:00
|
|
|
// Send the Ajax request to change entries statuses.
|
|
|
|
function updateEntriesStatus(entryIDs, status, callback) {
|
|
|
|
let url = document.body.dataset.entriesStatusUrl;
|
|
|
|
let request = new RequestBuilder(url);
|
2020-05-27 06:35:44 +02:00
|
|
|
request.withBody({entry_ids: entryIDs, status: status});
|
2019-07-18 05:27:39 +02:00
|
|
|
request.withCallback(callback);
|
|
|
|
request.execute();
|
|
|
|
|
|
|
|
if (status === "read") {
|
|
|
|
decrementUnreadCounter(1);
|
|
|
|
} else {
|
|
|
|
incrementUnreadCounter(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle save entry from list view and entry view.
|
2019-07-26 04:02:39 +02:00
|
|
|
function handleSaveEntry(element) {
|
2019-10-07 05:55:15 +02:00
|
|
|
let toasting = !element;
|
2019-07-26 04:02:39 +02:00
|
|
|
let currentEntry = findEntry(element);
|
|
|
|
if (currentEntry) {
|
2019-10-07 05:55:15 +02:00
|
|
|
saveEntry(currentEntry.querySelector("a[data-save-entry]"), toasting);
|
2019-07-18 05:27:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send the Ajax request to save an entry.
|
2019-10-07 05:55:15 +02:00
|
|
|
function saveEntry(element, toasting) {
|
2019-07-18 05:27:39 +02:00
|
|
|
if (!element) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (element.dataset.completed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-22 23:18:12 +01:00
|
|
|
let previousInnerHTML = element.innerHTML;
|
|
|
|
element.innerHTML = '<span class="icon-label">' + element.dataset.labelLoading + '</span>';
|
2019-07-18 05:27:39 +02:00
|
|
|
|
|
|
|
let request = new RequestBuilder(element.dataset.saveUrl);
|
|
|
|
request.withCallback(() => {
|
2020-03-22 23:18:12 +01:00
|
|
|
element.innerHTML = previousInnerHTML;
|
2019-07-18 05:27:39 +02:00
|
|
|
element.dataset.completed = true;
|
2019-10-07 05:55:15 +02:00
|
|
|
if (toasting) {
|
|
|
|
toast(element.dataset.toastDone);
|
|
|
|
}
|
2019-07-18 05:27:39 +02:00
|
|
|
});
|
|
|
|
request.execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle bookmark from the list view and entry view.
|
2019-07-26 04:02:39 +02:00
|
|
|
function handleBookmark(element) {
|
2019-10-07 05:55:15 +02:00
|
|
|
let toasting = !element;
|
2019-07-26 04:02:39 +02:00
|
|
|
let currentEntry = findEntry(element);
|
|
|
|
if (currentEntry) {
|
2019-10-07 05:55:15 +02:00
|
|
|
toggleBookmark(currentEntry, toasting);
|
2019-07-18 05:27:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send the Ajax request and change the icon when bookmarking an entry.
|
2019-10-07 05:55:15 +02:00
|
|
|
function toggleBookmark(parentElement, toasting) {
|
2019-07-18 05:27:39 +02:00
|
|
|
let element = parentElement.querySelector("a[data-toggle-bookmark]");
|
|
|
|
if (!element) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-22 23:18:12 +01:00
|
|
|
element.innerHTML = '<span class="icon-label">' + element.dataset.labelLoading + '</span>';
|
2019-07-18 05:27:39 +02:00
|
|
|
|
|
|
|
let request = new RequestBuilder(element.dataset.bookmarkUrl);
|
|
|
|
request.withCallback(() => {
|
|
|
|
if (element.dataset.value === "star") {
|
2020-03-22 23:18:12 +01:00
|
|
|
element.innerHTML = '<span class="icon-label">' + element.dataset.labelStar + '</span>';
|
2019-07-18 05:27:39 +02:00
|
|
|
element.dataset.value = "unstar";
|
2019-10-07 05:55:15 +02:00
|
|
|
if (toasting) {
|
|
|
|
toast(element.dataset.toastUnstar);
|
|
|
|
}
|
2019-07-18 05:27:39 +02:00
|
|
|
} else {
|
2020-03-22 23:18:12 +01:00
|
|
|
element.innerHTML = '<span class="icon-label">' + element.dataset.labelUnstar + '</span>';
|
2019-07-18 05:27:39 +02:00
|
|
|
element.dataset.value = "star";
|
2019-10-07 05:55:15 +02:00
|
|
|
if (toasting) {
|
|
|
|
toast(element.dataset.toastStar);
|
|
|
|
}
|
2019-07-18 05:27:39 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
request.execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send the Ajax request to download the original web page.
|
|
|
|
function handleFetchOriginalContent() {
|
|
|
|
if (isListView()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let element = document.querySelector("a[data-fetch-content-entry]");
|
|
|
|
if (!element) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-22 23:18:12 +01:00
|
|
|
let previousInnerHTML = element.innerHTML;
|
|
|
|
element.innerHTML = '<span class="icon-label">' + element.dataset.labelLoading + '</span>';
|
2019-07-18 05:27:39 +02:00
|
|
|
|
|
|
|
let request = new RequestBuilder(element.dataset.fetchContentUrl);
|
|
|
|
request.withCallback((response) => {
|
2020-03-22 23:18:12 +01:00
|
|
|
element.innerHTML = previousInnerHTML;
|
2019-07-18 05:27:39 +02:00
|
|
|
|
|
|
|
response.json().then((data) => {
|
|
|
|
if (data.hasOwnProperty("content")) {
|
|
|
|
document.querySelector(".entry-content").innerHTML = data.content;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
request.execute();
|
|
|
|
}
|
|
|
|
|
2019-11-29 22:48:56 +01:00
|
|
|
function openOriginalLink(openLinkInCurrentTab) {
|
2019-07-18 05:27:39 +02:00
|
|
|
let entryLink = document.querySelector(".entry h1 a");
|
|
|
|
if (entryLink !== null) {
|
2019-11-29 22:48:56 +01:00
|
|
|
if (openLinkInCurrentTab) {
|
|
|
|
window.location.href = entryLink.getAttribute("href");
|
|
|
|
} else {
|
|
|
|
DomHelper.openNewTab(entryLink.getAttribute("href"));
|
|
|
|
}
|
2019-07-18 05:27:39 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let currentItemOriginalLink = document.querySelector(".current-item a[data-original-link]");
|
|
|
|
if (currentItemOriginalLink !== null) {
|
|
|
|
DomHelper.openNewTab(currentItemOriginalLink.getAttribute("href"));
|
|
|
|
|
|
|
|
let currentItem = document.querySelector(".current-item");
|
2020-01-13 21:57:31 +01:00
|
|
|
// If we are not on the list of starred items, move to the next item
|
2020-05-27 06:35:44 +02:00
|
|
|
if (document.location.href != document.querySelector('a[data-page=starred]').href) {
|
2020-01-13 21:57:31 +01:00
|
|
|
goToNextListItem();
|
|
|
|
}
|
2019-07-18 05:27:39 +02:00
|
|
|
markEntryAsRead(currentItem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-07 07:02:02 +01:00
|
|
|
function openCommentLink(openLinkInCurrentTab) {
|
|
|
|
if (!isListView()) {
|
|
|
|
let entryLink = document.querySelector("a[data-comments-link]");
|
|
|
|
if (entryLink !== null) {
|
|
|
|
if (openLinkInCurrentTab) {
|
|
|
|
window.location.href = entryLink.getAttribute("href");
|
|
|
|
} else {
|
|
|
|
DomHelper.openNewTab(entryLink.getAttribute("href"));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let currentItemCommentsLink = document.querySelector(".current-item a[data-comments-link]");
|
|
|
|
if (currentItemCommentsLink !== null) {
|
|
|
|
DomHelper.openNewTab(currentItemCommentsLink.getAttribute("href"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-18 05:27:39 +02:00
|
|
|
function openSelectedItem() {
|
|
|
|
let currentItemLink = document.querySelector(".current-item .item-title a");
|
|
|
|
if (currentItemLink !== null) {
|
|
|
|
window.location.href = currentItemLink.getAttribute("href");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function unsubscribeFromFeed() {
|
|
|
|
let unsubscribeLinks = document.querySelectorAll("[data-action=remove-feed]");
|
|
|
|
if (unsubscribeLinks.length === 1) {
|
|
|
|
let unsubscribeLink = unsubscribeLinks[0];
|
|
|
|
|
|
|
|
let request = new RequestBuilder(unsubscribeLink.dataset.url);
|
|
|
|
request.withCallback(() => {
|
|
|
|
if (unsubscribeLink.dataset.redirectUrl) {
|
|
|
|
window.location.href = unsubscribeLink.dataset.redirectUrl;
|
|
|
|
} else {
|
|
|
|
window.location.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
request.execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} page Page to redirect to.
|
|
|
|
* @param {boolean} fallbackSelf Refresh actual page if the page is not found.
|
|
|
|
*/
|
|
|
|
function goToPage(page, fallbackSelf) {
|
|
|
|
let element = document.querySelector("a[data-page=" + page + "]");
|
|
|
|
|
|
|
|
if (element) {
|
|
|
|
document.location.href = element.href;
|
|
|
|
} else if (fallbackSelf) {
|
|
|
|
window.location.reload();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function goToPrevious() {
|
|
|
|
if (isListView()) {
|
|
|
|
goToPreviousListItem();
|
|
|
|
} else {
|
|
|
|
goToPage("previous");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function goToNext() {
|
|
|
|
if (isListView()) {
|
|
|
|
goToNextListItem();
|
|
|
|
} else {
|
|
|
|
goToPage("next");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function goToFeedOrFeeds() {
|
|
|
|
if (isEntry()) {
|
|
|
|
let feedAnchor = document.querySelector("span.entry-website a");
|
|
|
|
if (feedAnchor !== null) {
|
|
|
|
window.location.href = feedAnchor.href;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
goToPage('feeds');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function goToPreviousListItem() {
|
|
|
|
let items = DomHelper.getVisibleElements(".items .item");
|
|
|
|
if (items.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document.querySelector(".current-item") === null) {
|
|
|
|
items[0].classList.add("current-item");
|
|
|
|
items[0].querySelector('.item-header a').focus();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
if (items[i].classList.contains("current-item")) {
|
|
|
|
items[i].classList.remove("current-item");
|
|
|
|
|
2020-01-08 22:52:36 +01:00
|
|
|
let nextItem;
|
2019-07-18 05:27:39 +02:00
|
|
|
if (i - 1 >= 0) {
|
2020-01-08 22:52:36 +01:00
|
|
|
nextItem = items[i - 1];
|
|
|
|
} else {
|
|
|
|
nextItem = items[items.length - 1];
|
2019-07-18 05:27:39 +02:00
|
|
|
}
|
|
|
|
|
2020-01-08 22:52:36 +01:00
|
|
|
nextItem.classList.add("current-item");
|
|
|
|
DomHelper.scrollPageTo(nextItem);
|
|
|
|
nextItem.querySelector('.item-header a').focus();
|
|
|
|
|
2019-07-18 05:27:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function goToNextListItem() {
|
|
|
|
let items = DomHelper.getVisibleElements(".items .item");
|
|
|
|
if (items.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-08 22:52:36 +01:00
|
|
|
if (document.querySelector(".current-item") === null) {
|
2019-07-18 05:27:39 +02:00
|
|
|
items[0].classList.add("current-item");
|
|
|
|
items[0].querySelector('.item-header a').focus();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
if (items[i].classList.contains("current-item")) {
|
|
|
|
items[i].classList.remove("current-item");
|
|
|
|
|
2020-01-08 22:52:36 +01:00
|
|
|
let nextItem;
|
2019-07-18 05:27:39 +02:00
|
|
|
if (i + 1 < items.length) {
|
2020-01-08 22:52:36 +01:00
|
|
|
nextItem = items[i + 1];
|
|
|
|
} else {
|
|
|
|
nextItem = items[0];
|
2019-07-18 05:27:39 +02:00
|
|
|
}
|
|
|
|
|
2020-01-08 22:52:36 +01:00
|
|
|
nextItem.classList.add("current-item");
|
|
|
|
DomHelper.scrollPageTo(nextItem);
|
|
|
|
nextItem.querySelector('.item-header a').focus();
|
|
|
|
|
2019-07-18 05:27:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function decrementUnreadCounter(n) {
|
|
|
|
updateUnreadCounterValue((current) => {
|
|
|
|
return current - n;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function incrementUnreadCounter(n) {
|
|
|
|
updateUnreadCounterValue((current) => {
|
|
|
|
return current + n;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateUnreadCounterValue(callback) {
|
|
|
|
let counterElements = document.querySelectorAll("span.unread-counter");
|
|
|
|
counterElements.forEach((element) => {
|
|
|
|
let oldValue = parseInt(element.textContent, 10);
|
|
|
|
element.innerHTML = callback(oldValue);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (window.location.href.endsWith('/unread')) {
|
|
|
|
let oldValue = parseInt(document.title.split('(')[1], 10);
|
|
|
|
let newValue = callback(oldValue);
|
|
|
|
|
|
|
|
document.title = document.title.replace(
|
|
|
|
/(.*?)\(\d+\)(.*?)/,
|
|
|
|
function (match, prefix, suffix, offset, string) {
|
|
|
|
return prefix + '(' + newValue + ')' + suffix;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function isEntry() {
|
|
|
|
return document.querySelector("section.entry") !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
function isListView() {
|
|
|
|
return document.querySelector(".items") !== null;
|
|
|
|
}
|
|
|
|
|
2019-07-26 04:02:39 +02:00
|
|
|
function findEntry(element) {
|
|
|
|
if (isListView()) {
|
|
|
|
if (element) {
|
|
|
|
return DomHelper.findParent(element, "item");
|
|
|
|
} else {
|
|
|
|
return document.querySelector(".current-item");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return document.querySelector(".entry");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-18 06:07:29 +02:00
|
|
|
function handleConfirmationMessage(linkElement, callback) {
|
2020-06-15 04:00:41 +02:00
|
|
|
if (linkElement.tagName != 'A') {
|
|
|
|
linkElement = linkElement.parentNode;
|
|
|
|
}
|
2019-07-18 06:07:29 +02:00
|
|
|
|
2020-06-15 04:00:41 +02:00
|
|
|
linkElement.style.display = "none";
|
|
|
|
|
2019-07-18 06:07:29 +02:00
|
|
|
let containerElement = linkElement.parentNode;
|
|
|
|
let questionElement = document.createElement("span");
|
|
|
|
|
|
|
|
let yesElement = document.createElement("a");
|
|
|
|
yesElement.href = "#";
|
|
|
|
yesElement.appendChild(document.createTextNode(linkElement.dataset.labelYes));
|
|
|
|
yesElement.onclick = (event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
let loadingElement = document.createElement("span");
|
|
|
|
loadingElement.className = "loading";
|
|
|
|
loadingElement.appendChild(document.createTextNode(linkElement.dataset.labelLoading));
|
|
|
|
|
|
|
|
questionElement.remove();
|
|
|
|
containerElement.appendChild(loadingElement);
|
|
|
|
|
|
|
|
callback(linkElement.dataset.url, linkElement.dataset.redirectUrl);
|
|
|
|
};
|
|
|
|
|
|
|
|
let noElement = document.createElement("a");
|
|
|
|
noElement.href = "#";
|
|
|
|
noElement.appendChild(document.createTextNode(linkElement.dataset.labelNo));
|
|
|
|
noElement.onclick = (event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
linkElement.style.display = "inline";
|
|
|
|
questionElement.remove();
|
|
|
|
};
|
|
|
|
|
|
|
|
questionElement.className = "confirm";
|
|
|
|
questionElement.appendChild(document.createTextNode(linkElement.dataset.labelQuestion + " "));
|
|
|
|
questionElement.appendChild(yesElement);
|
|
|
|
questionElement.appendChild(document.createTextNode(", "));
|
|
|
|
questionElement.appendChild(noElement);
|
|
|
|
|
|
|
|
containerElement.appendChild(questionElement);
|
|
|
|
}
|
2019-10-07 05:55:15 +02:00
|
|
|
|
|
|
|
function toast(msg) {
|
|
|
|
if (!msg) return;
|
|
|
|
document.querySelector('.toast-wrap .toast-msg').innerHTML = msg;
|
|
|
|
let toastWrapper = document.querySelector('.toast-wrap');
|
|
|
|
toastWrapper.classList.remove('toastAnimate');
|
|
|
|
setTimeout(function () {
|
|
|
|
toastWrapper.classList.add('toastAnimate');
|
|
|
|
}, 100);
|
|
|
|
}
|