mirror of
https://github.com/danbulant/Mangades
synced 2026-06-19 14:21:23 +00:00
scroll loading
This commit is contained in:
parent
7b350219bf
commit
0252f98dcf
1 changed files with 38 additions and 5 deletions
|
|
@ -15,18 +15,46 @@
|
|||
* @param {string} title
|
||||
* @returns {Promise<object>}
|
||||
*/
|
||||
function search(title) {
|
||||
async function search(title, offset=0) {
|
||||
var query = "";
|
||||
if(title) query += "title=" + encodeURIComponent(name) + "&";
|
||||
query += "contentRating[]=safe&contentRating[]=suggestive";
|
||||
return request("manga", query);
|
||||
query += "contentRating[]=safe&contentRating[]=suggestive&limit=100&offset=" + offset;
|
||||
const res = await request("manga", query);
|
||||
for(const manga of res.results) {
|
||||
for(const relation of manga.relationships) {
|
||||
if(relation.type === "cover") {
|
||||
console.log(manga, relation);
|
||||
}
|
||||
}
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
var result = search(name);
|
||||
result.then(console.log);
|
||||
$: result = ratelimit(search, name);
|
||||
$: result.then(console.log);
|
||||
|
||||
var scrollSearch = null;
|
||||
/**
|
||||
* @param {MouseEvent} e
|
||||
*/
|
||||
async function scroll(e) {
|
||||
if(scrollSearch !== null) return;
|
||||
if(document.body.scrollHeight - window.scrollY - window.innerHeight < 100 && (await result).results.length < (await result).total) {
|
||||
scrollSearch = name;
|
||||
const res = await search(name, (await result).results.length);
|
||||
if(scrollSearch === name && res.results.length) {
|
||||
(await result).results.push(...res.results);
|
||||
result = result; // trigger reload
|
||||
}
|
||||
setTimeout(() => {
|
||||
scrollSearch = null;
|
||||
}, 500);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<svelte:window on:scroll={scroll} />
|
||||
|
||||
<svelte:head>
|
||||
<title>Mangadex search</title>
|
||||
<meta name="description" value="Read manga from Mangadex online, or download it as EPUB file to read it on your e-reader" />
|
||||
|
|
@ -53,6 +81,11 @@
|
|||
</li>
|
||||
{/each}
|
||||
</ul>
|
||||
|
||||
{#if result.results.length < result.total}
|
||||
<p>Loading next manga...</p>
|
||||
{/if}
|
||||
<p>You got the end of the list.</p>
|
||||
{/await}
|
||||
</main>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue