mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-12 18:10:06 -04:00
91 lines
2.7 KiB
Svelte
91 lines
2.7 KiB
Svelte
<script>
|
|
import ChannelGrid from './ChannelGrid.svelte'
|
|
import Checkbox from './Checkbox.svelte'
|
|
import { downloadMode, selected } from '~/store'
|
|
import _ from 'lodash'
|
|
import { fade } from 'svelte/transition'
|
|
|
|
export let country
|
|
export let channels = []
|
|
export let hasQuery
|
|
|
|
$: intersect = _.intersectionBy($selected, channels, 'id')
|
|
$: expanded = country.expanded || (channels && channels.length > 0 && hasQuery)
|
|
$: isSelected = intersect.length === channels.length
|
|
$: isIndeterminate = intersect.length !== 0 && intersect.length < channels.length
|
|
|
|
function onExpand() {
|
|
country.expanded = !country.expanded
|
|
}
|
|
|
|
function onCheckboxChange(event) {
|
|
channels.forEach(channel => {
|
|
selected.update(arr => {
|
|
if (event.detail.state) {
|
|
arr.push(channel)
|
|
} else {
|
|
arr = arr.filter(c => c.id !== channel.id)
|
|
}
|
|
|
|
return arr
|
|
})
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<div class="mb-2 md:mb-3" class:pl-14={$downloadMode} style="transition: padding-left 100ms">
|
|
<h2 id="accordion-heading-{country.code}" class="flex relative">
|
|
{#if $downloadMode}
|
|
<div
|
|
transition:fade={{ duration: 200 }}
|
|
class="w-14 h-14 shrink-0 flex items-center absolute -left-14"
|
|
>
|
|
<Checkbox
|
|
selected={isSelected}
|
|
indeterminate={isIndeterminate}
|
|
on:change={onCheckboxChange}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
<button
|
|
on:click={onExpand}
|
|
type="button"
|
|
class="flex items-center focus:ring-0 dark:focus:ring-gray-800 justify-between p-4 w-full font-medium text-left border border-gray-200 dark:border-gray-700 text-gray-900 dark:text-white bg-white dark:bg-gray-800"
|
|
class:rounded-t-md={expanded}
|
|
class:rounded-md={!expanded}
|
|
class:border-b-0={expanded}
|
|
aria-expanded={expanded}
|
|
aria-controls="accordion-body-{country.code}"
|
|
>
|
|
<span>{country.flag} {country.name}</span>
|
|
{#if !hasQuery}
|
|
<svg
|
|
class:rotate-180={expanded}
|
|
class="w-6 h-6 shrink-0"
|
|
fill="currentColor"
|
|
viewBox="0 0 20 20"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
fill-rule="evenodd"
|
|
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
|
|
clip-rule="evenodd"
|
|
></path>
|
|
</svg>
|
|
{/if}
|
|
</button>
|
|
</h2>
|
|
{#if expanded}
|
|
<div
|
|
class="relative"
|
|
id="accordion-body-{country.code}"
|
|
aria-labelledby="accordion-heading-{country.code}"
|
|
>
|
|
<div
|
|
class="border border-gray-200 dark:border-gray-700 dark:bg-gray-900 rounded-b-md overflow-hidden"
|
|
>
|
|
<ChannelGrid bind:channels />
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
</div>
|