2020-11-11 00:00:54 +01:00
|
|
|
<script>
|
|
|
|
import { onMount } from 'svelte';
|
2020-11-26 11:13:27 +01:00
|
|
|
import { formatDate, formatDataVolume, formatThousands } from '../util/Formatting.svelte'
|
2023-05-11 19:07:29 +02:00
|
|
|
import { fs_get_file_url, fs_get_node, fs_split_path } from './FilesystemAPI.js'
|
2020-11-11 00:00:54 +01:00
|
|
|
import Sharebar from './Sharebar.svelte'
|
|
|
|
import Modal from '../util/Modal.svelte'
|
2020-11-17 23:39:27 +01:00
|
|
|
import FileManager from './filemanager/FileManager.svelte';
|
2020-11-11 23:45:52 +01:00
|
|
|
import Audio from './viewers/Audio.svelte';
|
|
|
|
import Image from './viewers/Image.svelte';
|
2020-11-17 23:39:27 +01:00
|
|
|
import Video from './viewers/Video.svelte';
|
2020-12-01 23:01:21 +01:00
|
|
|
import PDF from './viewers/PDF.svelte';
|
|
|
|
import PixeldrainLogo from '../util/PixeldrainLogo.svelte';
|
2022-04-26 15:23:57 +02:00
|
|
|
import LoadingIndicator from '../util/LoadingIndicator.svelte';
|
2023-05-11 19:07:29 +02:00
|
|
|
import EditWindow from './filemanager/EditWindow.svelte';
|
2020-11-11 00:00:54 +01:00
|
|
|
|
2020-11-26 11:13:27 +01:00
|
|
|
let toolbar_visible = (window.innerWidth > 600)
|
2020-11-11 00:00:54 +01:00
|
|
|
let toolbar_toggle = () => {
|
|
|
|
toolbar_visible = !toolbar_visible
|
|
|
|
if (!toolbar_visible) {
|
2020-12-01 23:01:21 +01:00
|
|
|
sharebar_visible = false
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let sharebar
|
|
|
|
let sharebar_visible = false
|
2020-12-01 23:01:21 +01:00
|
|
|
$: {
|
|
|
|
if (typeof(sharebar) !== "undefined") {
|
|
|
|
sharebar.setVisible(sharebar_visible)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-17 23:39:27 +01:00
|
|
|
let details
|
2020-11-11 00:00:54 +01:00
|
|
|
let details_visible = false
|
2023-05-11 19:07:29 +02:00
|
|
|
let edit_window
|
2020-11-17 23:39:27 +01:00
|
|
|
let download_frame
|
2020-11-11 00:00:54 +01:00
|
|
|
|
|
|
|
// State
|
2020-11-17 23:39:27 +01:00
|
|
|
let state = {
|
2023-04-11 23:44:50 +02:00
|
|
|
path: window.initial_node.path,
|
|
|
|
base: window.initial_node.path[window.initial_node.base_index],
|
|
|
|
base_index: window.initial_node.base_index,
|
|
|
|
root: window.initial_node.path[0],
|
2021-12-09 22:33:02 +01:00
|
|
|
children: window.initial_node.children,
|
2023-04-11 23:44:50 +02:00
|
|
|
permissions: {
|
|
|
|
create: window.initial_node.permissions.create,
|
|
|
|
read: window.initial_node.permissions.read,
|
|
|
|
update: window.initial_node.permissions.update,
|
|
|
|
delete: window.initial_node.permissions.delete,
|
|
|
|
},
|
2020-11-11 00:00:54 +01:00
|
|
|
|
2022-02-22 19:53:48 +01:00
|
|
|
// Passwords for accessing this bucket. Passwords are not always required
|
|
|
|
// but sometimes they are
|
|
|
|
read_password: "",
|
|
|
|
write_password: "",
|
|
|
|
|
2020-12-01 23:01:21 +01:00
|
|
|
// These are used to navigate forward and backward within a directory (using
|
|
|
|
// the previous and next buttons on the toolbar). The cached siblings will
|
|
|
|
// be used so that we don't need to make an extra request to the parent
|
|
|
|
// directory. The siblings_path variable is used to verify that the parent
|
|
|
|
// directory is still the same. If it's sifferent the siblings array is not
|
|
|
|
// used
|
|
|
|
siblings_path: "",
|
|
|
|
siblings: null,
|
2020-11-18 23:04:01 +01:00
|
|
|
|
2020-11-26 11:13:27 +01:00
|
|
|
// Root path of the bucket. Used for navigation by prepending it to a file
|
|
|
|
// path
|
2023-04-11 23:44:50 +02:00
|
|
|
path_root: "/d/"+window.initial_node.path[0].id,
|
2020-11-17 23:39:27 +01:00
|
|
|
loading: true,
|
2020-12-01 23:01:21 +01:00
|
|
|
viewer_type: "",
|
|
|
|
shuffle: false,
|
2020-11-17 23:39:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Tallys
|
2021-12-09 22:33:02 +01:00
|
|
|
$: total_directories = state.children.reduce((acc, cur) => cur.type === "dir" ? acc + 1 : acc, 0)
|
|
|
|
$: total_files = state.children.reduce((acc, cur) => cur.type === "file" ? acc + 1 : acc, 0)
|
|
|
|
$: total_file_size = state.children.reduce((acc, cur) => acc + cur.file_size, 0)
|
2020-11-11 00:00:54 +01:00
|
|
|
|
2020-12-01 23:01:21 +01:00
|
|
|
const sort_children = children => {
|
|
|
|
children.sort((a, b) => {
|
|
|
|
// Sort directories before files
|
|
|
|
if (a.type !== b.type) {
|
|
|
|
return a.type === "dir" ? -1 : 1
|
|
|
|
}
|
|
|
|
return a.name.localeCompare(b.name)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-05-11 19:07:29 +02:00
|
|
|
const navigate = async (path, push_history) => {
|
2020-11-17 23:39:27 +01:00
|
|
|
state.loading = true
|
2023-05-11 19:07:29 +02:00
|
|
|
console.debug("Navigating to path", path, push_history)
|
2020-11-17 23:39:27 +01:00
|
|
|
|
2023-05-11 19:07:29 +02:00
|
|
|
try {
|
|
|
|
let resp = await fs_get_node(state.root.id, path)
|
2023-04-19 19:47:08 +02:00
|
|
|
open_node(resp, push_history)
|
2023-05-11 19:07:29 +02:00
|
|
|
} catch (err) {
|
|
|
|
let errj = JSON.parse(err)
|
|
|
|
|
|
|
|
if (errj.value === "path_not_found") {
|
|
|
|
if (path !== "/" && path !== "") {
|
|
|
|
console.debug("Path", path, "was not found, trying to navigate to parent")
|
|
|
|
navigate(fs_split_path(path).parent, push_history)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
console.error(err)
|
|
|
|
alert("Error: "+err)
|
|
|
|
}
|
|
|
|
} finally {
|
2020-11-17 23:39:27 +01:00
|
|
|
state.loading = false
|
2023-05-11 19:07:29 +02:00
|
|
|
}
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
2023-05-11 19:07:29 +02:00
|
|
|
const reload = () => { navigate(state.base.path, false) }
|
2020-11-11 00:00:54 +01:00
|
|
|
|
2023-04-19 19:47:08 +02:00
|
|
|
const open_node = (node, push_history) => {
|
|
|
|
// We need to properly URL encode the file paths so they don't cause
|
|
|
|
// issues.. but we also want the slashes to stay clean. So here we encode
|
|
|
|
// the whole path, then decode the slashes
|
|
|
|
let cleanup_func = p => p.path_uri = encodeURIComponent(p.path).replaceAll("%2F", "/")
|
|
|
|
node.path.forEach(cleanup_func)
|
|
|
|
node.children.forEach(cleanup_func)
|
|
|
|
|
|
|
|
// Update window title and navigation history
|
|
|
|
window.document.title = node.path[node.base_index].name+" ~ pixeldrain"
|
|
|
|
if (push_history) {
|
|
|
|
window.history.pushState(
|
|
|
|
{}, window.document.title,
|
|
|
|
"/d/"+node.path[0].id+node.path[node.base_index].path,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-11-26 11:13:27 +01:00
|
|
|
// If the new node is a child of the previous node we save the parent's
|
|
|
|
// children array
|
2023-04-11 23:44:50 +02:00
|
|
|
if (node.path.length > 0 && node.path[node.path.length-1].path === state.base.path) {
|
2020-11-26 11:13:27 +01:00
|
|
|
console.debug("Current parent path and new node path match. Saving siblings")
|
|
|
|
|
2023-04-11 23:44:50 +02:00
|
|
|
state.siblings_path = node.path[node.path.length-1].path
|
2021-12-09 22:33:02 +01:00
|
|
|
state.siblings = state.children
|
2020-11-26 11:13:27 +01:00
|
|
|
}
|
|
|
|
|
2022-02-22 19:53:48 +01:00
|
|
|
// Sort directory children
|
|
|
|
sort_children(node.children)
|
|
|
|
|
2020-11-17 23:39:27 +01:00
|
|
|
// Update shared state
|
2023-04-11 23:44:50 +02:00
|
|
|
state.path = node.path
|
|
|
|
state.base = node.path[node.base_index]
|
|
|
|
state.base_index = node.base_index
|
|
|
|
state.root = node.path[0]
|
2021-12-09 22:33:02 +01:00
|
|
|
state.children = node.children
|
2023-04-11 23:44:50 +02:00
|
|
|
state.permissions = node.permissions
|
2020-11-17 23:39:27 +01:00
|
|
|
|
|
|
|
// Update the viewer area with the right viewer type
|
|
|
|
if (state.base.type === "bucket" || state.base.type === "dir") {
|
|
|
|
state.viewer_type = "dir"
|
|
|
|
} else if (state.base.file_type.startsWith("image")) {
|
|
|
|
state.viewer_type = "image"
|
2020-11-11 23:45:52 +01:00
|
|
|
} else if (
|
2020-11-17 23:39:27 +01:00
|
|
|
state.base.file_type.startsWith("audio") ||
|
|
|
|
state.base.file_type === "application/ogg" ||
|
|
|
|
state.base.name.endsWith(".mp3")
|
2020-11-11 23:45:52 +01:00
|
|
|
) {
|
2020-11-17 23:39:27 +01:00
|
|
|
state.viewer_type = "audio"
|
2020-11-11 23:45:52 +01:00
|
|
|
} else if (
|
2020-11-17 23:39:27 +01:00
|
|
|
state.base.file_type.startsWith("video") ||
|
|
|
|
state.base.file_type === "application/matroska" ||
|
|
|
|
state.base.file_type === "application/x-matroska"
|
2020-11-11 23:45:52 +01:00
|
|
|
) {
|
2020-11-17 23:39:27 +01:00
|
|
|
state.viewer_type = "video"
|
2020-12-01 23:01:21 +01:00
|
|
|
} else if (
|
|
|
|
state.base.file_type === "application/pdf" ||
|
|
|
|
state.base.file_type === "application/x-pdf"
|
|
|
|
) {
|
|
|
|
state.viewer_type = "pdf"
|
2020-11-17 23:39:27 +01:00
|
|
|
} else {
|
|
|
|
state.viewer_type = ""
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
2020-11-17 23:39:27 +01:00
|
|
|
|
2023-04-19 19:47:08 +02:00
|
|
|
console.debug("Opened node", node)
|
|
|
|
|
2020-11-17 23:39:27 +01:00
|
|
|
// Remove spinner
|
|
|
|
state.loading = false
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
2023-04-19 19:47:08 +02:00
|
|
|
|
|
|
|
onMount(() => open_node(window.initial_node, false))
|
2020-11-17 23:39:27 +01:00
|
|
|
|
2020-11-18 23:04:01 +01:00
|
|
|
// Opens a sibling of the currently open file. The offset is relative to the
|
|
|
|
// file which is currently open. Give a positive number to move forward and a
|
|
|
|
// negative number to move backward
|
2020-12-01 23:01:21 +01:00
|
|
|
const open_sibling = async offset => {
|
2023-04-11 23:44:50 +02:00
|
|
|
if (state.path.length <= 1) {
|
2020-12-01 23:01:21 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-18 23:04:01 +01:00
|
|
|
state.loading = true
|
|
|
|
|
2020-12-01 23:01:21 +01:00
|
|
|
// Check if we already have siblings cached
|
2023-04-11 23:44:50 +02:00
|
|
|
if (state.siblings != null && state.siblings_path == state.path[state.path.length - 2].path) {
|
2020-12-01 23:01:21 +01:00
|
|
|
console.debug("Using cached siblings")
|
|
|
|
} else {
|
|
|
|
console.debug("Cached siblings not available. Fetching new")
|
|
|
|
try {
|
2023-04-11 23:44:50 +02:00
|
|
|
let resp = await fs_get_node(state.root.id, state.path[state.path.length - 2].path)
|
2020-12-01 23:01:21 +01:00
|
|
|
|
|
|
|
// Sort directory children to make sure the order is consistent
|
2023-04-11 23:44:50 +02:00
|
|
|
sort_children(resp.children)
|
2020-12-01 23:01:21 +01:00
|
|
|
|
|
|
|
// Save new siblings in global state
|
2023-04-11 23:44:50 +02:00
|
|
|
state.siblings_path = state.path[state.path.length - 2].path
|
|
|
|
state.siblings = resp.children
|
2020-12-01 23:01:21 +01:00
|
|
|
} catch (err) {
|
|
|
|
console.error(err)
|
|
|
|
alert(err)
|
|
|
|
state.loading = false
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let next_sibling = null
|
2020-11-18 23:04:01 +01:00
|
|
|
|
2020-12-01 23:01:21 +01:00
|
|
|
if (state.shuffle) {
|
|
|
|
// Shuffle is on, pick a random sibling
|
|
|
|
for (let i = 0; i < 10; i++) {
|
|
|
|
next_sibling = state.siblings[Math.floor(Math.random()*state.siblings.length)]
|
|
|
|
|
|
|
|
// If we selected the same sibling we already have open we try
|
|
|
|
// again. Else we break the loop
|
|
|
|
if (next_sibling.name !== state.base.name) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2020-11-18 23:04:01 +01:00
|
|
|
// Loop over the parent node's children to find the one which is
|
|
|
|
// currently open. Then, if possible, we save the one which comes before
|
|
|
|
// or after it
|
2020-12-01 23:01:21 +01:00
|
|
|
for (let i = 0; i < state.siblings.length; i++) {
|
2020-11-18 23:04:01 +01:00
|
|
|
if (
|
2020-12-01 23:01:21 +01:00
|
|
|
state.siblings[i].name === state.base.name &&
|
2020-11-18 23:04:01 +01:00
|
|
|
i+offset >= 0 && // Prevent underflow
|
2020-12-01 23:01:21 +01:00
|
|
|
i+offset < state.siblings.length // Prevent overflow
|
2020-11-18 23:04:01 +01:00
|
|
|
) {
|
2020-12-01 23:01:21 +01:00
|
|
|
next_sibling = state.siblings[i+offset]
|
|
|
|
break
|
2020-11-18 23:04:01 +01:00
|
|
|
}
|
|
|
|
}
|
2020-12-01 23:01:21 +01:00
|
|
|
}
|
2020-11-18 23:04:01 +01:00
|
|
|
|
2020-12-01 23:01:21 +01:00
|
|
|
// If we found a sibling we open it
|
|
|
|
if (next_sibling !== null) {
|
|
|
|
console.debug("Opening sibling", next_sibling)
|
2023-04-19 19:47:08 +02:00
|
|
|
navigate(next_sibling.path, true)
|
2020-12-01 23:01:21 +01:00
|
|
|
} else {
|
|
|
|
console.debug("No siblings found")
|
2020-11-18 23:04:01 +01:00
|
|
|
state.loading = false
|
2020-12-01 23:01:21 +01:00
|
|
|
}
|
2020-11-18 23:04:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Capture browser back and forward navigation buttons
|
2020-11-17 23:39:27 +01:00
|
|
|
window.onpopstate = (e) => {
|
2023-04-19 19:47:08 +02:00
|
|
|
// Get the part of the URL after the bucket ID and navigate to it
|
2023-04-19 20:11:08 +02:00
|
|
|
let path = document.location.pathname.replace("/d/"+state.root.id, "")
|
|
|
|
navigate(decodeURIComponent(path), false)
|
2020-11-17 23:39:27 +01:00
|
|
|
};
|
2020-11-11 00:00:54 +01:00
|
|
|
|
|
|
|
const keydown = e => {
|
2020-12-01 23:01:21 +01:00
|
|
|
if (e.ctrlKey || e.altKey || e.metaKey) {
|
|
|
|
return // prevent custom shortcuts from interfering with system shortcuts
|
|
|
|
}
|
2021-03-04 15:42:46 +01:00
|
|
|
if (document.activeElement.type && document.activeElement.type === "text") {
|
|
|
|
return // Prevent shortcuts from interfering with input fields
|
|
|
|
}
|
2020-12-01 23:01:21 +01:00
|
|
|
|
2020-11-11 00:00:54 +01:00
|
|
|
switch (e.key) {
|
2020-11-26 11:13:27 +01:00
|
|
|
case "Escape":
|
2020-11-11 00:00:54 +01:00
|
|
|
hide();
|
2020-12-01 23:01:21 +01:00
|
|
|
break;
|
2020-11-26 11:13:27 +01:00
|
|
|
case "i":
|
2022-11-08 16:59:30 +01:00
|
|
|
details.toggle()
|
2020-12-01 23:01:21 +01:00
|
|
|
break;
|
2020-11-26 11:13:27 +01:00
|
|
|
case "s":
|
|
|
|
download()
|
2020-12-01 23:01:21 +01:00
|
|
|
break;
|
|
|
|
case "r":
|
|
|
|
state.shuffle = !state.shuffle
|
|
|
|
break;
|
|
|
|
case "a", "ArrowLeft":
|
|
|
|
open_sibling(-1)
|
|
|
|
break;
|
|
|
|
case "d", "ArrowRight":
|
|
|
|
open_sibling(1)
|
|
|
|
break;
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-11-17 23:39:27 +01:00
|
|
|
const download = () => {
|
2023-04-11 23:44:50 +02:00
|
|
|
download_frame.src = fs_get_file_url(state.root.id, state.base.path) + "?attach"
|
2020-11-17 23:39:27 +01:00
|
|
|
}
|
2020-12-01 23:01:21 +01:00
|
|
|
const share = () => {
|
|
|
|
|
|
|
|
}
|
2020-11-17 23:39:27 +01:00
|
|
|
|
2020-11-11 00:00:54 +01:00
|
|
|
</script>
|
|
|
|
|
2020-12-01 23:01:21 +01:00
|
|
|
<svelte:window on:keydown={keydown} />
|
2020-11-11 00:00:54 +01:00
|
|
|
|
2022-04-26 15:23:57 +02:00
|
|
|
<LoadingIndicator loading={state.loading}/>
|
2020-11-11 23:45:52 +01:00
|
|
|
|
2023-04-11 23:44:50 +02:00
|
|
|
<div class="file_viewer">
|
|
|
|
<div class="file_viewer_headerbar">
|
2021-10-19 15:59:49 +02:00
|
|
|
<button on:click={toolbar_toggle} class="button_toggle_toolbar round" class:button_highlight={toolbar_visible}>
|
2020-11-11 00:00:54 +01:00
|
|
|
<i class="icon">menu</i>
|
|
|
|
</button>
|
2021-10-19 15:59:49 +02:00
|
|
|
<a href="/" id="button_home" class="button button_home round">
|
2021-07-06 20:08:51 +02:00
|
|
|
<PixeldrainLogo style="height: 1.6em; width: 1.6em; margin: 0 0.2em 0 0; color: currentColor;"></PixeldrainLogo>
|
2020-12-01 23:01:21 +01:00
|
|
|
</a>
|
2020-11-11 00:00:54 +01:00
|
|
|
<div class="file_viewer_headerbar_title">
|
2023-04-11 23:44:50 +02:00
|
|
|
{#each state.path as node, i}
|
2021-12-09 22:33:02 +01:00
|
|
|
<a
|
2023-04-11 23:44:50 +02:00
|
|
|
href={state.path_root+node.path}
|
2022-03-29 21:41:46 +02:00
|
|
|
class="breadcrumb button"
|
2023-04-11 23:44:50 +02:00
|
|
|
class:button_highlight={state.base_index === i}
|
|
|
|
on:click|preventDefault={() => {navigate(node.path, true)}}>
|
|
|
|
{node.name}
|
|
|
|
</a>
|
2020-11-11 23:45:52 +01:00
|
|
|
{/each}
|
2020-11-11 00:00:54 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="list_navigator"></div>
|
|
|
|
<div class="file_viewer_window">
|
2022-10-17 17:48:04 +02:00
|
|
|
<div class="toolbar" class:toolbar_visible>
|
2020-11-17 23:39:27 +01:00
|
|
|
{#if state.base.type === "file"}
|
2020-11-11 00:00:54 +01:00
|
|
|
<div class="toolbar_label">Size</div>
|
2020-11-17 23:39:27 +01:00
|
|
|
<div class="toolbar_statistic">{formatDataVolume(state.base.file_size, 3)}</div>
|
|
|
|
{:else if state.base.type === "dir" || state.base.type === "bucket"}
|
|
|
|
<div class="toolbar_label">Directories</div>
|
|
|
|
<div class="toolbar_statistic">{formatThousands(total_directories, 3)}</div>
|
|
|
|
<div class="toolbar_label">Files</div>
|
|
|
|
<div class="toolbar_statistic">{formatThousands(total_files, 3)}</div>
|
|
|
|
<div class="toolbar_label">Total size</div>
|
|
|
|
<div class="toolbar_statistic">{formatDataVolume(total_file_size, 3)}</div>
|
|
|
|
{/if}
|
2020-11-11 00:00:54 +01:00
|
|
|
|
2022-10-17 17:48:04 +02:00
|
|
|
<div class="separator"></div>
|
|
|
|
|
2020-12-01 23:01:21 +01:00
|
|
|
<div class="button_row">
|
|
|
|
<button on:click={() => {open_sibling(-1)}}>
|
|
|
|
<i class="icon">skip_previous</i>
|
|
|
|
</button>
|
|
|
|
<button on:click={() => {state.shuffle = !state.shuffle}} class:button_highlight={state.shuffle}>
|
|
|
|
<i class="icon">shuffle</i>
|
|
|
|
</button>
|
|
|
|
<button on:click={() => {open_sibling(1)}}>
|
|
|
|
<i class="icon">skip_next</i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
2020-11-17 23:39:27 +01:00
|
|
|
{#if state.base.type === "file"}
|
2022-03-08 23:34:10 +01:00
|
|
|
<button on:click={download} class="toolbar_button">
|
2020-11-11 00:00:54 +01:00
|
|
|
<i class="icon">save</i> Download
|
|
|
|
</button>
|
2020-11-17 23:39:27 +01:00
|
|
|
{/if}
|
2022-03-08 23:34:10 +01:00
|
|
|
<button id="btn_download_list" class="toolbar_button" style="display: none;">
|
2020-11-11 00:00:54 +01:00
|
|
|
<i class="icon">save</i> DL all files
|
|
|
|
</button>
|
2022-03-08 23:34:10 +01:00
|
|
|
<button id="btn_copy" class="toolbar_button">
|
2020-11-11 00:00:54 +01:00
|
|
|
<i class="icon">content_copy</i> <u>C</u>opy Link
|
|
|
|
</button>
|
2022-03-08 23:34:10 +01:00
|
|
|
<button on:click={() => sharebar_visible = !sharebar_visible} class="toolbar_button" class:button_highlight={sharebar_visible}>
|
2020-11-11 00:00:54 +01:00
|
|
|
<i class="icon">share</i> Share
|
|
|
|
</button>
|
2022-03-08 23:34:10 +01:00
|
|
|
<button on:click={details.toggle} class="toolbar_button" class:button_highlight={details_visible}>
|
2020-11-11 00:00:54 +01:00
|
|
|
<i class="icon">help</i> Deta<u>i</u>ls
|
|
|
|
</button>
|
2023-05-11 19:07:29 +02:00
|
|
|
{#if state.base.path !== "/"}
|
|
|
|
<button on:click={() => edit_window.edit(state.base)} class="toolbar_button">
|
|
|
|
<i class="icon">edit</i> <u>E</u>dit
|
|
|
|
</button>
|
|
|
|
{/if}
|
2022-10-17 17:48:04 +02:00
|
|
|
</div>
|
2020-11-11 00:00:54 +01:00
|
|
|
<Sharebar bind:this={sharebar}></Sharebar>
|
|
|
|
|
2021-10-19 15:59:49 +02:00
|
|
|
<div class="file_viewer_file_preview checkers" class:toolbar_visible>
|
2020-11-17 23:39:27 +01:00
|
|
|
{#if state.viewer_type === "dir"}
|
|
|
|
<FileManager state={state} on:navigate={e => {navigate(e.detail, true)}} on:loading={e => {state.loading = e.detail}}></FileManager>
|
|
|
|
{:else if state.viewer_type === "audio"}
|
2020-11-18 23:04:01 +01:00
|
|
|
<Audio state={state} on:open_sibling={e => {open_sibling(e.detail)}}></Audio>
|
2020-11-17 23:39:27 +01:00
|
|
|
{:else if state.viewer_type === "image"}
|
2020-11-18 23:04:01 +01:00
|
|
|
<Image state={state} on:open_sibling={e => {open_sibling(e.detail)}}></Image>
|
2020-11-17 23:39:27 +01:00
|
|
|
{:else if state.viewer_type === "video"}
|
2020-11-18 23:04:01 +01:00
|
|
|
<Video state={state} on:open_sibling={e => {open_sibling(e.detail)}}></Video>
|
2020-12-01 23:01:21 +01:00
|
|
|
{:else if state.viewer_type === "pdf"}
|
|
|
|
<PDF state={state}></PDF>
|
2020-11-11 00:00:54 +01:00
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- This frame will load the download URL when a download button is pressed -->
|
2020-11-17 23:39:27 +01:00
|
|
|
<iframe bind:this={download_frame} title="Frame for downloading files" style="display: none; width: 1px; height: 1px;"></iframe>
|
2020-11-11 00:00:54 +01:00
|
|
|
|
2022-11-08 16:59:30 +01:00
|
|
|
<Modal bind:this={details} title="Details" width="800px" role="prompt">
|
2020-11-11 00:00:54 +01:00
|
|
|
<table style="min-width: 100%;">
|
|
|
|
<tr><td colspan="2"><h3>Node details</h3></td></tr>
|
2020-11-17 23:39:27 +01:00
|
|
|
<tr><td>Name</td><td>{state.base.name}</td></tr>
|
|
|
|
<tr><td>Path</td><td>{state.base.path}</td></tr>
|
|
|
|
<tr><td>Type</td><td>{state.base.type}</td></tr>
|
|
|
|
<tr><td>Date created</td><td>{formatDate(state.base.date_created, true, true, true)}</td></tr>
|
|
|
|
<tr><td>Date modified</td><td>{formatDate(state.base.date_modified, true, true, true)}</td></tr>
|
2023-05-11 19:07:29 +02:00
|
|
|
<tr><td>Mode</td><td>{state.base.mode_string}</td></tr>
|
|
|
|
{#if state.base.id}
|
|
|
|
<tr>
|
|
|
|
<td>Public ID</td>
|
|
|
|
<td><a href="/d/{state.base.id}">{state.base.id}</a></td>
|
|
|
|
</tr>
|
|
|
|
{/if}
|
2020-11-17 23:39:27 +01:00
|
|
|
{#if state.base.type === "file"}
|
|
|
|
<tr><td>File type</td><td>{state.base.file_type}</td></tr>
|
|
|
|
<tr><td>File size</td><td>{formatDataVolume(state.base.file_size)}</td></tr>
|
2022-11-08 16:59:30 +01:00
|
|
|
<tr><td>SHA256 sum</td><td>{state.base.sha256_sum}</td></tr>
|
2020-11-11 00:00:54 +01:00
|
|
|
{/if}
|
2023-05-11 19:07:29 +02:00
|
|
|
|
2020-11-11 00:00:54 +01:00
|
|
|
<tr><td colspan="2"><h3>Bucket details</h3></td></tr>
|
2023-04-11 23:44:50 +02:00
|
|
|
<tr><td>ID</td><td>{state.root.id}</td></tr>
|
|
|
|
<tr><td>Name</td><td>{state.root.name}</td></tr>
|
|
|
|
<tr><td>Date created</td><td>{formatDate(state.root.date_created, true, true, true)}</td></tr>
|
|
|
|
<tr><td>Date modified</td><td>{formatDate(state.root.date_modified, true, true, true)}</td></tr>
|
2020-11-11 00:00:54 +01:00
|
|
|
</table>
|
|
|
|
</Modal>
|
2023-05-11 19:07:29 +02:00
|
|
|
|
|
|
|
<EditWindow bind:this={edit_window} bucket={state.root.id} on:reload={() => reload()}/>
|
2020-11-11 00:00:54 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
/* Viewer container */
|
|
|
|
.file_viewer {
|
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
overflow: hidden;
|
2022-03-29 21:41:46 +02:00
|
|
|
background: var(--body_background);
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Headerbar (row 1) */
|
|
|
|
.file_viewer > .file_viewer_headerbar {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
text-align: left;
|
|
|
|
z-index: 10;
|
|
|
|
box-shadow: none;
|
2020-11-11 23:45:52 +01:00
|
|
|
padding: 4px;
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Headerbar components */
|
|
|
|
.file_viewer > .file_viewer_headerbar > * {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
2020-11-11 23:45:52 +01:00
|
|
|
margin-left: 4px;
|
|
|
|
margin-right: 4px;
|
2020-11-11 00:00:54 +01:00
|
|
|
display: inline;
|
2020-11-11 23:45:52 +01:00
|
|
|
align-self: center;
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
2021-10-19 15:59:49 +02:00
|
|
|
.file_viewer > .file_viewer_headerbar > .button_toggle_toolbar > .icon {
|
|
|
|
font-size: 1.6em;
|
|
|
|
}
|
2020-11-11 00:00:54 +01:00
|
|
|
.file_viewer > .file_viewer_headerbar > .file_viewer_headerbar_title {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
display: flex;
|
2020-11-11 23:45:52 +01:00
|
|
|
align-items: center;
|
2020-11-11 00:00:54 +01:00
|
|
|
justify-content: center;
|
2020-11-11 23:45:52 +01:00
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-direction: row;
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
2020-11-11 23:45:52 +01:00
|
|
|
.breadcrumb {
|
|
|
|
min-width: 1em;
|
|
|
|
text-align: center;
|
2023-04-19 19:47:08 +02:00
|
|
|
padding: 6px 8px;
|
|
|
|
margin: 4px;
|
2020-11-17 23:39:27 +01:00
|
|
|
word-break: break-all;
|
2020-11-11 23:45:52 +01:00
|
|
|
}
|
|
|
|
|
2020-11-11 00:00:54 +01:00
|
|
|
.button_home::after {
|
|
|
|
content: "pixeldrain";
|
|
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
.button_home::after {
|
|
|
|
content: "pd";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* List Navigator (row 2) */
|
|
|
|
.file_viewer > .list_navigator {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
position: relative;
|
|
|
|
display: none; /* Becomes visible if the page is a list */
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 1em;
|
|
|
|
overflow-x: auto;
|
|
|
|
overflow-y: hidden;
|
|
|
|
z-index: 50;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
/* .file_viewer > .list_navigator > .list_item{
|
|
|
|
height: 2.6em !important;
|
|
|
|
width: 220px !important;
|
|
|
|
} */
|
|
|
|
|
|
|
|
/* File preview area (row 3) */
|
|
|
|
.file_viewer > .file_viewer_window {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
margin: 0;
|
|
|
|
z-index: 9;
|
|
|
|
}
|
|
|
|
.file_viewer > .file_viewer_window > .file_viewer_file_preview {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: inline-block;
|
|
|
|
min-height: 100px;
|
|
|
|
min-width: 100px;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
transition: left 0.5s;
|
|
|
|
overflow: hidden;
|
2022-10-17 17:48:04 +02:00
|
|
|
border-radius: 12px;
|
|
|
|
border: 2px solid var(--separator);
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Toolbar */
|
|
|
|
.toolbar {
|
|
|
|
position: absolute;
|
|
|
|
width: 8em;
|
|
|
|
z-index: 49;
|
|
|
|
overflow: hidden;
|
|
|
|
float: left;
|
|
|
|
left: -8em;
|
|
|
|
bottom: 0;
|
|
|
|
top: 0;
|
|
|
|
padding: 0;
|
|
|
|
text-align: left;
|
|
|
|
transition: left 0.5s;
|
|
|
|
}
|
|
|
|
.toolbar.toolbar_visible { left: 0; }
|
|
|
|
.file_viewer > .file_viewer_window > .file_viewer_file_preview.toolbar_visible { left: 8em; }
|
|
|
|
|
2022-10-17 17:48:04 +02:00
|
|
|
.toolbar > .separator {
|
|
|
|
height: 2px;
|
|
|
|
width: 100%;
|
|
|
|
margin: 4px 0;
|
|
|
|
background-color: var(--separator);
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
2022-03-08 23:34:10 +01:00
|
|
|
.toolbar_button {
|
2020-11-11 00:00:54 +01:00
|
|
|
text-align: left;
|
2022-03-08 23:34:10 +01:00
|
|
|
width: calc(100% - 6px);
|
2020-11-11 00:00:54 +01:00
|
|
|
}
|
|
|
|
.toolbar_label {
|
|
|
|
text-align: left;
|
|
|
|
padding-left: 10px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
line-height: 0.7em;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
.toolbar_statistic {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2020-12-01 23:01:21 +01:00
|
|
|
.button_row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
.button_row > * {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2020-11-11 00:00:54 +01:00
|
|
|
|
|
|
|
</style>
|