Files
fnx_web/svelte/src/filesystem/filemanager/ListView.svelte

148 lines
3.1 KiB
Svelte
Raw Normal View History

2022-02-22 19:53:48 +01:00
<script>
import { createEventDispatcher } from "svelte";
import { formatDataVolume } from "../../util/Formatting.svelte";
let dispatch = createEventDispatcher()
export let state
2023-04-19 18:26:50 +02:00
export let show_hidden = false
2022-02-22 19:53:48 +01:00
const node_icon = node => {
if (node.type === "dir") {
2023-04-19 00:04:06 +02:00
// Folders with an ID are publically shared, use the shared folder icon
if (node.id) {
return "/res/img/mime/folder-remote.png"
} else {
return "/res/img/mime/folder.png"
}
2022-02-22 19:53:48 +01:00
}
switch (node.file_type) {
case "image/gif":
return "/res/img/mime/image-gif.png"
case "image/png", "image/apng":
return "/res/img/mime/image-png.png"
case "image/jpeg":
return "/res/img/mime/image-jpeg.png"
case "application/pdf":
return "/res/img/mime/pdf.png"
case "application/ogg":
return "/res/img/mime/audio.png"
}
if (node.file_type.startsWith("audio/")) {
return "/res/img/mime/audio.png"
} else if (node.file_type.startsWith("video/")) {
return "/res/img/mime/video.png"
} else if (node.file_type.startsWith("text/")) {
return "/res/img/mime/text.png"
} else if (node.file_type.startsWith("image/")) {
return "/res/img/mime/image-png.png"
} else if (node.file_type.startsWith("application/")) {
return "/res/img/mime/archive.png"
}
return "/res/img/mime/empty.png"
}
</script>
<div class="directory">
<tr>
<td></td>
<td>Name</td>
<td>Size</td>
<td></td>
2022-02-22 19:53:48 +01:00
</tr>
{#each state.children as child, index (child.path)}
<a
2023-04-19 19:47:08 +02:00
href={state.path_root+child.path_uri}
2022-02-22 19:53:48 +01:00
on:click|preventDefault={() => {dispatch("node_click", index)}}
class="node"
2023-04-19 18:26:50 +02:00
class:node_selected={child.fm_selected}
class:hidden={child.name.startsWith(".") && !show_hidden}
>
2022-02-22 19:53:48 +01:00
<td>
<img src={node_icon(child)} class="node_icon" alt="icon"/>
</td>
<td class="node_name">
{child.name}
</td>
<td class="node_size">
{#if child.type === "file"}
{formatDataVolume(child.file_size, 3)}
{/if}
</td>
<td>
{#if child.id}
<a href="/d/{child.id}" on:click|stopPropagation>
<i class="icon" title="This file / directory is shared. Click to open public link">share</i>
</a>
{/if}
</td>
2022-02-22 19:53:48 +01:00
</a>
{/each}
</div>
<style>
.directory {
display: table;
position: relative;
overflow: hidden;
margin: 8px auto 16px auto;
text-align: left;
2022-03-29 21:41:46 +02:00
background: var(--body_color);
2022-02-22 19:53:48 +01:00
border-collapse: collapse;
border-radius: 8px;
2022-11-07 17:10:17 +01:00
max-width: 100%;
2022-02-22 19:53:48 +01:00
width: 1000px;
}
.directory > * {
display: table-row;
}
.directory > * > * {
display: table-cell;
}
.node {
display: table-row;
text-decoration: none;
color: var(--text-color);
padding: 6px;
}
.node:not(:last-child) {
2022-03-29 21:41:46 +02:00
border-bottom: 1px solid var(--separator);
2022-02-22 19:53:48 +01:00
}
.node:hover:not(.node_selected) {
2022-03-29 21:41:46 +02:00
background: var(--input_background);
color: var(--input_text);
2022-02-22 19:53:48 +01:00
text-decoration: none;
}
.node.node_selected {
background-color: var(--highlight_color) !important;
color: var(--highlight_text_color);
}
td {
padding: 4px;
vertical-align: middle;
}
.node_icon {
height: 32px;
width: 32px;
vertical-align: middle;
}
.node_name {
width: 100%;
overflow: hidden;
line-height: 1.2em;
word-break: break-all;
}
.node_size {
min-width: 50px;
white-space: nowrap;
}
2023-04-19 18:26:50 +02:00
.hidden {
display: none;
}
2022-02-22 19:53:48 +01:00
</style>