{#if !sidebarCollapsed}
{:else} {/if}
{#if fileTabs.length > 0}
{#each fileTabs as tab (tab.path)} {/each}
{/if} {#if fileLoading && activeTabPath && !activeTab?.content}
Loading…
{:else if !activeTab}
Select a file to view
{:else if activeTab.content?.type === 'TooLarge'}
File too large {formatSize(activeTab.content.size)}
{:else if activeTab.content?.type === 'Binary'} {#if isImageExt(activeTab.path)}
{activeTab.name}
{:else}
{activeTab.content.message}
{/if} {:else if activeTab.content?.type === 'Text'}
{#if activeTab.content.lang === 'csv'}
{activeTab.content.content}
{:else} {@html renderHighlighted(activeTab.content.content, activeTab.content.lang)} {/if}
{/if} {#if activeTab}
{activeTab.path}
{/if}