{#if showBreadCrumbs}
{/if}
{#if !activeUser} {#await registry.fetchUsers()}
Loading Users...
{:then users} {#each users as user}
{ $activeId = user.id; }}>{user.id}
{/each} {:catch error}
{error.message}
{/await} {:else if !activeCollection} {#await registry.fetchUser(activeUser)}
Loading User...
{:then user} {#each user.collections as collection}
{ $activeId = collection.id; }} > {collection.id.split(`/`)[1]}
{/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}