{#if showBreadCrumbs} {/if}
{#if !activeUser} {#await registry.fetchUsers()}
Loading Users...
{:then users} {#each users as user} {/each} {:catch error}
{error.message}
{/await} {:else if !activeCollection} {#await registry.fetchUser(activeUser)}
Loading User...
{:then user} {#each user.collections as collection} {/each} {:catch error}
{error.message}
{/await} {:else if !activeNode} {#await registry.fetchCollection(`${activeUser}/${activeCollection}`)}
Loading Collection...
{:then collection} {#each collection.nodes as node} {#await registry.fetchNodeDefinition(node.id)}
Loading Node... {node.id}
{:then node} {#if node} {/if} {:catch error}
{error.message}
{/await} {/each} {:catch error}
{error.message}
{/await} {/if}