2023-10-17 16:06:58 +02:00
|
|
|
<script lang="ts">
|
2023-11-09 16:30:26 +01:00
|
|
|
import EditLayerState from "./EditLayerState"
|
|
|
|
import { ExclamationIcon } from "@rgossiaux/svelte-heroicons/solid"
|
2023-10-17 16:06:58 +02:00
|
|
|
|
2023-11-09 16:30:26 +01:00
|
|
|
export let firstPaths: Set<string>
|
|
|
|
export let state: EditLayerState
|
|
|
|
let messagesCount = state.messages.map(
|
|
|
|
(msgs) =>
|
|
|
|
msgs.filter((msg) => {
|
|
|
|
const pth = msg.context.path
|
|
|
|
return firstPaths.has(pth[0]) || (pth.length > 1 && firstPaths.has(pth[1]))
|
|
|
|
}).length
|
|
|
|
)
|
2023-10-17 16:06:58 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
{#if $messagesCount > 0}
|
|
|
|
<span class="alert flex w-min">
|
2023-11-09 16:30:26 +01:00
|
|
|
<ExclamationIcon class="h-6 w-6" />
|
2023-10-17 16:06:58 +02:00
|
|
|
{$messagesCount}
|
|
|
|
</span>
|
|
|
|
{/if}
|