@@ -140,21 +140,23 @@ window.saturne.media.event = function() {
140
140
*/
141
141
window . saturne . media . initPan = function ( ) {
142
142
const modalContent = document . querySelector ( '.modal-content' ) ;
143
- const hammer = new Hammer ( modalContent ) ;
144
-
145
- hammer . get ( 'pan' ) . set ( { direction : Hammer . DIRECTION_ALL } ) ;
143
+ const hammer = new Hammer ( modalContent , {
144
+ touchAction : 'auto' , // Configure touch action behavior
145
+ recognizers : [
146
+ [ Hammer . Pan , { direction : Hammer . DIRECTION_ALL } ] // Enable panning in all directions
147
+ ] ,
148
+ threshold : 5 , // Adjust this threshold for more sensitive pan detection
149
+ velocity : 0.1 // Adjust this velocity for smoother pan movement
150
+ } ) ;
146
151
147
152
hammer . on ( 'pan' , ( e ) => {
148
153
if ( window . saturne . media . isMoving ) {
149
- // Slow down the movement by dividing the delta values
150
- const slowFactor = 3 ; // Adjust this factor to control the speed
151
- const dampingFactor = 0.1 ; // Adjust this factor for more realistic movement
152
-
153
- const deltaX = e . deltaX * dampingFactor ;
154
- const deltaY = e . deltaY * dampingFactor ;
154
+ const deltaX = e . deltaX ;
155
+ const deltaY = e . deltaY ;
155
156
156
- modalContent . scrollLeft -= deltaX / slowFactor ;
157
- modalContent . scrollTop -= deltaY / slowFactor ;
157
+ // Adjust the scroll position of modal content
158
+ modalContent . scrollLeft -= deltaX ;
159
+ modalContent . scrollTop -= deltaY ;
158
160
}
159
161
} ) ;
160
162
} ;
@@ -316,13 +318,41 @@ window.saturne.media.drawImageOnCanvas = function(event) {
316
318
img . src = event . target . result ;
317
319
window . saturne . media . img = event ;
318
320
img . onload = function ( ) {
319
- if ( img . width >= $ ( '.fast-upload-options' ) . data ( 'image-resolution-width' ) ) {
320
- window . saturne . media . canvas . width = $ ( '.fast-upload-options' ) . data ( 'image-resolution-width' ) ;
321
- window . saturne . media . canvas . height = $ ( '.fast-upload-options' ) . data ( 'image-resolution-height' ) ;
321
+ const maxWidth = $ ( '.fast-upload-options' ) . data ( 'image-resolution-width' ) ;
322
+ const maxHeight = $ ( '.fast-upload-options' ) . data ( 'image-resolution-height' ) ;
323
+ let canvasWidth , canvasHeight ;
324
+
325
+ // Calculate the aspect ratio of the image
326
+ const aspectRatio = img . width / img . height ;
327
+
328
+ if ( img . width > maxWidth || img . height > maxHeight ) {
329
+ if ( aspectRatio > 1 ) {
330
+ // Landscape orientation
331
+ canvasWidth = maxWidth ;
332
+ canvasHeight = maxWidth / aspectRatio ;
333
+ } else {
334
+ // Portrait orientation
335
+ canvasHeight = maxHeight ;
336
+ canvasWidth = maxHeight * aspectRatio ;
337
+ }
338
+
339
+ // Ensure the canvas dimensions do not exceed the maximum dimensions
340
+ if ( canvasWidth > maxWidth ) {
341
+ canvasWidth = maxWidth ;
342
+ canvasHeight = maxWidth / aspectRatio ;
343
+ }
344
+ if ( canvasHeight > maxHeight ) {
345
+ canvasHeight = maxHeight ;
346
+ canvasWidth = maxHeight * aspectRatio ;
347
+ }
322
348
} else {
323
- window . saturne . media . canvas . width = img . width ;
324
- window . saturne . media . canvas . height = img . height ;
349
+ canvasWidth = img . width ;
350
+ canvasHeight = img . height ;
325
351
}
352
+
353
+ window . saturne . media . canvas . width = canvasWidth ;
354
+ window . saturne . media . canvas . height = canvasHeight ;
355
+
326
356
context . drawImage ( img , 0 , 0 , window . saturne . media . canvas . width , window . saturne . media . canvas . height ) ;
327
357
328
358
// Restore drawing state
0 commit comments