214 lines
4.6 KiB
Svelte
214 lines
4.6 KiB
Svelte
<script>
|
|
import { createEventDispatcher } from "svelte";
|
|
import { generate_share_url } from "./Sharebar.svelte";
|
|
import { copy_text } from "../util/Util.svelte";
|
|
import FileStats from "./FileStats.svelte";
|
|
|
|
let dispatch = createEventDispatcher()
|
|
|
|
export let fs_navigator
|
|
export let state = {
|
|
base: {
|
|
type: "",
|
|
path: "",
|
|
},
|
|
children: [],
|
|
shuffle: false
|
|
}
|
|
|
|
export let view = "file"
|
|
export let details_visible = false
|
|
export let edit_window
|
|
export let edit_visible = false
|
|
export let file_viewer
|
|
|
|
$: share_url = generate_share_url(state.path)
|
|
let link_copied = false
|
|
export const copy_link = () => {
|
|
if (share_url === "") {
|
|
edit_window.edit(state.base, true, "share")
|
|
return
|
|
}
|
|
|
|
copy_text(share_url)
|
|
link_copied = true
|
|
setTimeout(() => {link_copied = false}, 60000)
|
|
}
|
|
let share = async () => {
|
|
if (share_url === "") {
|
|
edit_window.edit(state.base, true, "share")
|
|
return
|
|
}
|
|
|
|
if (navigator.share) {
|
|
await navigator.share({
|
|
title: state.base.name,
|
|
text: "I would like to share '" + state.base.name + "' with you",
|
|
url: share_url
|
|
})
|
|
} else {
|
|
alert("Navigator does not support sharing, use copy link button to copy the link instead")
|
|
}
|
|
}
|
|
|
|
let fullscreen = false
|
|
const toggle_fullscreen = () => {
|
|
if (fullscreen || document.fullscreenElement) {
|
|
try {
|
|
document.exitFullscreen()
|
|
} catch (err) {
|
|
console.debug("Failed to exit fullscreen", err)
|
|
}
|
|
fullscreen = false
|
|
} else {
|
|
file_viewer.requestFullscreen()
|
|
fullscreen = true
|
|
}
|
|
}
|
|
|
|
let expanded = false
|
|
let expand = e => {
|
|
e.preventDefault()
|
|
e.stopPropagation()
|
|
expanded = !expanded
|
|
}
|
|
</script>
|
|
|
|
<div class="toolbar" class:expanded>
|
|
<div class="stats_container" on:click={expand} on:keypress={expand} role="button" tabindex="0">
|
|
<button class="button_expand" on:click={expand}>
|
|
{#if expanded}
|
|
<i class="icon">expand_more</i>
|
|
{:else}
|
|
<i class="icon">expand_less</i>
|
|
{/if}
|
|
</button>
|
|
<FileStats state={state}/>
|
|
</div>
|
|
|
|
<div class="separator"></div>
|
|
<div class="grid">
|
|
|
|
<div class="button_row">
|
|
<button on:click={() => {fs_navigator.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={() => {fs_navigator.open_sibling(1)}}>
|
|
<i class="icon">skip_next</i>
|
|
</button>
|
|
</div>
|
|
|
|
{#if state.path[0].id === "me"}
|
|
<button on:click={() => dispatch("search")} class:button_highlight={view === "search"}>
|
|
<i class="icon">search</i>
|
|
<span>Search</span>
|
|
</button>
|
|
{/if}
|
|
|
|
{#if state.base.type === "file"}
|
|
<button on:click={() => dispatch("download")}>
|
|
<i class="icon">save</i>
|
|
<span>Download</span>
|
|
</button>
|
|
{/if}
|
|
|
|
{#if share_url !== ""}
|
|
<button on:click={copy_link} class:button_highlight={link_copied}>
|
|
<i class="icon">content_copy</i>
|
|
<span><u>C</u>opy Link</span>
|
|
</button>
|
|
{/if}
|
|
|
|
{#if state.base.id !== "me"}
|
|
<button on:click={share}>
|
|
<i class="icon">share</i>
|
|
<span>Share</span>
|
|
</button>
|
|
{/if}
|
|
|
|
<button
|
|
class="toolbar_button"
|
|
on:click={toggle_fullscreen}
|
|
class:button_highlight={fullscreen}
|
|
title="Open page in full screen mode">
|
|
{#if fullscreen}
|
|
<i class="icon">fullscreen_exit</i>
|
|
{:else}
|
|
<i class="icon">fullscreen</i>
|
|
{/if}
|
|
<span>Fullscreen</span>
|
|
</button>
|
|
|
|
<button on:click={() => details_visible = !details_visible} class:button_highlight={details_visible}>
|
|
<i class="icon">help</i>
|
|
<span>Deta<u>i</u>ls</span>
|
|
</button>
|
|
|
|
{#if state.base.id !== "me" && state.permissions.update === true}
|
|
<button on:click={() => edit_window.edit(state.base, true, "file")} class:button_highlight={edit_visible}>
|
|
<i class="icon">edit</i>
|
|
<span><u>E</u>dit</span>
|
|
</button>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.toolbar {
|
|
flex: 0 0 auto;
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
transition: max-height 0.3s;
|
|
}
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(7.5em, 1fr));
|
|
}
|
|
.separator {
|
|
height: 2px;
|
|
width: 100%;
|
|
background-color: var(--separator);
|
|
}
|
|
|
|
.button_row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.button_row > * {
|
|
flex: 1 1 auto;
|
|
justify-content: center;
|
|
}
|
|
|
|
.stats_container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.button_expand {
|
|
display: none;
|
|
line-height: 1em;
|
|
}
|
|
|
|
/* This max-width needs to be synced with the .viewer_area max-width in
|
|
Toolbar.svelte and the .label max-width in FileStats.svelte */
|
|
@media (max-width: 800px) {
|
|
.toolbar {
|
|
overflow-y: hidden;
|
|
max-height: 2.1em;
|
|
}
|
|
.toolbar.expanded {
|
|
overflow-y: scroll;
|
|
max-height: 25vh;
|
|
}
|
|
.stats_container {
|
|
flex-direction: row;
|
|
}
|
|
.button_expand {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
</style>
|