2020-11-17 23:39:27 +01:00
|
|
|
<script>
|
|
|
|
import { formatDataVolume } from '../../util/Formatting.svelte'
|
|
|
|
import { fs_delete_node } from './../FilesystemAPI.svelte'
|
|
|
|
import { createEventDispatcher } from 'svelte'
|
|
|
|
import CreateDirectory from './CreateDirectory.svelte'
|
|
|
|
import FileUploader from './FileUploader.svelte'
|
|
|
|
let dispatch = createEventDispatcher()
|
|
|
|
|
|
|
|
export let state
|
|
|
|
let mode = "viewing"
|
|
|
|
let creating_dir = false
|
|
|
|
let uploader
|
|
|
|
|
|
|
|
const node_click = (index) => {
|
|
|
|
creating_dir = false
|
|
|
|
|
|
|
|
// We prefix our custom state properties with fm_ to not interfere with
|
|
|
|
// other modules
|
|
|
|
if (mode === "viewing") {
|
2021-12-09 22:33:02 +01:00
|
|
|
dispatch("navigate", state.children[index].path)
|
2020-11-17 23:39:27 +01:00
|
|
|
} else if (mode === "selecting") {
|
2021-12-09 22:33:02 +01:00
|
|
|
state.children[index].fm_selected = !state.children[index].fm_selected
|
2020-11-17 23:39:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
const navigate_up = () => {
|
|
|
|
creating_dir = false
|
|
|
|
|
|
|
|
// Go to the path of the last parent
|
|
|
|
if (state.parents.length !== 0) {
|
|
|
|
dispatch("navigate", state.parents[state.parents.length-1].path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const reload = () => { dispatch("navigate", state.base.path) }
|
|
|
|
|
|
|
|
const node_icon = node => {
|
|
|
|
if (node.type === "dir") {
|
|
|
|
return "/res/img/mime/folder.png"
|
|
|
|
}
|
|
|
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2020-12-01 23:01:21 +01:00
|
|
|
const delete_selected = () => {
|
|
|
|
if (mode !== "selecting") {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-09 22:33:02 +01:00
|
|
|
let count = state.children.reduce((acc, cur) => {
|
2020-12-01 23:01:21 +01:00
|
|
|
if (cur.fm_selected) {
|
|
|
|
acc++
|
|
|
|
}
|
|
|
|
return acc
|
|
|
|
}, 0)
|
|
|
|
|
|
|
|
let confirmSingle = `Are you sure you want to delete this file? This action is irreversible.`
|
|
|
|
let confirmMulti = `Are you sure you want to delete these ${count} files? This action is irreversible.`
|
|
|
|
if (count === 0 ||
|
|
|
|
(count === 1 && !confirm(confirmSingle)) ||
|
|
|
|
(count > 1 && !confirm(confirmMulti))) {
|
2020-11-17 23:39:27 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
dispatch("loading", true)
|
|
|
|
|
|
|
|
// Save all promises with deletion requests in an array
|
|
|
|
let promises = []
|
2021-12-09 22:33:02 +01:00
|
|
|
state.children.forEach(child => {
|
2020-12-01 23:01:21 +01:00
|
|
|
if (!child.fm_selected) { return }
|
2020-11-17 23:39:27 +01:00
|
|
|
promises.push(fs_delete_node(state.bucket.id, child.path))
|
|
|
|
})
|
|
|
|
|
|
|
|
// Wait for all the promises to finish
|
|
|
|
Promise.all(promises).catch((err) => {
|
|
|
|
console.error(err)
|
|
|
|
}).finally(() => {
|
|
|
|
mode = "viewing"
|
|
|
|
reload()
|
|
|
|
})
|
|
|
|
}
|
2020-12-01 23:01:21 +01:00
|
|
|
const toggle_select = () => {
|
|
|
|
if (mode !== "selecting") {
|
|
|
|
mode = "selecting"
|
2020-11-17 23:39:27 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-01 23:01:21 +01:00
|
|
|
// Unmark all the selected files and return to viewing mode
|
2021-12-09 22:33:02 +01:00
|
|
|
state.children.forEach((child, i) => {
|
2020-12-01 23:01:21 +01:00
|
|
|
if (child.fm_selected) {
|
2021-12-09 22:33:02 +01:00
|
|
|
state.children[i].fm_selected = false
|
2020-11-17 23:39:27 +01:00
|
|
|
}
|
|
|
|
})
|
2020-12-01 23:01:21 +01:00
|
|
|
mode = "viewing"
|
2020-11-17 23:39:27 +01:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="width_container">
|
|
|
|
<div class="toolbar">
|
2020-12-01 23:01:21 +01:00
|
|
|
<button on:click={navigate_up} disabled={state.parents.length === 0}><i class="icon">arrow_back</i></button>
|
|
|
|
<button on:click={reload}><i class="icon">refresh</i></button>
|
2020-11-17 23:39:27 +01:00
|
|
|
<div class="toolbar_spacer"></div>
|
|
|
|
{#if state.bucket.permissions.update}
|
|
|
|
<button on:click={uploader.picker}><i class="icon">cloud_upload</i></button>
|
|
|
|
<button on:click={() => {creating_dir = true}}><i class="icon">create_new_folder</i></button>
|
|
|
|
|
|
|
|
<button
|
2020-12-01 23:01:21 +01:00
|
|
|
on:click={toggle_select}
|
|
|
|
class:button_highlight={mode === "selecting"}>
|
|
|
|
<i class="icon">edit</i>
|
2020-11-17 23:39:27 +01:00
|
|
|
</button>
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
|
2020-12-01 23:01:21 +01:00
|
|
|
{#if mode === "selecting"}
|
|
|
|
<div class="toolbar toolbar_edit highlight_green">
|
2020-11-17 23:39:27 +01:00
|
|
|
<div style="flex: 1 1 auto; justify-self: center;">
|
2020-12-01 23:01:21 +01:00
|
|
|
Select files or directories by clicking on them. Then you
|
|
|
|
can choose which action to perform
|
2020-11-17 23:39:27 +01:00
|
|
|
</div>
|
|
|
|
<div style="display: flex; flex-direction: row; justify-content: center;">
|
2020-12-01 23:01:21 +01:00
|
|
|
<button on:click={toggle_select}>
|
2020-11-17 23:39:27 +01:00
|
|
|
<i class="icon">undo</i>
|
|
|
|
Cancel
|
|
|
|
</button>
|
2020-12-01 23:01:21 +01:00
|
|
|
<button on:click={delete_selected} class="button_red">
|
2020-11-17 23:39:27 +01:00
|
|
|
<i class="icon">delete</i>
|
|
|
|
Delete selected
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
{/if}
|
|
|
|
|
2021-12-09 22:33:02 +01:00
|
|
|
<FileUploader bind:this={uploader} bucket_id={state.bucket.id} target_dir={state.base.path} on:reload={reload}></FileUploader>
|
2020-11-17 23:39:27 +01:00
|
|
|
|
|
|
|
<div class="directory">
|
|
|
|
<tr>
|
|
|
|
<td></td>
|
|
|
|
<td>name</td>
|
|
|
|
<td>size</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
{#if creating_dir}
|
|
|
|
<CreateDirectory state={state} on:done={() => {reload(); creating_dir = false;}} on:loading></CreateDirectory>
|
|
|
|
{/if}
|
|
|
|
|
2021-12-09 22:33:02 +01:00
|
|
|
{#each state.children as child, index (child.path)}
|
2020-11-17 23:39:27 +01:00
|
|
|
<a
|
|
|
|
href={state.path_root+child.path}
|
|
|
|
on:click|preventDefault={() => {node_click(index)}}
|
|
|
|
class="node"
|
2020-12-01 23:01:21 +01:00
|
|
|
class:node_selected={child.fm_selected}>
|
2020-11-17 23:39:27 +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">
|
2021-01-05 00:00:46 +01:00
|
|
|
{#if child.type === "file"}
|
|
|
|
{formatDataVolume(child.file_size, 3)}
|
|
|
|
{/if}
|
2020-11-17 23:39:27 +01:00
|
|
|
</td>
|
|
|
|
</a>
|
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.container {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.width_container {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 94%;
|
|
|
|
width: 1000px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.toolbar {
|
|
|
|
position: relative;
|
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
|
|
margin: 16px 0 0 0;
|
|
|
|
padding: 0;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.toolbar > * { flex: 0 0 auto; }
|
|
|
|
.toolbar_spacer { flex: 1 1 auto; }
|
|
|
|
|
|
|
|
@media(max-width: 800px) {
|
2020-12-01 23:01:21 +01:00
|
|
|
.toolbar_edit {
|
2020-11-17 23:39:27 +01:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.directory {
|
|
|
|
display: table;
|
|
|
|
position: relative;
|
|
|
|
overflow-x: auto;
|
|
|
|
overflow-y: hidden;
|
|
|
|
width: 100%;
|
|
|
|
margin: 16px 0 16px 0;
|
|
|
|
text-align: left;
|
2021-10-19 15:59:49 +02:00
|
|
|
background-color: var(--layer_1_color);
|
2021-09-23 20:38:17 +02:00
|
|
|
box-shadow: 1px 1px 5px var(--shadow_color);
|
2020-11-17 23:39:27 +01:00
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
.directory > * { display: table-row; }
|
|
|
|
.directory > * > * { display: table-cell; }
|
|
|
|
.directory :global(.node) {
|
|
|
|
display: table-row;
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--text-color);
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
.directory :global(.node:not(:last-child)) {
|
2021-10-19 15:59:49 +02:00
|
|
|
border-bottom: 1px solid var(--layer_2_color);
|
2020-11-17 23:39:27 +01:00
|
|
|
}
|
|
|
|
.directory :global(.node:hover:not(.node_selected)) {
|
|
|
|
background-color: var(--input_color_dark);
|
|
|
|
color: var(--input_text_color);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.directory :global(.node.node_selected) {
|
|
|
|
background-color: var(--highlight_color) !important;
|
|
|
|
color: var(--highlight_text_color);
|
|
|
|
}
|
|
|
|
.directory :global(.node.node_delete) {
|
|
|
|
background-color: var(--danger_color) !important;
|
|
|
|
color: var(--highlight_text_color);
|
|
|
|
}
|
|
|
|
.directory :global(td) {
|
|
|
|
padding: 4px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.directory :global(.node_icon) {
|
|
|
|
height: 32px;
|
2020-12-15 16:25:20 +01:00
|
|
|
width: 32px;
|
2020-11-17 23:39:27 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.directory :global(.node_name) {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
line-height: 1.2em;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
.directory :global(.node_size) {
|
|
|
|
min-width: 50px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
</style>
|