Files
fnx_web/svelte/src/filesystem/FileStats.svelte

155 lines
3.3 KiB
Svelte
Raw Normal View History

2023-05-19 21:45:42 +02:00
<script>
import { onMount } from "svelte";
2023-05-19 21:45:42 +02:00
import { formatDataVolume, formatThousands } from "../util/Formatting.svelte"
import { fs_path_url } from "./FilesystemAPI";
2023-05-19 21:45:42 +02:00
export let nav
2023-05-19 21:45:42 +02:00
let loading = true
2023-05-19 21:45:42 +02:00
let downloads = 0
2023-05-30 23:35:18 +02:00
let transfer_used = 0
2023-05-19 21:45:42 +02:00
let socket = null
let error_msg = ""
2023-05-19 21:45:42 +02:00
let connected_to = ""
onMount(() => {
const unsub = nav.subscribe(update_base)
return () => {
unsub()
close_socket()
}
})
2023-05-19 21:45:42 +02:00
let total_directories = 0
let total_files = 0
let total_file_size = 0
const update_base = async () => {
if (!nav.initialized || connected_to === nav.base.path) {
2023-05-19 21:45:42 +02:00
return
}
connected_to = nav.base.path
// Tallys
total_directories = nav.children.reduce((acc, cur) => cur.type === "dir" ? acc + 1 : acc, 0)
total_files = nav.children.reduce((acc, cur) => cur.type === "file" ? acc + 1 : acc, 0)
total_file_size = nav.children.reduce((acc, cur) => acc + cur.file_size, 0)
if (nav.base.type === "dir") {
console.debug("Not opening websocket for directory")
return
}
2023-05-19 21:45:42 +02:00
// If the socket is already active we need to close it
close_socket()
loading = true
2023-05-19 21:45:42 +02:00
let ws_endpoint = location.origin.replace(/^http/, 'ws') +
fs_path_url(nav.base.path).replace(/^http/, 'ws') +
2023-05-19 21:45:42 +02:00
"?download_stats"
console.log("Opening socket to", ws_endpoint, "for path", nav.base.path)
2023-05-19 21:45:42 +02:00
socket = new WebSocket(ws_endpoint)
socket.onmessage = msg => {
let j = JSON.parse(msg.data)
console.debug("WS update", j)
error_msg = ""
loading = false
2023-05-19 21:45:42 +02:00
downloads = j.downloads
2023-05-30 23:35:18 +02:00
transfer_used = j.transfer_free + j.transfer_paid
2023-05-19 21:45:42 +02:00
}
socket.onerror = err => {
console.error("WS error", err)
error_msg = "failed to get stats, retrying..."
close_socket()
2023-05-19 21:45:42 +02:00
window.setTimeout(() => {
if (socket === null) {
update_base(nav.base)
2023-05-19 21:45:42 +02:00
}
}, 5000)
2023-05-19 21:45:42 +02:00
}
}
const close_socket = () => {
2024-03-15 22:16:28 +01:00
// Clear this path so the update_base function does not instantly return
// with the next retry
connected_to = ""
2023-05-19 21:45:42 +02:00
if (socket !== null) {
// Disable the error handler so it doesn't start retrying the connection
socket.onerror = null
socket.close()
socket = null
}
}
</script>
{#if $nav.base.type === "file"}
2023-11-15 16:40:55 +01:00
{#if error_msg !== ""}
{error_msg}
{:else}
<div class="group">
2023-11-15 16:40:55 +01:00
<div class="label">Downloads</div>
<div class="stat">
{loading ? "Loading..." : formatThousands(downloads)}
</div>
</div>
<div class="group">
2023-11-15 16:40:55 +01:00
<div class="label">Transfer used</div>
<div class="stat">
{loading ? "Loading..." : formatDataVolume(transfer_used, 3)}
</div>
</div>
2023-11-15 16:40:55 +01:00
{/if}
2023-11-15 16:40:55 +01:00
<div class="group">
<div class="label">Size</div>
<div class="stat">{formatDataVolume($nav.base.file_size, 3)}</div>
2023-11-15 16:40:55 +01:00
</div>
{:else if $nav.base.type === "dir" || $nav.base.type === "bucket"}
2023-05-19 21:45:42 +02:00
2023-11-15 16:40:55 +01:00
<div class="group">
<div class="label">Directories</div>
<div class="stat">{formatThousands(total_directories, 3)}</div>
</div>
<div class="group">
<div class="label">Files</div>
<div class="stat">{formatThousands(total_files, 3)}</div>
</div>
2023-11-15 16:40:55 +01:00
<div class="group">
<div class="label">Total size</div>
<div class="stat">{formatDataVolume(total_file_size, 3)}</div>
</div>
{/if}
<style>
.group {
flex: 1 1 auto;
2023-11-16 12:17:36 +01:00
text-align: center;
}
2023-05-19 21:45:42 +02:00
.label {
padding-left: 0.5em;
2023-05-19 21:45:42 +02:00
text-align: left;
font-size: 0.8em;
2024-04-11 22:18:55 +02:00
line-height: 1em;
}
.stat {
2024-04-11 22:18:55 +02:00
line-height: 1.2em;
2023-05-19 21:45:42 +02:00
}
2024-03-15 13:58:27 +01:00
@media (max-width: 800px) {
.label {
text-align: center;
padding-left: 0;
}
}
2023-05-19 21:45:42 +02:00
</style>