mirror of
https://github.com/NoCrypt/migu.git
synced 2026-03-22 02:27:18 +00:00
38 lines
992 B
Svelte
38 lines
992 B
Svelte
<script>
|
|
import FullBanner from './FullBanner.svelte'
|
|
import SkeletonBanner from './SkeletonBanner.svelte'
|
|
export let data
|
|
|
|
function shuffle (array) {
|
|
let currentIndex = array.length
|
|
let randomIndex
|
|
|
|
while (currentIndex > 0) {
|
|
randomIndex = Math.floor(Math.random() * currentIndex--);
|
|
|
|
[array[currentIndex], array[randomIndex]] = [array[randomIndex], array[currentIndex]]
|
|
}
|
|
|
|
return array
|
|
}
|
|
|
|
function shuffleAndFilter (media) {
|
|
return shuffle(media).filter(media => media.bannerImage || media.trailer?.id).slice(0, 5)
|
|
}
|
|
</script>
|
|
|
|
<div class='w-full h-450 position-relative'>
|
|
<!-- really shit and hacky way of fixing scroll position jumping when banner changes height -->
|
|
<div class='position-absolute top-0 transparent h-450 opacity-0'>.</div>
|
|
{#await data}
|
|
<SkeletonBanner />
|
|
{:then { data }}
|
|
<FullBanner mediaList={shuffleAndFilter(data.Page.media)} />
|
|
{/await}
|
|
</div>
|
|
|
|
<style>
|
|
.opacity-0 {
|
|
opacity: 0;
|
|
}
|
|
</style>
|