{#if loading}
Loading...
{:else if mode === 'channels'}
{#each channelMessages as msg}
{msg.senderName}
{msg.senderRole}
{msg.createdAt.slice(11, 16)}
{msg.content}
{/each}
{#if channelMessages.length === 0}
No messages in this channel
{/if}
{:else}
{#each dmMessages as msg}
{msg.senderName ?? msg.fromAgent}
{msg.createdAt.slice(11, 16)}
{msg.content}
{/each}
{#if dmMessages.length === 0 && activeDmAgentId}
No messages yet
{/if}
{#if !activeDmAgentId}
Select an agent to message
{/if}
{/if}
{#if mode === 'channels' && activeChannelId}
{#if showMembers}
{#each channelMembers as m}
{m.name} {m.role}
{/each}
{/if}
{/if}