Implemented Gallery view for media files.

This commit is contained in:
2023-11-18 10:32:24 +00:00
parent 35a6b2740b
commit 9895d7bf6c
11 changed files with 553 additions and 27 deletions
+1
View File
@@ -72,6 +72,7 @@ watchEffect(() => {
const settingsMenu = (e: Event) => {
// show the context menu
const items = []
items.push({ label: 'Gallery', onClick: () => store.gallery = !store.gallery })
if (store.user.isLoggedIn) {
items.push({ label: `Logout ${store.user.username ?? ''}`, onClick: () => store.logout() })
} else {