Skip to content

Commit c0871e2

Browse files
committed
feat: 🎸 Enabled smooth zoom
1 parent 4219373 commit c0871e2

File tree

6 files changed

+15
-20
lines changed

6 files changed

+15
-20
lines changed

src/constants/state.constants.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ export const initialSetup: LibrarySetup = {
1919
centerZoomedOut: false,
2020
centerOnInit: false,
2121
disablePadding: false,
22+
smooth: true,
2223
wheel: {
2324
step: 0.2,
24-
smooth: false,
25-
smoothStep: 0.001,
2625
disabled: false,
26+
smoothStep: 0.001,
2727
wheelDisabled: false,
2828
touchPadDisabled: false,
2929
activationKeys: [],

src/core/handlers/handlers.utils.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@ export const handleCalculateButtonZoom = (
1717
): number => {
1818
const { scale } = contextInstance.transformState;
1919
const { wrapperComponent, setup } = contextInstance;
20-
const { maxScale, minScale, zoomAnimation } = setup;
20+
const { maxScale, minScale, zoomAnimation, smooth } = setup;
2121
const { size } = zoomAnimation;
2222

2323
if (!wrapperComponent) {
2424
throw new Error("Wrapper is not mounted");
2525
}
2626

27-
const targetScale = scale + delta * step;
27+
const targetScale = smooth
28+
? scale * Math.exp(delta * step)
29+
: scale + delta * step;
2830

2931
const newScale = checkZoomBounds(
3032
roundNumber(targetScale, 3),

src/core/wheel/wheel.logic.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ export const handleWheelZoom = (
4444
zoomAnimation,
4545
wheel,
4646
disablePadding,
47+
smooth,
4748
} = setup;
4849
const { size, disabled } = zoomAnimation;
49-
const { step, smooth, smoothStep } = wheel;
50+
const { step, smoothStep } = wheel;
5051

5152
if (!contentComponent) {
5253
throw new Error("Component not mounted");

src/models/context.model.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ export type ReactZoomPanPinchProps = {
6666
centerOnInit?: boolean;
6767
disablePadding?: boolean;
6868
customTransform?: (x: number, y: number, scale: number) => string;
69+
smooth?: boolean;
6970
wheel?: {
7071
step?: number;
7172
smoothStep?: number;
72-
smooth?: boolean;
7373
disabled?: boolean;
7474
wheelDisabled?: boolean;
7575
touchPadDisabled?: boolean;

src/stories/docs/props.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,12 @@ export const wrapperPropsTable: ComponentProps = {
165165
description:
166166
"We can provide custom transform function to provide different way of handling our transform logic. If we need performance we can import getMatrixTransformStyles functions and replace default one. WARNING: default transform prevents svg blur on the safari.",
167167
},
168+
smooth: {
169+
type: ["boolean"],
170+
defaultValue: String(initialSetup.smooth),
171+
description:
172+
"Enable smooth scrolling by multiplying the scroll delta with the smooth step factor.",
173+
},
168174
wheel: {
169175
wheel: {
170176
type: [""],
@@ -182,12 +188,6 @@ export const wrapperPropsTable: ComponentProps = {
182188
description:
183189
"The sensitivity multiplier of zooming with the wheel/touchpad used, instead of the step value, when smooth scrolling is enabled.",
184190
},
185-
smooth: {
186-
type: ["boolean"],
187-
defaultValue: String(initialSetup.wheel.smooth),
188-
description:
189-
"Enable smooth scrolling by multiplying the scroll delta with the smooth step factor.",
190-
},
191191
disabled: {
192192
type: ["boolean"],
193193
defaultValue: String(initialSetup.wheel.disabled),

src/stories/types/args.types.ts

-8
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,6 @@ export const argsTypes = {
2626
defaultValue: { summary: "0" },
2727
},
2828
},
29-
"wheel.smooth": {
30-
defaultValue: initialSetup.wheel.smooth,
31-
control: { type: "boolean" },
32-
table: {
33-
defaultValue: { summary: "false" },
34-
type: { summary: "boolean" },
35-
},
36-
},
3729
"wheel.disabled": {
3830
defaultValue: initialSetup.wheel.disabled,
3931
control: { type: "boolean" },

0 commit comments

Comments
 (0)