blob: f6a049f294e09677708ab124f560cd16c9fc3edb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<script lang="ts">
import { threads } from '$lib/AniList/forum';
import { onMount } from 'svelte';
import { clearAllParameters } from './tool';
let searchInput = '';
let searchInputFinal = '';
onMount(clearAllParameters);
</script>
<p>
<input
type="text"
placeholder="Username"
bind:value={searchInput}
on:keypress={(e) => {
e.key === 'Enter' && (searchInputFinal = searchInput);
}}
/>
<a href={`#`} on:click={() => (searchInputFinal = searchInput)} title="Or click your Enter key"
>Search</a
>
</p>
{#if searchInputFinal !== ''}
{#await threads(searchInputFinal)}
Loading forum threads ... 50%
{:then threads}
<ul>
{#each threads
.filter((thread) => thread.title.includes('[Spoilers]') && thread.title.includes('Episode'))
.sort((a, b) => b.createdAt - a.createdAt) as thread}
<li>
<a href={`https://anilist.co/forum/thread/${thread.id}`} target="_blank">
{thread.title.replace('[Spoilers]', '')}
</a>
</li>
{/each}
</ul>
{:catch}
<p>
Threads could not be loaded. You might have been <a
href="https://en.wikipedia.org/wiki/Rate_limiting"
target="_blank">rate limited</a
>.
</p>
<p>
Try again in a few minutes. If the problem persists, please contact <a
href="https://anilist.co/user/fuwn"
target="_blank">@fuwn</a
> on AniList.
</p>
{/await}
{:else}
<p>Enter a username to search for to continue.</p>
{/if}
|