0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 06:22:53 -04:00

Update pagination.js

This commit is contained in:
alamin655 2023-06-07 22:07:35 +05:30 committed by GitHub
parent 73c7954283
commit 611cad7223
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,26 +1,39 @@
/**
* Navigates to the next page by incrementing the current page number in the URL query parameters.
* @returns {void}
*/
function navigate_forward() {
const url = new URL(window.location)
const searchParams = url.searchParams
const url = new URL(window.location);
const searchParams = url.searchParams;
let q = searchParams.get('q')
let page = searchParams.get('page')
let q = searchParams.get('q');
let page = parseInt(searchParams.get('page'));
if (page === null) {
page = 2
window.location = `${url.origin}${url.pathname}?q=${q}&page=${page}`
if (isNaN(page)) {
page = 1;
} else {
window.location = `${url.origin}${url.pathname}?q=${q}&page=${++page}`
page++;
}
window.location.href = `${url.origin}${url.pathname}?q=${encodeURIComponent(q)}&page=${page}`;
}
/**
* Navigates to the previous page by decrementing the current page number in the URL query parameters.
* @returns {void}
*/
function navigate_backward() {
const url = new URL(window.location)
const searchParams = url.searchParams
const url = new URL(window.location);
const searchParams = url.searchParams;
let q = searchParams.get('q')
let page = searchParams.get('page')
let q = searchParams.get('q');
let page = parseInt(searchParams.get('page'));
if (page !== null && page > 1) {
window.location = `${url.origin}${url.pathname}?q=${q}&page=${--page}`
if (isNaN(page)) {
page = 1;
} else if (page > 1) {
page--;
}
window.location.href = `${url.origin}${url.pathname}?q=${encodeURIComponent(q)}&page=${page}`;
}