blob: 48b6ac71ec318eca11c269b896379d9b08e80c5c (
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
|
<script lang="ts">
import { getSelectionContext } from '$lib/Selection';
export let id: number;
export let index: number;
export let edit: ((id: number) => void) | undefined = undefined;
const selection = getSelectionContext();
$: selected = $selection.contains(id);
const handle = (event: MouseEvent) => {
if ($selection.active) {
$selection = $selection.update(index, event.shiftKey);
event.preventDefault();
} else if (edit) {
edit(id);
event.preventDefault();
}
};
</script>
<slot {handle} {selected} />
|