96
96
:activator =" menuElement"
97
97
open-on-click
98
98
open-on-hover
99
- class =" p-action-menu action-menu"
99
+ class =" p-action-menu action-menu action-menu--lightbox "
100
100
@update:model-value =" onShowMenu"
101
101
>
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" >
103
103
<v-list-item
104
104
v-for =" action in menuActions()"
105
105
:key =" action.name"
@@ -340,7 +340,7 @@ export default {
340
340
arrowNext: true ,
341
341
loop: false ,
342
342
zoom: true ,
343
- close: true ,
343
+ close: false ,
344
344
escKey: false ,
345
345
pinchToClose: false ,
346
346
counter: false ,
@@ -350,13 +350,13 @@ export default {
350
350
closeOnVerticalDrag: false ,
351
351
initialZoomLevel: " fit" ,
352
352
secondaryZoomLevel: " fill" ,
353
+ showHideAnimationType: " none" ,
353
354
hideAnimationDuration: 0 ,
354
355
showAnimationDuration: 0 ,
355
356
wheelToZoom: true ,
356
357
maxZoomLevel: 8 ,
357
358
bgOpacity: 1 ,
358
359
preload: [1 , 1 ],
359
- showHideAnimationType: " none" ,
360
360
mainClass: " p-lightbox__pswp" ,
361
361
tapAction : (point , ev ) => this .onContentTap (ev),
362
362
imageClickAction : (point , ev ) => this .onContentClick (ev),
@@ -918,6 +918,7 @@ export default {
918
918
// see https://github.com/dimsemenov/photoswipe-dynamic-caption-plugin.
919
919
this .captionPlugin = new Captions (this .lightbox , {
920
920
type: " below" ,
921
+ mobileLayoutBreakpoint: 1024 ,
921
922
captionContent : (slide ) => {
922
923
if (! slide || ! this .models || slide? .index < 0 ) {
923
924
return " " ;
@@ -1073,6 +1074,24 @@ export default {
1073
1074
// IDEA: We can later try to add styles that display the sidebar at the bottom
1074
1075
// instead of on the side, to allow use on mobile devices.
1075
1076
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.
1076
1095
if (this .featDevelop && this .canEdit && window .innerWidth > this .mobileBreakpoint ) {
1077
1096
lightbox .pswp .ui .registerElement ({
1078
1097
name: " sidebar-button" ,
@@ -1195,58 +1214,30 @@ export default {
1195
1214
});
1196
1215
}
1197
1216
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) .
1199
1218
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
+ });
1235
1235
}
1236
1236
});
1237
1237
},
1238
1238
// Returns the available menu actions.
1239
1239
menuActions () {
1240
1240
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
- }, */
1250
1241
{
1251
1242
name: " download" ,
1252
1243
icon: " mdi-download" ,
0 commit comments