forked from MapComplete/MapComplete
Studio: move some validation from throwing errors in LayerConfig.ts into errors in Validation
This commit is contained in:
parent
632dd6dfb1
commit
ec79672fa6
10 changed files with 160 additions and 79 deletions
19
src/UI/Studio/ErrorIndicatorForRegion.svelte
Normal file
19
src/UI/Studio/ErrorIndicatorForRegion.svelte
Normal file
|
@ -0,0 +1,19 @@
|
|||
<script lang="ts">
|
||||
import EditLayerState from "./EditLayerState";
|
||||
import { ExclamationIcon } from "@rgossiaux/svelte-heroicons/solid";
|
||||
|
||||
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);
|
||||
|
||||
</script>
|
||||
|
||||
{#if $messagesCount > 0}
|
||||
<span class="alert flex w-min">
|
||||
<ExclamationIcon class="w-6 h-6" />
|
||||
{$messagesCount}
|
||||
</span>
|
||||
{/if}
|
Loading…
Add table
Add a link
Reference in a new issue