react-native-gesture-image-viewer 1.6.6 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +39 -18
- package/lib/module/GestureTrigger.js +83 -0
- package/lib/module/GestureTrigger.js.map +1 -0
- package/lib/module/GestureViewer.js +8 -2
- package/lib/module/GestureViewer.js.map +1 -1
- package/lib/module/GestureViewerRegistry.js +15 -0
- package/lib/module/GestureViewerRegistry.js.map +1 -1
- package/lib/module/index.js +1 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/useGestureViewer.js +100 -11
- package/lib/module/useGestureViewer.js.map +1 -1
- package/lib/typescript/src/GestureTrigger.d.ts +55 -0
- package/lib/typescript/src/GestureTrigger.d.ts.map +1 -0
- package/lib/typescript/src/GestureViewer.d.ts.map +1 -1
- package/lib/typescript/src/GestureViewerRegistry.d.ts +5 -0
- package/lib/typescript/src/GestureViewerRegistry.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +1 -0
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/types.d.ts +67 -12
- package/lib/typescript/src/types.d.ts.map +1 -1
- package/lib/typescript/src/useGestureViewer.d.ts +9 -8
- package/lib/typescript/src/useGestureViewer.d.ts.map +1 -1
- package/package.json +14 -5
- package/src/GestureTrigger.tsx +90 -0
- package/src/GestureViewer.tsx +8 -2
- package/src/GestureViewerRegistry.ts +20 -0
- package/src/index.tsx +1 -0
- package/src/types.ts +67 -14
- package/src/useGestureViewer.ts +138 -11
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type { ReactElement } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Minimal contract for a pressable child's props.
|
|
4
|
+
* The child must optionally accept an `onPress` handler.
|
|
5
|
+
*/
|
|
6
|
+
type WithOnPress = {
|
|
7
|
+
onPress?: (...args: unknown[]) => void;
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* Props for `GestureTrigger`.
|
|
11
|
+
*
|
|
12
|
+
* @typeParam T - The child's props type. Must include an optional `onPress` handler.
|
|
13
|
+
*
|
|
14
|
+
* @property id - Optional identifier to associate this trigger with a `GestureViewer`.
|
|
15
|
+
* @property children - A single React element whose props include `onPress` (e.g., `Pressable`, `Touchable*`).
|
|
16
|
+
* @property onPress - Optional handler invoked after the child's own `onPress`.
|
|
17
|
+
*/
|
|
18
|
+
export type GestureTriggerProps<T extends WithOnPress> = {
|
|
19
|
+
id?: string;
|
|
20
|
+
children: ReactElement<T>;
|
|
21
|
+
onPress?: (...args: unknown[]) => void;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Wraps a pressable child element and registers its native view as a trigger for `GestureViewer`.
|
|
25
|
+
*
|
|
26
|
+
* @remarks
|
|
27
|
+
* Behavior on press:
|
|
28
|
+
* - Registers the child's native node to the internal registry under the given `id`.
|
|
29
|
+
* - Invokes the child's own `onPress` first (if provided).
|
|
30
|
+
* - Invokes the `onPress` passed to `GestureTrigger` next (if provided).
|
|
31
|
+
*
|
|
32
|
+
* Type parameters:
|
|
33
|
+
* - `T` — The child's props type. Must include an optional `onPress` handler, ensuring the child is pressable.
|
|
34
|
+
*
|
|
35
|
+
* Props:
|
|
36
|
+
* - `id` — Optional identifier to associate this trigger with a `GestureViewer`. Defaults to `"default"`.
|
|
37
|
+
* - `children` — A single React element whose props include `onPress` (e.g., `Pressable`, `Touchable*`, custom button).
|
|
38
|
+
* - `onPress` — Optional handler invoked after the child's `onPress`. Receives the same arguments as the child's handler.
|
|
39
|
+
*
|
|
40
|
+
* Notes:
|
|
41
|
+
* - If neither the child nor this component provides `onPress`, a dev warning is logged and nothing happens on press.
|
|
42
|
+
* - Only a single child is allowed; wrap lists using `React.Children.map` when needed.
|
|
43
|
+
*
|
|
44
|
+
* Example:
|
|
45
|
+
* ```tsx
|
|
46
|
+
* <GestureTrigger id="gallery" onPress={() => openModal(index)}>
|
|
47
|
+
* <Pressable style={styles.thumb}>
|
|
48
|
+
* <Image source={{ uri }} style={styles.thumbImage} />
|
|
49
|
+
* </Pressable>
|
|
50
|
+
* </GestureTrigger>
|
|
51
|
+
* ```
|
|
52
|
+
*/
|
|
53
|
+
export declare function GestureTrigger<T extends WithOnPress>({ id, children, onPress }: GestureTriggerProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
54
|
+
export {};
|
|
55
|
+
//# sourceMappingURL=GestureTrigger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GestureTrigger.d.ts","sourceRoot":"","sources":["../../../src/GestureTrigger.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAK1C;;;GAGG;AACH,KAAK,WAAW,GAAG;IAAE,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,IAAI,CAAA;CAAE,CAAC;AAE9D;;;;;;;;GAQG;AACH,MAAM,MAAM,mBAAmB,CAAC,CAAC,SAAS,WAAW,IAAI;IACvD,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;IAC1B,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,IAAI,CAAC;CACxC,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,wBAAgB,cAAc,CAAC,CAAC,SAAS,WAAW,EAAE,EAAE,EAAc,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,mBAAmB,CAAC,CAAC,CAAC,2CAiClH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GestureViewer.d.ts","sourceRoot":"","sources":["../../../src/GestureViewer.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,QAAQ,EAAyE,MAAM,cAAc,CAAC;AAIpH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAKlD,wBAAgB,aAAa,CAAC,CAAC,GAAG,GAAG,EAAE,EAAE,GAAG,OAAO,QAAQ,EAAE,EAC3D,EAAc,EACd,IAAI,EACJ,UAAU,EAAE,cAAc,EAC1B,eAAe,EACf,aAAa,EACb,KAAK,EAAE,WAAW,EAClB,SAAS,EACT,aAAa,EAAE,kBAAkB,EACjC,cAAc,EACd,YAAgB,EAChB,WAAe,EACf,OAAe,EACf,UAAkB,EAClB,GAAG,KAAK,EACT,EAAE,kBAAkB,CAAC,CAAC,EAAE,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"GestureViewer.d.ts","sourceRoot":"","sources":["../../../src/GestureViewer.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,QAAQ,EAAyE,MAAM,cAAc,CAAC;AAIpH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAKlD,wBAAgB,aAAa,CAAC,CAAC,GAAG,GAAG,EAAE,EAAE,GAAG,OAAO,QAAQ,EAAE,EAC3D,EAAc,EACd,IAAI,EACJ,UAAU,EAAE,cAAc,EAC1B,eAAe,EACf,aAAa,EACb,KAAK,EAAE,WAAW,EAClB,SAAS,EACT,aAAa,EAAE,kBAAkB,EACjC,cAAc,EACd,YAAgB,EAChB,WAAe,EACf,OAAe,EACf,UAAkB,EAClB,GAAG,KAAK,EACT,EAAE,kBAAkB,CAAC,CAAC,EAAE,EAAE,CAAC,2CA8J3B"}
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
+
import type { View } from 'react-native';
|
|
1
2
|
import GestureViewerManager from './GestureViewerManager';
|
|
2
3
|
declare class GestureViewerRegistry {
|
|
3
4
|
private managers;
|
|
4
5
|
private subscribers;
|
|
6
|
+
private triggers;
|
|
5
7
|
subscribeToManager(id: string, callback: (manager: GestureViewerManager | null) => void): () => void;
|
|
6
8
|
createManager(id: string): GestureViewerManager | null;
|
|
7
9
|
getManager(id: string): GestureViewerManager | null;
|
|
8
10
|
deleteManager(id: string): void;
|
|
9
11
|
notifySubscribers(id: string, manager: GestureViewerManager | null): void;
|
|
12
|
+
setTriggerNode(id: string, node: View | null): void;
|
|
13
|
+
getTriggerNode(id: string): View | null;
|
|
14
|
+
clearTriggerNode(id: string): void;
|
|
10
15
|
}
|
|
11
16
|
export declare const registry: GestureViewerRegistry;
|
|
12
17
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GestureViewerRegistry.d.ts","sourceRoot":"","sources":["../../../src/GestureViewerRegistry.ts"],"names":[],"mappings":"AAAA,OAAO,oBAAoB,MAAM,wBAAwB,CAAC;AAE1D,cAAM,qBAAqB;IACzB,OAAO,CAAC,QAAQ,CAA2C;IAC3D,OAAO,CAAC,WAAW,CAA0E;
|
|
1
|
+
{"version":3,"file":"GestureViewerRegistry.d.ts","sourceRoot":"","sources":["../../../src/GestureViewerRegistry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,oBAAoB,MAAM,wBAAwB,CAAC;AAE1D,cAAM,qBAAqB;IACzB,OAAO,CAAC,QAAQ,CAA2C;IAC3D,OAAO,CAAC,WAAW,CAA0E;IAC7F,OAAO,CAAC,QAAQ,CAAkC;IAElD,kBAAkB,CAAC,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,OAAO,EAAE,oBAAoB,GAAG,IAAI,KAAK,IAAI;IAsBvF,aAAa,CAAC,EAAE,EAAE,MAAM,GAAG,oBAAoB,GAAG,IAAI;IAatD,UAAU,CAAC,EAAE,EAAE,MAAM,GAAG,oBAAoB,GAAG,IAAI;IAInD,aAAa,CAAC,EAAE,EAAE,MAAM;IAYxB,iBAAiB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,oBAAoB,GAAG,IAAI;IAQlE,cAAc,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,GAAG,IAAI;IAS5C,cAAc,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAIvC,gBAAgB,CAAC,EAAE,EAAE,MAAM;CAG5B;AAED,eAAO,MAAM,QAAQ,uBAA8B,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { GestureTrigger, type GestureTriggerProps } from './GestureTrigger';
|
|
1
2
|
export { GestureViewer } from './GestureViewer';
|
|
2
3
|
export type { GestureViewerController, GestureViewerControllerState, GestureViewerEventCallback, GestureViewerEventData, GestureViewerEventType, GestureViewerProps, } from './types';
|
|
3
4
|
export { useGestureViewerController } from './useGestureViewerController';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,YAAY,EACV,uBAAuB,EACvB,4BAA4B,EAC5B,0BAA0B,EAC1B,sBAAsB,EACtB,sBAAsB,EACtB,kBAAkB,GACnB,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,YAAY,EACV,uBAAuB,EACvB,4BAA4B,EAC5B,0BAA0B,EAC1B,sBAAsB,EACtB,sBAAsB,EACtB,kBAAkB,GACnB,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -1,14 +1,37 @@
|
|
|
1
1
|
import type React from 'react';
|
|
2
2
|
import type { FlatList as RNFlatList, ScrollView as RNScrollView, StyleProp, ViewStyle } from 'react-native';
|
|
3
3
|
import type { FlatList as GHFlatList, ScrollView as GHScrollView } from 'react-native-gesture-handler';
|
|
4
|
+
import type { WithTimingConfig } from 'react-native-reanimated';
|
|
4
5
|
export type FlatListComponent = typeof RNFlatList | typeof GHFlatList;
|
|
5
6
|
export type ScrollViewComponent = typeof RNScrollView | typeof GHScrollView;
|
|
6
7
|
type GetComponentProps<T> = T extends React.ComponentType<infer P> ? P : never;
|
|
7
8
|
type ConditionalListProps<LC> = LC extends FlatListComponent ? React.ComponentProps<LC> : LC extends ScrollViewComponent ? React.ComponentProps<LC> : GetComponentProps<LC>;
|
|
9
|
+
export type TriggerRect = {
|
|
10
|
+
x: number;
|
|
11
|
+
y: number;
|
|
12
|
+
width: number;
|
|
13
|
+
height: number;
|
|
14
|
+
};
|
|
15
|
+
export interface TriggerAnimationConfig extends WithTimingConfig {
|
|
16
|
+
/**
|
|
17
|
+
* Animation duration in milliseconds
|
|
18
|
+
* @defaultValue 300
|
|
19
|
+
*/
|
|
20
|
+
duration?: WithTimingConfig['duration'];
|
|
21
|
+
/**
|
|
22
|
+
* Animation easing function
|
|
23
|
+
* @defaultValue Easing.bezier(0.25, 0.1, 0.25, 1.0)
|
|
24
|
+
*/
|
|
25
|
+
easing?: WithTimingConfig['easing'];
|
|
26
|
+
/**
|
|
27
|
+
* Callback function called after animation completion
|
|
28
|
+
*/
|
|
29
|
+
onAnimationComplete?: () => void;
|
|
30
|
+
}
|
|
8
31
|
export interface GestureViewerProps<T = any, LC = typeof RNFlatList> {
|
|
9
32
|
/**
|
|
10
33
|
* When you want to efficiently manage multiple `GestureViewer` instances, you can use the `id` prop to use multiple `GestureViewer` components.
|
|
11
|
-
* @
|
|
34
|
+
* @remarks `GestureViewer` automatically removes instances from memory when components are unmounted, so no manual memory management is required.
|
|
12
35
|
* @defaultValue 'default'
|
|
13
36
|
*/
|
|
14
37
|
id?: string;
|
|
@@ -29,28 +52,41 @@ export interface GestureViewerProps<T = any, LC = typeof RNFlatList> {
|
|
|
29
52
|
* A callback function that is called when the `GestureViewer` is dismissed.
|
|
30
53
|
*/
|
|
31
54
|
onDismiss?: () => void;
|
|
55
|
+
/**
|
|
56
|
+
* A callback function that is called when the dismiss interaction starts.
|
|
57
|
+
* @remarks Useful to hide external UI (e.g., headers, buttons) while the dismiss gesture/animation is in progress.
|
|
58
|
+
*/
|
|
59
|
+
onDismissStart?: () => void;
|
|
32
60
|
/**
|
|
33
61
|
* A callback function that is called to render the item.
|
|
34
62
|
*/
|
|
35
63
|
renderItem: (item: T, index: number) => React.ReactElement;
|
|
36
64
|
/**
|
|
37
65
|
* A callback function that is called to render the container.
|
|
66
|
+
* @remarks Useful for composing additional UI (e.g., close button, toolbars) around the viewer.
|
|
67
|
+
* The second argument provides control helpers such as `dismiss()` to close the viewer.
|
|
68
|
+
*
|
|
69
|
+
* @param children - The viewer content to be rendered inside your container.
|
|
70
|
+
* @param helpers - Control helpers for the viewer. Currently includes `dismiss()`.
|
|
71
|
+
* @returns A React element that wraps and renders the provided `children`.
|
|
38
72
|
*/
|
|
39
|
-
renderContainer?: (children: React.ReactElement
|
|
73
|
+
renderContainer?: (children: React.ReactElement, helpers: {
|
|
74
|
+
dismiss: () => void;
|
|
75
|
+
}) => React.ReactElement;
|
|
40
76
|
/**
|
|
41
77
|
* Support for any list component like `ScrollView`, `FlatList`, `FlashList` through the `ListComponent` prop.
|
|
42
78
|
*/
|
|
43
79
|
ListComponent: LC;
|
|
44
80
|
/**
|
|
45
81
|
* The width of the `GestureViewer`.
|
|
46
|
-
* @
|
|
82
|
+
* @remarks If you don't set this prop, the width of the `GestureViewer` will be the same as the width of the screen.
|
|
47
83
|
* @defaultValue screen width
|
|
48
84
|
*/
|
|
49
85
|
width?: number;
|
|
50
86
|
/**
|
|
51
87
|
* Enables snap scrolling mode.
|
|
52
88
|
*
|
|
53
|
-
* @
|
|
89
|
+
* @remarks
|
|
54
90
|
* **`false` (default)**: Paging mode (`pagingEnabled: true`)
|
|
55
91
|
* - Scrolls by full screen size increments
|
|
56
92
|
*
|
|
@@ -68,13 +104,13 @@ export interface GestureViewerProps<T = any, LC = typeof RNFlatList> {
|
|
|
68
104
|
dismissThreshold?: number;
|
|
69
105
|
/**
|
|
70
106
|
* Calls `onDismiss` function when swiping down.
|
|
71
|
-
* @
|
|
107
|
+
* @remarks Useful for closing modals with downward swipe gestures.
|
|
72
108
|
* @defaultValue true
|
|
73
109
|
*/
|
|
74
110
|
enableDismissGesture?: boolean;
|
|
75
111
|
/**
|
|
76
112
|
* Controls left/right swipe gestures.
|
|
77
|
-
* @
|
|
113
|
+
* @remarks When `false`, horizontal gestures are disabled.
|
|
78
114
|
* @defaultValue true
|
|
79
115
|
*/
|
|
80
116
|
enableSwipeGesture?: boolean;
|
|
@@ -85,7 +121,7 @@ export interface GestureViewerProps<T = any, LC = typeof RNFlatList> {
|
|
|
85
121
|
resistance?: number;
|
|
86
122
|
/**
|
|
87
123
|
* The props to pass to the list component.
|
|
88
|
-
* @
|
|
124
|
+
* @remarks The `listProps` provides **type inference based on the selected list component**, ensuring accurate autocompletion and type safety in your IDE.
|
|
89
125
|
*/
|
|
90
126
|
listProps?: Partial<ConditionalListProps<LC>>;
|
|
91
127
|
/**
|
|
@@ -98,25 +134,25 @@ export interface GestureViewerProps<T = any, LC = typeof RNFlatList> {
|
|
|
98
134
|
containerStyle?: StyleProp<ViewStyle>;
|
|
99
135
|
/**
|
|
100
136
|
* By default, the background `opacity` gradually decreases from 1 to 0 during downward swipe gestures.
|
|
101
|
-
* @
|
|
137
|
+
* @remarks When `false`, this animation is disabled.
|
|
102
138
|
* @defaultValue true
|
|
103
139
|
*/
|
|
104
140
|
animateBackdrop?: boolean;
|
|
105
141
|
/**
|
|
106
142
|
* Only works when zoom is active, allows moving item position when zoomed.
|
|
107
|
-
* @
|
|
143
|
+
* @remarks When `false`, gesture movement is disabled during zoom.
|
|
108
144
|
* @defaultValue true
|
|
109
145
|
*/
|
|
110
146
|
enableZoomPanGesture?: boolean;
|
|
111
147
|
/**
|
|
112
148
|
* Controls two-finger pinch gestures.
|
|
113
|
-
* @
|
|
149
|
+
* @remarks When `false`, two-finger zoom gestures are disabled.
|
|
114
150
|
* @defaultValue true
|
|
115
151
|
*/
|
|
116
152
|
enableZoomGesture?: boolean;
|
|
117
153
|
/**
|
|
118
154
|
* Controls double-tap zoom gestures.
|
|
119
|
-
* @
|
|
155
|
+
* @remarks When `false`, double-tap zoom gestures are disabled.
|
|
120
156
|
* @defaultValue true
|
|
121
157
|
*/
|
|
122
158
|
enableDoubleTapGesture?: boolean;
|
|
@@ -132,10 +168,29 @@ export interface GestureViewerProps<T = any, LC = typeof RNFlatList> {
|
|
|
132
168
|
maxZoomScale?: number;
|
|
133
169
|
/**
|
|
134
170
|
* The spacing between items in pixels.
|
|
135
|
-
* @
|
|
171
|
+
* @remarks Only applied when `useSnap` is `true`.
|
|
136
172
|
* @defaultValue 0
|
|
137
173
|
*/
|
|
138
174
|
itemSpacing?: number;
|
|
175
|
+
/**
|
|
176
|
+
* Trigger-based animation settings
|
|
177
|
+
* @remarks You can customize animation duration, easing, and system reduce-motion behavior.
|
|
178
|
+
*
|
|
179
|
+
* @example
|
|
180
|
+
* ```tsx
|
|
181
|
+
* <GestureViewer
|
|
182
|
+
* triggerAnimation={{
|
|
183
|
+
* duration: 250,
|
|
184
|
+
* easing: Easing.out(Easing.cubic),
|
|
185
|
+
* reduceMotion: 'system',
|
|
186
|
+
* onAnimationComplete: () => {
|
|
187
|
+
* console.log('Animation complete');
|
|
188
|
+
* },
|
|
189
|
+
* }}
|
|
190
|
+
* />
|
|
191
|
+
* ```
|
|
192
|
+
*/
|
|
193
|
+
triggerAnimation?: TriggerAnimationConfig;
|
|
139
194
|
}
|
|
140
195
|
/**
|
|
141
196
|
* Supported rotation angles in degrees.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,EAAE,QAAQ,IAAI,UAAU,EAAE,UAAU,IAAI,YAAY,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC7G,OAAO,KAAK,EAAE,QAAQ,IAAI,UAAU,EAAE,UAAU,IAAI,YAAY,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { type NativeScrollEvent, type NativeSyntheticEvent } from 'react-native';
|
|
2
2
|
import type { GestureViewerProps } from './types';
|
|
3
3
|
type UseGestureViewerProps<T = any> = Omit<GestureViewerProps<T>, 'renderItem' | 'renderContainer' | 'ListComponent' | 'listProps' | 'containerStyle' | 'backdropStyle'>;
|
|
4
|
-
export declare const useGestureViewer: <T = any>({ data, initialIndex, onIndexChange, onDismiss, width: customWidth, dismissThreshold, resistance, animateBackdrop, enableDismissGesture, enableSwipeGesture, enableZoomGesture, enableDoubleTapGesture, enableZoomPanGesture, enableLoop, maxZoomScale, itemSpacing, useSnap, id, }: UseGestureViewerProps<T>) => {
|
|
4
|
+
export declare const useGestureViewer: <T = any>({ data, initialIndex, onIndexChange, onDismiss, width: customWidth, dismissThreshold, resistance, animateBackdrop, enableDismissGesture, enableSwipeGesture, enableZoomGesture, enableDoubleTapGesture, enableZoomPanGesture, enableLoop, maxZoomScale, itemSpacing, useSnap, id, onDismissStart, triggerAnimation, }: UseGestureViewerProps<T>) => {
|
|
5
5
|
dataLength: number;
|
|
6
|
-
translateY: import("react-native-reanimated").SharedValue<number>;
|
|
7
6
|
listRef: import("react").RefObject<any>;
|
|
8
7
|
isZoomed: boolean;
|
|
9
8
|
isRotated: boolean;
|
|
@@ -11,26 +10,28 @@ export declare const useGestureViewer: <T = any>({ data, initialIndex, onIndexCh
|
|
|
11
10
|
zoomGesture: import("react-native-gesture-handler/lib/typescript/handlers/gestures/gestureComposition").ComposedGesture;
|
|
12
11
|
onMomentumScrollEnd: (event: NativeSyntheticEvent<NativeScrollEvent>) => void;
|
|
13
12
|
onScrollBeginDrag: () => void;
|
|
13
|
+
handleDismiss: () => void;
|
|
14
14
|
animatedStyle: {
|
|
15
|
+
opacity: number;
|
|
15
16
|
transform: ({
|
|
16
|
-
|
|
17
|
-
|
|
17
|
+
translateX: number;
|
|
18
|
+
translateY?: undefined;
|
|
18
19
|
scale?: undefined;
|
|
19
20
|
rotate?: undefined;
|
|
20
21
|
} | {
|
|
21
|
-
|
|
22
|
-
|
|
22
|
+
translateY: number;
|
|
23
|
+
translateX?: undefined;
|
|
23
24
|
scale?: undefined;
|
|
24
25
|
rotate?: undefined;
|
|
25
26
|
} | {
|
|
26
27
|
scale: number;
|
|
27
|
-
translateY?: undefined;
|
|
28
28
|
translateX?: undefined;
|
|
29
|
+
translateY?: undefined;
|
|
29
30
|
rotate?: undefined;
|
|
30
31
|
} | {
|
|
31
32
|
rotate: string;
|
|
32
|
-
translateY?: undefined;
|
|
33
33
|
translateX?: undefined;
|
|
34
|
+
translateY?: undefined;
|
|
34
35
|
scale?: undefined;
|
|
35
36
|
})[];
|
|
36
37
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useGestureViewer.d.ts","sourceRoot":"","sources":["../../../src/useGestureViewer.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,KAAK,iBAAiB,EACtB,KAAK,oBAAoB,EAE1B,MAAM,cAAc,CAAC;AActB,OAAO,KAAK,EAAE,kBAAkB,
|
|
1
|
+
{"version":3,"file":"useGestureViewer.d.ts","sourceRoot":"","sources":["../../../src/useGestureViewer.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,KAAK,iBAAiB,EACtB,KAAK,oBAAoB,EAE1B,MAAM,cAAc,CAAC;AActB,OAAO,KAAK,EAAE,kBAAkB,EAAe,MAAM,SAAS,CAAC;AAG/D,KAAK,qBAAqB,CAAC,CAAC,GAAG,GAAG,IAAI,IAAI,CACxC,kBAAkB,CAAC,CAAC,CAAC,EACrB,YAAY,GAAG,iBAAiB,GAAG,eAAe,GAAG,WAAW,GAAG,gBAAgB,GAAG,eAAe,CACtG,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,CAAC,GAAG,GAAG,EAAE,uTAqBvC,qBAAqB,CAAC,CAAC,CAAC;;;;;;;iCA6Sf,oBAAoB,CAAC,iBAAiB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuSlD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-gesture-image-viewer",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "🖼️
|
|
3
|
+
"version": "1.7.1",
|
|
4
|
+
"description": "🖼️ React Native Image Viewer - Reanimated-powered image gestures with full control",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"types": "./lib/typescript/src/index.d.ts",
|
|
7
7
|
"exports": {
|
|
@@ -59,11 +59,20 @@
|
|
|
59
59
|
"photo-viewer",
|
|
60
60
|
"image-carousel",
|
|
61
61
|
"touch-gestures",
|
|
62
|
-
"react-native-reanimated",
|
|
63
|
-
"react-native-gesture-handler",
|
|
64
62
|
"lightbox",
|
|
65
63
|
"gallery",
|
|
66
|
-
"viewer"
|
|
64
|
+
"viewer",
|
|
65
|
+
"zoomable",
|
|
66
|
+
"double-tap",
|
|
67
|
+
"image viewer",
|
|
68
|
+
"react native image viewer",
|
|
69
|
+
"react-native-reanimated",
|
|
70
|
+
"react-native-gesture-handler",
|
|
71
|
+
"react-native-viewer",
|
|
72
|
+
"react-native-image-viewer",
|
|
73
|
+
"react-native-image-gallery",
|
|
74
|
+
"react-native-reanimated-image-viewer",
|
|
75
|
+
"react-native-image-zoom-viewer"
|
|
67
76
|
],
|
|
68
77
|
"repository": {
|
|
69
78
|
"type": "git",
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import type { ReactElement } from 'react';
|
|
2
|
+
import { Children, cloneElement, isValidElement, useMemo, useRef } from 'react';
|
|
3
|
+
import { View } from 'react-native';
|
|
4
|
+
import { registry } from './GestureViewerRegistry';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Minimal contract for a pressable child's props.
|
|
8
|
+
* The child must optionally accept an `onPress` handler.
|
|
9
|
+
*/
|
|
10
|
+
type WithOnPress = { onPress?: (...args: unknown[]) => void };
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Props for `GestureTrigger`.
|
|
14
|
+
*
|
|
15
|
+
* @typeParam T - The child's props type. Must include an optional `onPress` handler.
|
|
16
|
+
*
|
|
17
|
+
* @property id - Optional identifier to associate this trigger with a `GestureViewer`.
|
|
18
|
+
* @property children - A single React element whose props include `onPress` (e.g., `Pressable`, `Touchable*`).
|
|
19
|
+
* @property onPress - Optional handler invoked after the child's own `onPress`.
|
|
20
|
+
*/
|
|
21
|
+
export type GestureTriggerProps<T extends WithOnPress> = {
|
|
22
|
+
id?: string;
|
|
23
|
+
children: ReactElement<T>;
|
|
24
|
+
onPress?: (...args: unknown[]) => void;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Wraps a pressable child element and registers its native view as a trigger for `GestureViewer`.
|
|
29
|
+
*
|
|
30
|
+
* @remarks
|
|
31
|
+
* Behavior on press:
|
|
32
|
+
* - Registers the child's native node to the internal registry under the given `id`.
|
|
33
|
+
* - Invokes the child's own `onPress` first (if provided).
|
|
34
|
+
* - Invokes the `onPress` passed to `GestureTrigger` next (if provided).
|
|
35
|
+
*
|
|
36
|
+
* Type parameters:
|
|
37
|
+
* - `T` — The child's props type. Must include an optional `onPress` handler, ensuring the child is pressable.
|
|
38
|
+
*
|
|
39
|
+
* Props:
|
|
40
|
+
* - `id` — Optional identifier to associate this trigger with a `GestureViewer`. Defaults to `"default"`.
|
|
41
|
+
* - `children` — A single React element whose props include `onPress` (e.g., `Pressable`, `Touchable*`, custom button).
|
|
42
|
+
* - `onPress` — Optional handler invoked after the child's `onPress`. Receives the same arguments as the child's handler.
|
|
43
|
+
*
|
|
44
|
+
* Notes:
|
|
45
|
+
* - If neither the child nor this component provides `onPress`, a dev warning is logged and nothing happens on press.
|
|
46
|
+
* - Only a single child is allowed; wrap lists using `React.Children.map` when needed.
|
|
47
|
+
*
|
|
48
|
+
* Example:
|
|
49
|
+
* ```tsx
|
|
50
|
+
* <GestureTrigger id="gallery" onPress={() => openModal(index)}>
|
|
51
|
+
* <Pressable style={styles.thumb}>
|
|
52
|
+
* <Image source={{ uri }} style={styles.thumbImage} />
|
|
53
|
+
* </Pressable>
|
|
54
|
+
* </GestureTrigger>
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
export function GestureTrigger<T extends WithOnPress>({ id = 'default', children, onPress }: GestureTriggerProps<T>) {
|
|
58
|
+
const ref = useRef<View>(null);
|
|
59
|
+
|
|
60
|
+
const wrapped = useMemo(() => {
|
|
61
|
+
const child = Children.only(children);
|
|
62
|
+
|
|
63
|
+
if (!isValidElement(child)) {
|
|
64
|
+
return children;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
const originalOnPress = child.props?.onPress;
|
|
68
|
+
|
|
69
|
+
const handlePress = (...args: unknown[]) => {
|
|
70
|
+
registry.setTriggerNode(id, ref.current);
|
|
71
|
+
originalOnPress?.(...args);
|
|
72
|
+
onPress?.(...args);
|
|
73
|
+
|
|
74
|
+
if (__DEV__ && !originalOnPress && !onPress) {
|
|
75
|
+
console.warn('[GestureTrigger] No onPress found on child or props. Nothing will happen on press.');
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
return cloneElement(child, {
|
|
80
|
+
...child.props,
|
|
81
|
+
onPress: handlePress,
|
|
82
|
+
});
|
|
83
|
+
}, [id, onPress, children]);
|
|
84
|
+
|
|
85
|
+
return (
|
|
86
|
+
<View ref={ref} collapsable={false}>
|
|
87
|
+
{wrapped}
|
|
88
|
+
</View>
|
|
89
|
+
);
|
|
90
|
+
}
|
package/src/GestureViewer.tsx
CHANGED
|
@@ -27,7 +27,6 @@ export function GestureViewer<T = any, LC = typeof FlatList>({
|
|
|
27
27
|
const Component = ListComponent as React.ComponentType<any>;
|
|
28
28
|
|
|
29
29
|
const dataRef = useRef(data);
|
|
30
|
-
dataRef.current = data;
|
|
31
30
|
|
|
32
31
|
const { width: screenWidth } = useWindowDimensions();
|
|
33
32
|
|
|
@@ -45,6 +44,7 @@ export function GestureViewer<T = any, LC = typeof FlatList>({
|
|
|
45
44
|
zoomGesture,
|
|
46
45
|
onMomentumScrollEnd,
|
|
47
46
|
onScrollBeginDrag,
|
|
47
|
+
handleDismiss,
|
|
48
48
|
animatedStyle,
|
|
49
49
|
backdropStyle,
|
|
50
50
|
} = useGestureViewer({
|
|
@@ -104,6 +104,10 @@ export function GestureViewer<T = any, LC = typeof FlatList>({
|
|
|
104
104
|
return Gesture.Race(dismissGesture, zoomGesture);
|
|
105
105
|
}, [zoomGesture, dismissGesture]);
|
|
106
106
|
|
|
107
|
+
useEffect(() => {
|
|
108
|
+
dataRef.current = data;
|
|
109
|
+
}, [data]);
|
|
110
|
+
|
|
107
111
|
useEffect(() => {
|
|
108
112
|
registry.createManager(id);
|
|
109
113
|
|
|
@@ -133,6 +137,8 @@ export function GestureViewer<T = any, LC = typeof FlatList>({
|
|
|
133
137
|
[width, itemSpacing, isZoomed, isRotated, onMomentumScrollEnd, onScrollBeginDrag, useSnap],
|
|
134
138
|
);
|
|
135
139
|
|
|
140
|
+
const control = useMemo(() => ({ dismiss: handleDismiss }), [handleDismiss]);
|
|
141
|
+
|
|
136
142
|
const listComponent = (
|
|
137
143
|
<GestureHandlerRootView>
|
|
138
144
|
<GestureDetector gesture={gesture}>
|
|
@@ -174,7 +180,7 @@ export function GestureViewer<T = any, LC = typeof FlatList>({
|
|
|
174
180
|
</GestureHandlerRootView>
|
|
175
181
|
);
|
|
176
182
|
|
|
177
|
-
return renderContainer ? renderContainer(listComponent) : listComponent;
|
|
183
|
+
return renderContainer ? renderContainer(listComponent, control) : listComponent;
|
|
178
184
|
}
|
|
179
185
|
|
|
180
186
|
const styles = StyleSheet.create({
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import type { View } from 'react-native';
|
|
1
2
|
import GestureViewerManager from './GestureViewerManager';
|
|
2
3
|
|
|
3
4
|
class GestureViewerRegistry {
|
|
4
5
|
private managers = new Map<string, GestureViewerManager>();
|
|
5
6
|
private subscribers = new Map<string, Set<(manager: GestureViewerManager | null) => void>>();
|
|
7
|
+
private triggers = new Map<string, View | null>();
|
|
6
8
|
|
|
7
9
|
subscribeToManager(id: string, callback: (manager: GestureViewerManager | null) => void) {
|
|
8
10
|
if (!this.subscribers.has(id)) {
|
|
@@ -50,6 +52,7 @@ class GestureViewerRegistry {
|
|
|
50
52
|
manager.cleanUp();
|
|
51
53
|
this.managers.delete(id);
|
|
52
54
|
|
|
55
|
+
this.clearTriggerNode(id);
|
|
53
56
|
this.notifySubscribers(id, null);
|
|
54
57
|
}
|
|
55
58
|
}
|
|
@@ -61,6 +64,23 @@ class GestureViewerRegistry {
|
|
|
61
64
|
[...listeners].forEach((callback) => callback(manager));
|
|
62
65
|
}
|
|
63
66
|
}
|
|
67
|
+
|
|
68
|
+
setTriggerNode(id: string, node: View | null) {
|
|
69
|
+
if (!node) {
|
|
70
|
+
this.clearTriggerNode(id);
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
this.triggers.set(id, node);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
getTriggerNode(id: string): View | null {
|
|
78
|
+
return this.triggers.get(id) ?? null;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
clearTriggerNode(id: string) {
|
|
82
|
+
this.triggers.delete(id);
|
|
83
|
+
}
|
|
64
84
|
}
|
|
65
85
|
|
|
66
86
|
export const registry = new GestureViewerRegistry();
|
package/src/index.tsx
CHANGED