blob: ae7287a04dedd4b3daf8e31ce7db9b33034a8e92 (
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
|
<script lang="ts">
import { Selector } from '$lib/Scraper';
import SelectorButton from './SelectorButton.svelte';
export let title: string;
export let selectors: Selector<string>[];
function invert() {
for (let selector of selectors) {
selector.keep = !selector.keep;
}
selectors = selectors;
}
</script>
{#if selectors.length > 0}
<div class="group col-span-6 flex flex-col gap-1">
<div class="flex gap-2">
<h2>{title}</h2>
<button
type="button"
class="flex items-end opacity-0 brightness-75 transition-opacity hover:brightness-110 group-hover:opacity-100"
on:click={invert}
title="Invert selection"
>
<span class="icon-xs icon-[material-symbols--compare-arrows]"></span>
</button>
</div>
<div class="flex flex-wrap gap-y-1">
{#each selectors as selector}
<SelectorButton {selector} />
{/each}
</div>
</div>
{/if}
|