Skip to content

Commit 0a58484

Browse files
committed
Viewer: Improve menu styles and move close button to the left photoprism#4811
Signed-off-by: Michael Mayer <michael@photoprism.app>
1 parent c702699 commit 0a58484

File tree

4 files changed

+78
-58
lines changed

4 files changed

+78
-58
lines changed

frontend/src/component/action/menu.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<template>
22
<v-menu
3-
class="p-action-menu action-menu"
3+
class="p-action-menu action-menu action-menu--default"
44
transition="slide-y-transition"
55
open-on-click
66
open-on-hover
77
@update:model-value="onShow"
88
>
99
<template #activator="{ props }">
1010
<v-btn
11-
density="comfortable"
12-
icon="mdi-dots-vertical"
1311
v-bind="props"
12+
density="comfortable"
13+
:icon="buttonIcon"
1414
class="action-menu__btn"
1515
:class="buttonClass"
1616
></v-btn>

frontend/src/component/lightbox.vue

+40-49
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@
9696
:activator="menuElement"
9797
open-on-click
9898
open-on-hover
99-
class="p-action-menu action-menu"
99+
class="p-action-menu action-menu action-menu--lightbox"
100100
@update:model-value="onShowMenu"
101101
>
102-
<v-list slim nav density="compact" :bg-color="menuBgColor" class="action-menu__list">
102+
<v-list slim nav density="compact" class="action-menu__list">
103103
<v-list-item
104104
v-for="action in menuActions()"
105105
:key="action.name"
@@ -340,7 +340,7 @@ export default {
340340
arrowNext: true,
341341
loop: false,
342342
zoom: true,
343-
close: true,
343+
close: false,
344344
escKey: false,
345345
pinchToClose: false,
346346
counter: false,
@@ -350,13 +350,13 @@ export default {
350350
closeOnVerticalDrag: false,
351351
initialZoomLevel: "fit",
352352
secondaryZoomLevel: "fill",
353+
showHideAnimationType: "none",
353354
hideAnimationDuration: 0,
354355
showAnimationDuration: 0,
355356
wheelToZoom: true,
356357
maxZoomLevel: 8,
357358
bgOpacity: 1,
358359
preload: [1, 1],
359-
showHideAnimationType: "none",
360360
mainClass: "p-lightbox__pswp",
361361
tapAction: (point, ev) => this.onContentTap(ev),
362362
imageClickAction: (point, ev) => this.onContentClick(ev),
@@ -918,6 +918,7 @@ export default {
918918
// see https://github.com/dimsemenov/photoswipe-dynamic-caption-plugin.
919919
this.captionPlugin = new Captions(this.lightbox, {
920920
type: "below",
921+
mobileLayoutBreakpoint: 1024,
921922
captionContent: (slide) => {
922923
if (!slide || !this.models || slide?.index < 0) {
923924
return "";
@@ -1073,6 +1074,24 @@ export default {
10731074
// IDEA: We can later try to add styles that display the sidebar at the bottom
10741075
// instead of on the side, to allow use on mobile devices.
10751076
lightbox.on("uiRegister", () => {
1077+
// Add close button.
1078+
lightbox.pswp.ui.registerElement({
1079+
name: "close-button",
1080+
className: "pswp__button--close-button ms-1", // Sets the icon style/size in lightbox.css.
1081+
title: this.$gettext("Close"),
1082+
ariaLabel: this.$gettext("Close"),
1083+
order: 1,
1084+
isButton: true,
1085+
html: {
1086+
isCustomSVG: true,
1087+
inner: `<path d="M24 10l-2-2-6 6-6-6-2 2 6 6-6 6 2 2 6-6 6 6 2-2-6-6z" id="pswp__icn-close-button" />`,
1088+
outlineID: "pswp__icn-close-button", // Add this to the <path> in the inner property.
1089+
size: 32, // Depends on the original SVG viewBox, e.g. use 24 for viewBox="0 0 24 24".
1090+
},
1091+
onClick: "close",
1092+
});
1093+
1094+
// Add sidebar view/hide toggle button.
10761095
if (this.featDevelop && this.canEdit && window.innerWidth > this.mobileBreakpoint) {
10771096
lightbox.pswp.ui.registerElement({
10781097
name: "sidebar-button",
@@ -1195,58 +1214,30 @@ export default {
11951214
});
11961215
}
11971216
1198-
// Add download button control if user has permission to use it.
1217+
// Display an action menu with additional options (currently contains only a download button).
11991218
if (this.canDownload) {
1200-
// When experimental features are enabled, displays an action menu with additional options.
1201-
if (this.featExperimental) {
1202-
lightbox.pswp.ui.registerElement({
1203-
name: "menu-button",
1204-
className: "pswp__button--menu-button pswp__button--mdi", // Sets the icon style/size in lightbox.css.
1205-
ariaLabel: this.$gettext("More options"),
1206-
order: 10,
1207-
isButton: true,
1208-
html: {
1209-
isCustomSVG: true,
1210-
inner: `<path d="M9.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0zm0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0zm0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z"/>`,
1211-
outlineID: "pswp__icn-menu-button", // Add this to the <path> in the inner property.
1212-
size: 16, // Depends on the original SVG viewBox, e.g. use 24 for viewBox="0 0 24 24".
1213-
},
1214-
onInit: (el) => {
1215-
this.menuElement = el;
1216-
},
1217-
});
1218-
} else {
1219-
lightbox.pswp.ui.registerElement({
1220-
name: "download-button",
1221-
className: "pswp__button--download-button pswp__button--mdi", // Sets the icon style/size in lightbox.css.
1222-
title: this.$gettext("Download"),
1223-
ariaLabel: this.$gettext("Download"),
1224-
order: 10,
1225-
isButton: true,
1226-
html: {
1227-
isCustomSVG: true,
1228-
inner: `<path d="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z" id="pswp__icn-download" />`,
1229-
outlineID: "pswp__icn-download", // Add this to the <path> in the inner property.
1230-
size: 24, // Depends on the original SVG viewBox, e.g. use 24 for viewBox="0 0 24 24".
1231-
},
1232-
onClick: (ev) => this.onControlClick(ev, this.onDownload),
1233-
});
1234-
}
1219+
lightbox.pswp.ui.registerElement({
1220+
name: "menu-button",
1221+
className: "pswp__button--menu-button pswp__button--mdi me-1", // Sets the icon style/size in lightbox.css.
1222+
ariaLabel: this.$gettext("More options"),
1223+
order: 10,
1224+
isButton: true,
1225+
html: {
1226+
isCustomSVG: true,
1227+
inner: `<path d="M9.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0zm0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0zm0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z" id="pswp__icn-menu-button" />`,
1228+
outlineID: "pswp__icn-menu-button", // Add this to the <path> in the inner property.
1229+
size: 16, // Depends on the original SVG viewBox, e.g. use 24 for viewBox="0 0 24 24".
1230+
},
1231+
onInit: (el) => {
1232+
this.menuElement = el;
1233+
},
1234+
});
12351235
}
12361236
});
12371237
},
12381238
// Returns the available menu actions.
12391239
menuActions() {
12401240
return [
1241-
/* {
1242-
name: "edit",
1243-
icon: "mdi-pencil",
1244-
text: this.$gettext("Edit"),
1245-
visible: this.canEdit,
1246-
click: () => {
1247-
this.onEdit();
1248-
},
1249-
}, */
12501241
{
12511242
name: "download",
12521243
icon: "mdi-download",

frontend/src/css/controls.css

+18-4
Original file line numberDiff line numberDiff line change
@@ -217,14 +217,28 @@ table td > .action-buttons {
217217

218218
/* Action Menu */
219219

220-
.p-action-menu .v-overlay__content {
220+
.v-menu.action-menu .v-overlay__content {
221221
border-radius: 6px;
222222
}
223223

224-
.p-action-menu .action-menu__list {
225-
min-width: 122px;
224+
.v-menu.action-menu .action-menu__list {
225+
min-width: 132px;
226226
opacity: 0.97;
227-
padding: 3px;
227+
padding: 5px;
228+
}
229+
230+
.v-menu.action-menu--lightbox .action-menu__list {
231+
min-width: 128px;
232+
opacity: 0.92;
233+
padding: 4px;
234+
background: #191a1c;
235+
color: #ffffff;
236+
stroke: #ffffff;
237+
}
238+
239+
.v-menu>.v-overlay__content>.v-list.action-menu__list>.v-list-item.v-list-item--density-compact.action-menu__item {
240+
padding-top: 8px;
241+
padding-bottom: 8px;
228242
}
229243

230244
/* Table Actions */

frontend/src/css/lightbox.css

+17-2
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,13 @@
241241
}
242242

243243
.pswp__dynamic-caption--on-hor-edge {
244-
padding-left: 20px;
245-
padding-right: 20px;
244+
padding-top: 1px;
245+
padding-left: 50px;
246+
padding-right: 50px;
247+
}
248+
249+
.pswp__dynamic-caption.pswp__dynamic-caption--on-hor-edge h4 {
250+
font-size: 15px;
246251
}
247252

248253
.pswp__dynamic-caption--mobile {
@@ -355,6 +360,16 @@
355360
height: 20px;
356361
}
357362

363+
.is-ltr .pswp__preloader {
364+
margin-left: auto;
365+
margin-right: 0;
366+
}
367+
368+
.is-ltr .pswp__preloader .pswp__icn {
369+
left: auto;
370+
right: 9px;
371+
}
372+
358373
/* Video Controls */
359374

360375
.p-lightbox__controls {

0 commit comments

Comments
 (0)