Add access controls window

This commit is contained in:
2024-11-19 15:31:51 +01:00
parent 27882303d9
commit f7a0ff4538
41 changed files with 307 additions and 63 deletions

View File

@@ -1,6 +1,6 @@
<script>
import { onMount } from 'svelte'
import { fs_path_url, fs_encode_path, fs_node_icon } from "../../filesystem/FilesystemAPI.ts"
import { fs_path_url, fs_encode_path, fs_node_icon } from "../FilesystemAPI.mjs"
import FileTitle from "../../layout/FileTitle.svelte";
import TextBlock from "../../layout/TextBlock.svelte"

View File

@@ -1,7 +1,7 @@
<script>
import { createEventDispatcher } from "svelte";
import IconBlock from "../../layout/IconBlock.svelte";
import { fs_thumbnail_url } from "../FilesystemAPI";
import { fs_thumbnail_url } from "../FilesystemAPI.mjs";
import TextBlock from "../../layout/TextBlock.svelte"
let dispatch = createEventDispatcher()

View File

@@ -1,7 +1,7 @@
<script>
import { onMount, tick } from "svelte";
import Spinner from "../../util/Spinner.svelte";
import { fs_node_type, fs_thumbnail_url } from "./../FilesystemAPI";
import { fs_node_type, fs_thumbnail_url } from "../FilesystemAPI.mjs";
import FileManager from "../filemanager/FileManager.svelte";
import Audio from "./Audio.svelte";
import File from "./File.svelte";

View File

@@ -1,7 +1,7 @@
<script>
import { createEventDispatcher } from "svelte";
import { swipe_nav } from "../../lib/SwipeNavigate.ts";
import { fs_path_url } from "./../FilesystemAPI.ts";
import { fs_path_url } from "../FilesystemAPI.mjs";
let dispatch = createEventDispatcher();

View File

@@ -1,5 +1,5 @@
<script>
import { fs_path_url } from "../FilesystemAPI";
import { fs_path_url } from "../FilesystemAPI.mjs";
export let nav
</script>

View File

@@ -1,6 +1,6 @@
<script>
import { tick } from "svelte";
import { fs_path_url } from "../FilesystemAPI";
import { fs_path_url } from "../FilesystemAPI.mjs";
export let nav
let text_type = "text"

View File

@@ -5,7 +5,7 @@ import { formatDate } from "../../util/Formatting.svelte"
import TorrentItem from "./TorrentItem.svelte"
import IconBlock from "../../layout/IconBlock.svelte";
import TextBlock from "../../layout/TextBlock.svelte"
import { fs_node_icon, fs_path_url } from "../FilesystemAPI";
import { fs_node_icon, fs_path_url } from "../FilesystemAPI.mjs";
import CopyButton from "../../layout/CopyButton.svelte";
let dispatch = createEventDispatcher()

View File

@@ -1,6 +1,6 @@
<script>
import { onMount, createEventDispatcher, tick } from "svelte";
import { fs_path_url } from "../FilesystemAPI";
import { fs_path_url } from "../FilesystemAPI.mjs";
let dispatch = createEventDispatcher()
export let nav
@@ -169,6 +169,7 @@ const fullscreen = () => {
display: flex;
flex-direction: row;
background-color: var(--shaded_background);
backdrop-filter: blur(4px);
padding: 0 2px 2px 2px;
align-items: center;
}
@@ -195,6 +196,7 @@ const fullscreen = () => {
}
.compatibility_warning {
background-color: var(--shaded_background);
backdrop-filter: blur(4px);
border-bottom: 2px solid #6666FF;
padding: 4px;
}

View File

@@ -4,7 +4,7 @@ import { formatDataVolume, formatDate } from "../../util/Formatting.svelte"
import ZipItem from "../../file_viewer/viewers/ZipItem.svelte";
import IconBlock from "../../layout/IconBlock.svelte";
import TextBlock from "../../layout/TextBlock.svelte"
import { fs_node_icon, fs_path_url } from "../FilesystemAPI";
import { fs_node_icon, fs_path_url } from "../FilesystemAPI.mjs";
let dispatch = createEventDispatcher()