2024-07-11 13:30:46 +02:00
|
|
|
<script>
|
|
|
|
import { onMount } from "svelte";
|
2024-08-09 13:02:07 +02:00
|
|
|
import { Navigator } from "../../filesystem/Navigator"
|
2024-07-11 17:45:10 +02:00
|
|
|
import { fs_encode_path, fs_node_icon } from "../../filesystem/FilesystemUtil";
|
2024-07-11 13:30:46 +02:00
|
|
|
|
2024-08-09 13:02:07 +02:00
|
|
|
const nav = new Navigator(false)
|
2024-07-11 13:30:46 +02:00
|
|
|
onMount(() => {
|
|
|
|
nav.navigate("/me", false)
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2024-07-11 17:45:10 +02:00
|
|
|
<div class="directory">
|
2024-08-09 13:02:07 +02:00
|
|
|
{#each $nav.children as child (child.path)}
|
2024-07-11 17:45:10 +02:00
|
|
|
<a
|
|
|
|
href={"/d"+fs_encode_path(child.path)}
|
|
|
|
class="node"
|
|
|
|
class:node_selected={child.fm_selected}
|
|
|
|
class:hidden={child.name.startsWith(".")}
|
|
|
|
>
|
|
|
|
<img src={fs_node_icon(child, 64, 64)} class="node_icon" alt="icon"/>
|
|
|
|
|
|
|
|
<div class="node_name">
|
|
|
|
{child.name}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{#if child.id}
|
|
|
|
<a href="/d/{child.id}" class="button action_button">
|
|
|
|
<i class="icon" title="This file / directory is shared. Click to open public link">share</i>
|
|
|
|
</a>
|
|
|
|
{/if}
|
|
|
|
</a>
|
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.directory {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-top: 8px;
|
|
|
|
gap: 8px;
|
|
|
|
}
|
|
|
|
.node {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
flex-direction: row;
|
|
|
|
align-content: center;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--body_text-color);
|
|
|
|
gap: 2px;
|
|
|
|
padding: 2px;
|
|
|
|
border-radius: 8px;
|
2024-08-13 11:58:11 +02:00
|
|
|
width: 250px;
|
2024-07-11 17:45:10 +02:00
|
|
|
max-width: 100%;
|
|
|
|
border: 1px solid var(--input_background);
|
|
|
|
}
|
|
|
|
.node:hover {
|
|
|
|
background: var(--input_hover_background);
|
|
|
|
color: var(--input_text);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.node > * {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
.node_icon {
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
vertical-align: middle;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.node_name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
word-break: break-all;
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|
|
|
|
.action_button {
|
|
|
|
margin: 0;
|
|
|
|
background: none;
|
|
|
|
color: var(--body_text_color);
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
</style>
|