New header/footer layout and styles. Use cursorTooltip in more places, make it prettier. Fix tooltip still sometimes activating with touch (now only with mouse).
This commit is contained in:
+19
-5
@@ -9,15 +9,14 @@
|
|||||||
<UserManagementModal />
|
<UserManagementModal />
|
||||||
<AccessDeniedModal />
|
<AccessDeniedModal />
|
||||||
<header>
|
<header>
|
||||||
<HeaderMain ref="headerMain" :path="path.pathList" :query="path.query">
|
<HeaderMain ref="headerMain" :path="path.pathList" :query="path.query" />
|
||||||
<HeaderSelected :path="path.pathList" />
|
|
||||||
</HeaderMain>
|
|
||||||
<BreadCrumb :path="path.pathList" primary />
|
<BreadCrumb :path="path.pathList" primary />
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main>
|
||||||
<RouterView :path="path.pathList" :query="path.query" />
|
<RouterView :path="path.pathList" :query="path.query" />
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<footer v-if="store.selected.size || store.uprogress.total || store.dprogress.total">
|
||||||
|
<HeaderSelected :path="path.pathList" />
|
||||||
<TransferBar :status=store.uprogress @cancel=store.cancelUploads class=upload />
|
<TransferBar :status=store.uprogress @cancel=store.cancelUploads class=upload />
|
||||||
<TransferBar :status=store.dprogress @cancel=store.cancelDownloads class=download />
|
<TransferBar :status=store.dprogress @cancel=store.cancelDownloads class=download />
|
||||||
</footer>
|
</footer>
|
||||||
@@ -104,7 +103,7 @@ const globalShortcutHandler = (event: KeyboardEvent) => {
|
|||||||
else if (keyup && event.key === 'Escape') {
|
else if (keyup && event.key === 'Escape') {
|
||||||
store.error = ''
|
store.error = ''
|
||||||
store.clearToast()
|
store.clearToast()
|
||||||
headerMain.value!.closeSearch(event)
|
headerMain.value!.clearSearch(event)
|
||||||
store.focusBreadcrumb()
|
store.focusBreadcrumb()
|
||||||
}
|
}
|
||||||
else if (!input && keyup && event.key === 'Backspace') {
|
else if (!input && keyup && event.key === 'Backspace') {
|
||||||
@@ -189,4 +188,19 @@ export type { Path }
|
|||||||
background: #555;
|
background: #555;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
footer {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
background: rgba(0, 0, 0, 0.3);
|
||||||
|
backdrop-filter: blur(4px);
|
||||||
|
z-index: 50;
|
||||||
|
}
|
||||||
|
footer > * {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -43,44 +43,14 @@
|
|||||||
--root-font-size: 1.5rem;
|
--root-font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* Low (landscape) screens: smaller header */
|
|
||||||
@media screen and (max-height: 600px) {
|
|
||||||
:root {
|
|
||||||
--header-font-size: calc(10px + 10 * 100vh / 600); /* 20px at 600px height */
|
|
||||||
--root-font-size: 0.8rem;
|
|
||||||
--header-height: 2rem;
|
|
||||||
}
|
|
||||||
header .breadcrumb > * {
|
|
||||||
padding-top: calc(8 + 8 * 100vh / 600) !important;
|
|
||||||
padding-bottom: calc(8 + 8 * 100vh / 600) !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media screen and (max-height: 300px) {
|
|
||||||
:root {
|
|
||||||
--header-font-size: 15px; /* Don't go smaller than this, no benefit */
|
|
||||||
--header-height: calc(1.75 * 16px);
|
|
||||||
--root-font-size: 0.6rem;
|
|
||||||
}
|
|
||||||
header .breadcrumb > * {
|
|
||||||
padding-top: 14px !important;
|
|
||||||
padding-bottom: 14px !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media screen and (orientation: landscape) and (min-width: 700px) {
|
@media screen and (orientation: landscape) and (min-width: 700px) {
|
||||||
/* Breadcrumbs and buttons side by side */
|
/* Breadcrumbs and buttons side by side */
|
||||||
:root {
|
|
||||||
--header-font-size: calc(8px + 8 * 100vh / 600); /* 16px (1rem nominal) at 600px height */
|
|
||||||
}
|
|
||||||
header {
|
header {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
header .headermain { order: 1; }
|
header .headermain { order: 1; }
|
||||||
header .breadcrumb { align-self: stretch; }
|
header .breadcrumb { align-self: stretch; }
|
||||||
header .action-button {
|
|
||||||
width: 2em;
|
|
||||||
height: 2em;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@media print {
|
@media print {
|
||||||
:root {
|
:root {
|
||||||
@@ -241,39 +211,7 @@ header nav.headermain {
|
|||||||
.spacer { flex-grow: 1 }
|
.spacer { flex-grow: 1 }
|
||||||
.smallgap { flex-shrink: 1; width: 2em }
|
.smallgap { flex-shrink: 1; width: 2em }
|
||||||
|
|
||||||
[data-tooltip]:hover:after {
|
|
||||||
z-index: 101;
|
|
||||||
content: attr(data-tooltip);
|
|
||||||
position: absolute;
|
|
||||||
pointer-events: none;
|
|
||||||
font-size: 1rem;
|
|
||||||
text-align: center;
|
|
||||||
padding: .5rem 1rem;
|
|
||||||
border-radius: 3rem 0 3rem 0;
|
|
||||||
box-shadow: 0 0 1rem var(--accent-color);
|
|
||||||
transform: translate(calc(1rem + -50%), 150%);
|
|
||||||
background-color: var(--accent-color);
|
|
||||||
color: var(--primary-color);
|
|
||||||
white-space: pre;
|
|
||||||
animation: appearbriefly calc(10 * var(--transition-time)) linear forwards;
|
|
||||||
}
|
|
||||||
@keyframes appearbriefly {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
30% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
40% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
90% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.error-message {
|
.error-message {
|
||||||
padding: .5em;
|
padding: .5em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|||||||
@@ -14,9 +14,12 @@
|
|||||||
:class="{ current: !!isCurrent(0) }"
|
:class="{ current: !!isCurrent(0) }"
|
||||||
:aria-current="isCurrent(0)"
|
:aria-current="isCurrent(0)"
|
||||||
@click.prevent="navigate(0)"
|
@click.prevent="navigate(0)"
|
||||||
title="/"
|
@mouseenter="homeTooltip?.startHover"
|
||||||
|
@mousemove="homeTooltip?.updatePosition"
|
||||||
|
@mouseleave="homeTooltip?.endHover"
|
||||||
>
|
>
|
||||||
<component :is="home" />
|
<component :is="home" />
|
||||||
|
<CursorTooltip ref="homeTooltip" text="/">/</CursorTooltip>
|
||||||
</a>
|
</a>
|
||||||
<template v-for="(location, index) in longest" :key="index">
|
<template v-for="(location, index) in longest" :key="index">
|
||||||
<a :href="`/#/${longest.slice(0, index + 1).join('/')}/`"
|
<a :href="`/#/${longest.slice(0, index + 1).join('/')}/`"
|
||||||
@@ -24,8 +27,10 @@
|
|||||||
:aria-current="isCurrent(index + 1)"
|
:aria-current="isCurrent(index + 1)"
|
||||||
@click.prevent="navigate(index + 1)"
|
@click.prevent="navigate(index + 1)"
|
||||||
:ref="el => setLinkRef(index + 1, el)"
|
:ref="el => setLinkRef(index + 1, el)"
|
||||||
:title="`/${longest.slice(0, index + 1).join('/')}`"
|
@mouseenter="pathTooltips.get(index)?.startHover"
|
||||||
>{{ location }}</a>
|
@mousemove="pathTooltips.get(index)?.updatePosition"
|
||||||
|
@mouseleave="pathTooltips.get(index)?.endHover"
|
||||||
|
>{{ location }}<CursorTooltip :ref="el => setPathTooltipRef(index, el)" :text="`/${longest.slice(0, index + 1).join('/')}`">{{ `/${longest.slice(0, index + 1).join('/')}` }}</CursorTooltip></a>
|
||||||
</template>
|
</template>
|
||||||
</nav>
|
</nav>
|
||||||
</template>
|
</template>
|
||||||
@@ -35,6 +40,7 @@ import { Home } from '@/assets/svg'
|
|||||||
import { nextTick, onBeforeUpdate, ref, watchEffect } from 'vue'
|
import { nextTick, onBeforeUpdate, ref, watchEffect } from 'vue'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
import { exists } from '@/utils/fileutil'
|
import { exists } from '@/utils/fileutil'
|
||||||
|
import CursorTooltip from './CursorTooltip.vue'
|
||||||
|
|
||||||
const home = Home
|
const home = Home
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
@@ -43,6 +49,13 @@ const links = [] as Array<HTMLElement>
|
|||||||
const setLinkRef = (index: number, el: any) => { if (el) links[index] = el }
|
const setLinkRef = (index: number, el: any) => { if (el) links[index] = el }
|
||||||
onBeforeUpdate(() => { links.length = 1 }) // 1 to keep home
|
onBeforeUpdate(() => { links.length = 1 }) // 1 to keep home
|
||||||
|
|
||||||
|
const homeTooltip = ref<InstanceType<typeof CursorTooltip> | null>(null)
|
||||||
|
const pathTooltips = ref<Map<number, InstanceType<typeof CursorTooltip>>>(new Map())
|
||||||
|
const setPathTooltipRef = (index: number, el: any) => {
|
||||||
|
if (el) pathTooltips.value.set(index, el)
|
||||||
|
else pathTooltips.value.delete(index)
|
||||||
|
}
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
path: Array<string>
|
path: Array<string>
|
||||||
primary?: boolean
|
primary?: boolean
|
||||||
|
|||||||
@@ -10,12 +10,12 @@
|
|||||||
// Global activation state - shared across all instances
|
// Global activation state - shared across all instances
|
||||||
let globalActive = false
|
let globalActive = false
|
||||||
let globalDeactivateTimer: ReturnType<typeof setTimeout> | null = null
|
let globalDeactivateTimer: ReturnType<typeof setTimeout> | null = null
|
||||||
// Track if we've seen real mouse movement (not touch-simulated)
|
// Track recent touch to suppress touch-triggered mouse events
|
||||||
let hasRealMouse = false
|
let lastTouchTime = 0
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, ref } from 'vue'
|
import { computed, ref, onMounted, onUnmounted } from 'vue'
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
text: string
|
text: string
|
||||||
@@ -37,8 +37,13 @@ const tooltipStyle = computed(() => ({
|
|||||||
top: `${mouseY.value}px`,
|
top: `${mouseY.value}px`,
|
||||||
}))
|
}))
|
||||||
|
|
||||||
// Check if the device likely has a real mouse (fine pointer)
|
// Track touch events globally to suppress touch-simulated mouse events
|
||||||
const hasFinePointer = () => window.matchMedia('(pointer: fine)').matches
|
const onTouchStart = () => { lastTouchTime = Date.now() }
|
||||||
|
onMounted(() => document.addEventListener('touchstart', onTouchStart, { passive: true }))
|
||||||
|
onUnmounted(() => document.removeEventListener('touchstart', onTouchStart))
|
||||||
|
|
||||||
|
// Check if event is likely from touch (touch happened within last 500ms)
|
||||||
|
const isTouchEvent = () => Date.now() - lastTouchTime < 500
|
||||||
|
|
||||||
const showTooltip = () => {
|
const showTooltip = () => {
|
||||||
visible.value = true
|
visible.value = true
|
||||||
@@ -56,8 +61,8 @@ const scheduleTooltip = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const startHover = (e: MouseEvent) => {
|
const startHover = (e: MouseEvent) => {
|
||||||
// Ignore touch events (no fine pointer and no confirmed real mouse)
|
// Ignore touch-simulated mouse events
|
||||||
if (!hasFinePointer() && !hasRealMouse) return
|
if (isTouchEvent()) return
|
||||||
|
|
||||||
mouseX.value = e.clientX
|
mouseX.value = e.clientX
|
||||||
mouseY.value = e.clientY
|
mouseY.value = e.clientY
|
||||||
@@ -66,9 +71,8 @@ const startHover = (e: MouseEvent) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const updatePosition = (e: MouseEvent) => {
|
const updatePosition = (e: MouseEvent) => {
|
||||||
// Detect real mouse via movement (touch events don't generate continuous mousemove)
|
// Ignore touch-simulated mouse events
|
||||||
if (e.movementX !== 0 || e.movementY !== 0) hasRealMouse = true
|
if (isTouchEvent()) return
|
||||||
if (!hasFinePointer() && !hasRealMouse) return
|
|
||||||
|
|
||||||
mouseX.value = e.clientX
|
mouseX.value = e.clientX
|
||||||
mouseY.value = e.clientY
|
mouseY.value = e.clientY
|
||||||
@@ -122,9 +126,11 @@ defineExpose({
|
|||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
padding: .5rem 1rem;
|
padding: .5rem 1rem;
|
||||||
border-radius: 3rem 0 3rem 0;
|
border-radius: 3rem 0 3rem 0;
|
||||||
box-shadow: 0 0 1rem var(--accent-color);
|
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
|
||||||
background-color: var(--accent-color);
|
background: rgba(0, 0, 0, 0.3);
|
||||||
color: var(--primary-color);
|
backdrop-filter: blur(4px);
|
||||||
|
-webkit-backdrop-filter: blur(4px);
|
||||||
|
color: #fff;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<SvgButton name="download" data-tooltip="Download" @click="download" />
|
<SvgButton name="download" tooltip="Download" @click="download" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|||||||
@@ -3,23 +3,23 @@
|
|||||||
<UploadButton :path="props.path" />
|
<UploadButton :path="props.path" />
|
||||||
<SvgButton
|
<SvgButton
|
||||||
name="create-folder"
|
name="create-folder"
|
||||||
data-tooltip="New folder"
|
tooltip="New folder"
|
||||||
@click="() => { console.log('New', store.fileExplorer); store.fileExplorer!.newFolder(); console.log('Done')}"
|
@click="() => { store.fileExplorer!.newFolder() }"
|
||||||
/>
|
/>
|
||||||
<slot></slot>
|
<div class="smallgap"></div>
|
||||||
<div class="spacer smallgap"></div>
|
<SvgButton name="eye" @click="store.prefs.gallery = !store.prefs.gallery" tooltip="Details/Gallery" />
|
||||||
<template v-if="showSearchInput">
|
<div class="search-group">
|
||||||
|
<SvgButton name="find" @click="focusSearch" tooltip="Search" />
|
||||||
<input
|
<input
|
||||||
ref="search"
|
ref="search"
|
||||||
type="search"
|
type="search"
|
||||||
:value="query"
|
:value="query"
|
||||||
@input="updateSearch"
|
@input="updateSearch"
|
||||||
placeholder="Find files"
|
@keydown.escape="clearSearch"
|
||||||
class="margin-input"
|
|
||||||
/>
|
/>
|
||||||
</template>
|
<span v-if="!query" class="search-hint" @click="focusSearch">/</span>
|
||||||
<SvgButton ref="searchButton" name="find" @click.prevent="toggleSearchInput" />
|
</div>
|
||||||
<SvgButton name="eye" @click="store.prefs.gallery = !store.prefs.gallery" />
|
<div class="spacer smallgap"></div>
|
||||||
<SvgButton name="cog" @click="settingsMenu" />
|
<SvgButton name="cog" @click="settingsMenu" />
|
||||||
</nav>
|
</nav>
|
||||||
</template>
|
</template>
|
||||||
@@ -35,21 +35,25 @@ import router from '@/router';
|
|||||||
|
|
||||||
const store = useMainStore()
|
const store = useMainStore()
|
||||||
const ssoStore = useSsoAuthStore()
|
const ssoStore = useSsoAuthStore()
|
||||||
const showSearchInput = ref<boolean>(false)
|
|
||||||
const search = ref<HTMLInputElement | null>()
|
const search = ref<HTMLInputElement | null>()
|
||||||
const searchButton = ref<HTMLButtonElement | null>()
|
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
path: Array<string>
|
path: Array<string>
|
||||||
query: string
|
query: string
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
const closeSearch = (ev: Event) => {
|
const clearSearch = (ev: Event) => {
|
||||||
if (!showSearchInput.value) return // Already closing
|
const input = search.value
|
||||||
showSearchInput.value = false
|
if (input) {
|
||||||
|
input.value = ''
|
||||||
|
updateSearch(ev)
|
||||||
|
}
|
||||||
const breadcrumb = document.querySelector('.breadcrumb') as HTMLElement
|
const breadcrumb = document.querySelector('.breadcrumb') as HTMLElement
|
||||||
breadcrumb.focus()
|
breadcrumb.focus()
|
||||||
updateSearch(ev)
|
}
|
||||||
|
|
||||||
|
const focusSearch = () => {
|
||||||
|
search.value?.focus()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Track pending route update
|
// Track pending route update
|
||||||
@@ -78,17 +82,10 @@ const updateSearch = (ev: Event) => {
|
|||||||
router.replace(u)
|
router.replace(u)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
const toggleSearchInput = (ev: Event) => {
|
|
||||||
showSearchInput.value = !showSearchInput.value
|
const toggleSearchInput = () => {
|
||||||
if (!showSearchInput.value) return closeSearch(ev)
|
search.value?.focus()
|
||||||
nextTick(() => {
|
|
||||||
const input = search.value
|
|
||||||
if (input) input.focus()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
watchEffect(() => {
|
|
||||||
if (props.query) showSearchInput.value = true
|
|
||||||
})
|
|
||||||
const settingsMenu = (e: Event) => {
|
const settingsMenu = (e: Event) => {
|
||||||
// show the context menu
|
// show the context menu
|
||||||
const items = []
|
const items = []
|
||||||
@@ -131,7 +128,7 @@ const settingsMenu = (e: Event) => {
|
|||||||
}
|
}
|
||||||
defineExpose({
|
defineExpose({
|
||||||
toggleSearchInput,
|
toggleSearchInput,
|
||||||
closeSearch,
|
clearSearch,
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -143,12 +140,53 @@ defineExpose({
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
input[type='search'] {
|
.search-group {
|
||||||
background: var(--input-background);
|
position: relative;
|
||||||
color: var(--input-color);
|
display: flex;
|
||||||
border: 0;
|
align-items: center;
|
||||||
border-radius: 0.1em;
|
background: rgba(255, 255, 255, 0.1);
|
||||||
|
border-radius: 1.5em;
|
||||||
|
padding: 0 0.3em;
|
||||||
|
transition: background 0.2s ease;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
min-width: 5.5em;
|
||||||
|
max-width: 20em;
|
||||||
|
}
|
||||||
|
.search-group:focus-within {
|
||||||
|
background: rgba(255, 255, 255, 0.2);
|
||||||
|
}
|
||||||
|
.search-group:focus-within .search-hint {
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.search-group :deep(.action-button) {
|
||||||
|
width: 2.2em;
|
||||||
|
height: 2.2em;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
.search-group input[type='search'] {
|
||||||
|
background: transparent;
|
||||||
|
color: var(--header-color);
|
||||||
|
border: none;
|
||||||
outline: none;
|
outline: none;
|
||||||
max-width: 15ch;
|
padding: 0.2em 0.5em 0.2em 0;
|
||||||
|
font-size: var(--header-font-size);
|
||||||
|
flex: 1 1 3em;
|
||||||
|
min-width: 3em;
|
||||||
|
}
|
||||||
|
.search-hint {
|
||||||
|
position: absolute;
|
||||||
|
right: 0.5em;
|
||||||
|
font-family: system-ui, sans-serif;
|
||||||
|
font-size: 1em;
|
||||||
|
font-weight: 700;
|
||||||
|
color: #333;
|
||||||
|
background: #ccc;
|
||||||
|
border: 1px solid #999;
|
||||||
|
border-radius: 0.3em;
|
||||||
|
padding: 0 0.45em;
|
||||||
|
line-height: 1.4;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: opacity 0.15s ease;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,19 +1,27 @@
|
|||||||
<template>
|
<template>
|
||||||
<template v-if="store.selected.size">
|
<div class="selection-bar" v-if="store.selected.size">
|
||||||
<div class="smallgap"></div>
|
<p class="select-text">{{ store.selected.size }} selected</p>
|
||||||
<p class="select-text">{{ store.selected.size }} selected ➤</p>
|
|
||||||
<DownloadButton />
|
<DownloadButton />
|
||||||
<SvgButton name="copy" data-tooltip="Copy here" @click="op('cp', dst)" />
|
<SvgButton name="copy" tooltip="Copy here" @click="op('cp', dst)" />
|
||||||
<SvgButton name="paste" data-tooltip="Move here" @click="op('mv', dst)" />
|
<SvgButton name="paste" tooltip="Move here" @click="op('mv', dst)" />
|
||||||
<SvgButton name="trash" data-tooltip="Delete ⚠️" @click="op('rm')" />
|
<SvgButton name="trash" tooltip="Delete ⚠️" @click="op('rm')" />
|
||||||
<button class="action-button unselect" data-tooltip="Unselect all" @click="store.selected.clear()">❌</button>
|
<button
|
||||||
</template>
|
class="action-button unselect"
|
||||||
|
@click="store.selected.clear()"
|
||||||
|
@mouseenter="unselectTooltip?.startHover"
|
||||||
|
@mousemove="unselectTooltip?.updatePosition"
|
||||||
|
@mouseleave="unselectTooltip?.endHover"
|
||||||
|
>❌<CursorTooltip ref="unselectTooltip" text="Unselect all">Unselect all</CursorTooltip></button>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import {connect, controlUrl} from '@/repositories/WS'
|
import {connect, controlUrl} from '@/repositories/WS'
|
||||||
import { useMainStore } from '@/stores/main'
|
import { useMainStore } from '@/stores/main'
|
||||||
import { computed } from 'vue'
|
import { computed, ref } from 'vue'
|
||||||
|
import CursorTooltip from './CursorTooltip.vue'
|
||||||
|
|
||||||
|
const unselectTooltip = ref<InstanceType<typeof CursorTooltip> | null>(null)
|
||||||
|
|
||||||
const store = useMainStore()
|
const store = useMainStore()
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
@@ -57,11 +65,20 @@ const op = (opName: string, dst?: string) => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
.selection-bar {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 0.3em 0.5em;
|
||||||
|
background: transparent;
|
||||||
|
color: var(--header-color);
|
||||||
|
}
|
||||||
.select-text {
|
.select-text {
|
||||||
color: var(--accent-color);
|
color: var(--accent-color);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
padding-right: 0.5em;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,16 +1,28 @@
|
|||||||
<template>
|
<template>
|
||||||
<button class="action-button">
|
<button
|
||||||
|
class="action-button"
|
||||||
|
@mouseenter="tooltip?.startHover"
|
||||||
|
@mousemove="tooltip?.updatePosition"
|
||||||
|
@mouseleave="tooltip?.endHover"
|
||||||
|
>
|
||||||
<component :is="icons[name]" />
|
<component :is="icons[name]" />
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
|
<CursorTooltip v-if="tooltipText" ref="tooltip" :text="tooltipText">{{ tooltipText }}</CursorTooltip>
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { icons, type IconName } from '@/assets/svg'
|
import { icons, type IconName } from '@/assets/svg'
|
||||||
|
import { ref } from 'vue'
|
||||||
|
import CursorTooltip from './CursorTooltip.vue'
|
||||||
|
|
||||||
defineProps<{
|
const props = defineProps<{
|
||||||
name: IconName
|
name: IconName
|
||||||
|
tooltip?: string
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
|
const tooltip = ref<InstanceType<typeof CursorTooltip> | null>(null)
|
||||||
|
const tooltipText = props.tooltip ?? ''
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|||||||
@@ -53,15 +53,17 @@ const speeddisp = computed(() => speed.value ? speed.value.toFixed(speed.value <
|
|||||||
<style scoped>
|
<style scoped>
|
||||||
.transferprogress {
|
.transferprogress {
|
||||||
--bar: var(--accent-color);
|
--bar: var(--accent-color);
|
||||||
--nobar: var(--header-background);
|
--nobar: transparent;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.statustext {
|
.statustext {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
margin: 0 .5em;
|
margin: 0 .5em;
|
||||||
padding: 0.5rem 0;
|
padding: 0.5rem 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
<input ref="fileInput" @change="uploadHandler" type="file" multiple>
|
<input ref="fileInput" @change="uploadHandler" type="file" multiple>
|
||||||
<input ref="folderInput" @change="uploadHandler" type="file" webkitdirectory>
|
<input ref="folderInput" @change="uploadHandler" type="file" webkitdirectory>
|
||||||
</template>
|
</template>
|
||||||
<SvgButton name="add-file" data-tooltip="Upload files" @click="fileInput.click()" />
|
<SvgButton name="add-file" tooltip="Upload files" @click="fileInput.click()" />
|
||||||
<SvgButton name="add-folder" data-tooltip="Upload folder" @click="folderInput.click()" />
|
<SvgButton name="add-folder" tooltip="Upload folder" @click="folderInput.click()" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|||||||
Reference in New Issue
Block a user