diff --git a/.maestro/tests/accessibilityAndAppearance/ToastsAndDialogs.yml b/.maestro/tests/accessibilityAndAppearance/ToastsAndDialogs.yml
index 6a2b2cde33b..973e6f430f3 100644
--- a/.maestro/tests/accessibilityAndAppearance/ToastsAndDialogs.yml
+++ b/.maestro/tests/accessibilityAndAppearance/ToastsAndDialogs.yml
@@ -18,7 +18,7 @@ tags:
# Show alerts as Toasts
- tapOn: 'Menu'
- tapOn: 'Accessibility & appearance'
-- tapOn: 'Show alerts as. Toasts'
+- tapOn: '.*Show alerts as.*'
- assertVisible: 'Toasts. Dismissed automatically. Checked'
- assertVisible: 'Dialogs. Require manual dismissal. Unchecked'
- tapOn:
@@ -37,7 +37,7 @@ tags:
# Show alerts as Dialogs
- tapOn: 'Accessibility & appearance'
-- tapOn: 'Show alerts as. Toasts'
+- tapOn: '.*Show alerts as.*'
- assertVisible: 'Toasts. Dismissed automatically. Checked'
- tapOn: 'Dialogs. Require manual dismissal. Unchecked'
- tapOn: 'Menu'
diff --git a/.maestro/tests/assorted/join-from-directory.yaml b/.maestro/tests/assorted/join-from-directory.yaml
index 5e8de558c70..d536cb874bb 100644
--- a/.maestro/tests/assorted/join-from-directory.yaml
+++ b/.maestro/tests/assorted/join-from-directory.yaml
@@ -97,10 +97,10 @@ tags:
id: 'directory-view-filter'
- extendedWaitUntil:
visible:
- text: 'Users unselected'
+ id: 'directory-switch-users'
timeout: 60000
- tapOn:
- text: 'Users unselected'
+ id: 'directory-switch-users'
- tapOn:
id: 'directory-view-search'
- inputText: ${output.otherUser.username}
@@ -145,10 +145,10 @@ tags:
id: 'directory-view-filter'
- extendedWaitUntil:
visible:
- text: 'Teams unselected'
+ id: 'directory-switch-teams'
timeout: 60000
- tapOn:
- text: 'Teams unselected'
+ id: 'directory-switch-teams'
- tapOn:
id: 'directory-view-search'
- inputText: ${output.team}
diff --git a/.maestro/tests/assorted/profile.yaml b/.maestro/tests/assorted/profile.yaml
index 0511341f736..e6741045fc4 100644
--- a/.maestro/tests/assorted/profile.yaml
+++ b/.maestro/tests/assorted/profile.yaml
@@ -96,7 +96,8 @@ tags:
env:
id: 'profile-view-username'
- inputText: ${output.user.username + 'username'}
-- tapOn: '.*Username.*' #hidekeyboard on iOS
+- runFlow:
+ file: '../../helpers/hide-keyboard.yaml'
- scrollUntilVisible:
element:
id: 'profile-view-submit'
@@ -111,9 +112,8 @@ tags:
- tapOn:
id: 'profile-view-nickname'
- inputText: ${output.user.username + 'newnickname'}
-- tapOn:
- text: '.*Nickname.*'
- index: 0
+- runFlow:
+ file: '../../helpers/hide-keyboard.yaml'
- assertVisible:
id: 'profile-view-bio'
- tapOn:
diff --git a/.maestro/tests/room/room-actions.yaml b/.maestro/tests/room/room-actions.yaml
index 1073f819ea9..df2b95a9a76 100644
--- a/.maestro/tests/room/room-actions.yaml
+++ b/.maestro/tests/room/room-actions.yaml
@@ -121,8 +121,8 @@ tags:
from:
id: action-sheet-handle
direction: UP
-- extendedWaitUntil:
- visible:
+- scrollUntilVisible:
+ element:
text: 'Star'
timeout: 60000
- tapOn:
diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
deleted file mode 100644
index 62d7d130c6b..00000000000
--- a/android/app/src/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 4fb70ab1a89..7581d50c724 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -28,6 +28,7 @@
android:requestLegacyExternalStorage="true"
android:supportsRtl="true"
android:theme="@style/AppTheme"
+ android:usesCleartextTraffic="${usesCleartextTraffic}"
android:hardwareAccelerated="true"
tools:replace="android:allowBackup">
void }) => {
const { theme } = useTheme();
- // We should use Pressable from gesture-handler to avoid issues with the keyboard
+ // We should use RectButton from gesture-handler to avoid issues with the keyboard
return (
- void }) => {
accessibilityLabel='Close action sheet'
accessibilityHint='Dismisses the action sheet'>
-
+
);
};
diff --git a/app/containers/AudioPlayer/Seek.tsx b/app/containers/AudioPlayer/Seek.tsx
index 6b70602df0f..56f54e83b87 100644
--- a/app/containers/AudioPlayer/Seek.tsx
+++ b/app/containers/AudioPlayer/Seek.tsx
@@ -1,21 +1,20 @@
import React from 'react';
import { type LayoutChangeEvent, View, TextInput, type TextInputProps, TouchableNativeFeedback } from 'react-native';
-import { PanGestureHandler, type PanGestureHandlerGestureEvent } from 'react-native-gesture-handler';
+import { Gesture, GestureDetector } from 'react-native-gesture-handler';
import Animated, {
type SharedValue,
- runOnJS,
- useAnimatedGestureHandler,
useAnimatedProps,
useAnimatedStyle,
useDerivedValue,
- useSharedValue
+ useSharedValue,
+ withTiming
} from 'react-native-reanimated';
+import { scheduleOnRN } from 'react-native-worklets';
import styles from './styles';
import { useTheme } from '../../theme';
import { SEEK_HIT_SLOP, THUMB_SEEK_SIZE, ACTIVE_OFFSET_X, DEFAULT_TIME_LABEL } from './constants';
-Animated.addWhitelistedNativeProps({ text: true });
const AnimatedTextInput = Animated.createAnimatedComponent(TextInput);
interface ISeek {
@@ -50,6 +49,7 @@ const Seek = ({ currentTime, duration, loaded = false, onChangeTime }: ISeek) =>
const timeLabel = useSharedValue(DEFAULT_TIME_LABEL);
const scale = useSharedValue(1);
const isPanning = useSharedValue(false);
+ const contextX = useSharedValue(0);
const styleLine = useAnimatedStyle(() => ({
width: translateX.value
@@ -64,21 +64,25 @@ const Seek = ({ currentTime, duration, loaded = false, onChangeTime }: ISeek) =>
maxWidth.value = width;
};
- const onGestureEvent = useAnimatedGestureHandler({
- onStart: (_event, ctx) => {
+ const panGesture = Gesture.Pan()
+ .enabled(loaded)
+ .activeOffsetX([-ACTIVE_OFFSET_X, ACTIVE_OFFSET_X])
+ .onStart(() => {
isPanning.value = true;
- ctx.offsetX = translateX.value;
- },
- onActive: ({ translationX }, ctx) => {
- translateX.value = clamp(ctx.offsetX + translationX, 0, maxWidth.value);
- scale.value = 1.3;
- },
- onFinish() {
- scale.value = 1;
+ contextX.value = translateX.value;
+ scale.value = withTiming(1.3, { duration: 150 });
+ })
+ .onUpdate(event => {
+ const newX = contextX.value + event.translationX;
+ translateX.value = clamp(newX, 0, maxWidth.value);
+ })
+ .onEnd(() => {
+ scheduleOnRN(onChangeTime, Math.round(currentTime.value * 1000));
+ })
+ .onFinalize(() => {
isPanning.value = false;
- runOnJS(onChangeTime)(Math.round(currentTime.value * 1000));
- }
- });
+ scale.value = withTiming(1, { duration: 150 });
+ });
useDerivedValue(() => {
if (isPanning.value) {
@@ -118,9 +122,9 @@ const Seek = ({ currentTime, duration, loaded = false, onChangeTime }: ISeek) =>
-
+
-
+
diff --git a/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap b/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap
index a4fe18c8b84..940a7909f6d 100644
--- a/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap
+++ b/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap
@@ -18,7 +18,7 @@ exports[`Story Snapshots: AvatarBase64 should match snapshot 1`] = `
>
+
+
+
+
+
+
+
void;
type?: 'primary' | 'secondary';
@@ -17,6 +17,7 @@ interface IButtonProps extends PressableProps {
style?: StyleProp | StyleProp[];
styleText?: StyleProp | StyleProp[];
small?: boolean;
+ disabled?: boolean;
}
const styles = StyleSheet.create({
@@ -87,15 +88,15 @@ const Button: React.FC = ({
];
return (
-
{loading ? : {title}}
-
+
);
};
diff --git a/app/containers/Chip/__snapshots__/Chip.test.tsx.snap b/app/containers/Chip/__snapshots__/Chip.test.tsx.snap
index e9fc7988de9..113a0ba0758 100644
--- a/app/containers/Chip/__snapshots__/Chip.test.tsx.snap
+++ b/app/containers/Chip/__snapshots__/Chip.test.tsx.snap
@@ -189,7 +189,7 @@ exports[`Story Snapshots: ChipText should match snapshot 1`] = `
>
@@ -74,7 +62,9 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -82,21 +72,14 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
@@ -617,21 +586,14 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
/>
@@ -644,55 +606,43 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "height": 44,
- "maxHeight": undefined,
- "minHeight": undefined,
- "opacity": undefined,
- "transform": undefined,
- },
- ]
+ {
+ "height": 44,
+ "maxHeight": undefined,
+ "minHeight": undefined,
+ "opacity": undefined,
+ "transform": undefined,
+ }
}
>
@@ -713,7 +663,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -721,21 +673,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
@@ -871,21 +802,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
/>
@@ -894,55 +818,43 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "height": 44,
- "maxHeight": undefined,
- "minHeight": undefined,
- "opacity": undefined,
- "transform": undefined,
- },
- ]
+ {
+ "height": 44,
+ "maxHeight": undefined,
+ "minHeight": undefined,
+ "opacity": undefined,
+ "transform": undefined,
+ }
}
>
@@ -963,7 +875,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -971,21 +885,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
@@ -1121,21 +1014,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
/>
@@ -1144,55 +1030,43 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "height": 44,
- "maxHeight": undefined,
- "minHeight": undefined,
- "opacity": undefined,
- "transform": undefined,
- },
- ]
+ {
+ "height": 44,
+ "maxHeight": undefined,
+ "minHeight": undefined,
+ "opacity": undefined,
+ "transform": undefined,
+ }
}
>
@@ -1213,7 +1087,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -1221,21 +1097,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
@@ -1361,21 +1216,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
/>
@@ -1384,55 +1232,43 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "height": 44,
- "maxHeight": undefined,
- "minHeight": undefined,
- "opacity": undefined,
- "transform": undefined,
- },
- ]
+ {
+ "height": 44,
+ "maxHeight": undefined,
+ "minHeight": undefined,
+ "opacity": undefined,
+ "transform": undefined,
+ }
}
>
@@ -1453,7 +1289,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -1461,39 +1299,25 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
/>
@@ -1523,21 +1340,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
>
@@ -1700,7 +1498,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -1708,39 +1508,25 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
/>
@@ -1770,21 +1549,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
>
@@ -1947,7 +1707,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -1955,39 +1717,25 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
/>
@@ -2017,21 +1758,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
>
@@ -2194,7 +1916,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -2202,39 +1926,25 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
/>
@@ -2264,21 +1967,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
>
@@ -2448,7 +2132,9 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -2456,21 +2142,14 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
-
-
+
+
@@ -2781,7 +2427,9 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -2789,21 +2437,14 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
@@ -3005,21 +2632,14 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
>
@@ -3262,7 +2870,9 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -3270,21 +2880,14 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
+
+
-
-
@@ -3818,7 +3388,9 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -3826,21 +3398,14 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
@@ -4081,21 +3632,14 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
>
@@ -4374,7 +3906,9 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -4382,21 +3916,14 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
@@ -4637,21 +4150,14 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
>
-
+
@@ -4928,7 +4422,9 @@ exports[`Story Snapshots: Title should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -4936,21 +4432,14 @@ exports[`Story Snapshots: Title should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
@@ -5076,21 +4551,14 @@ exports[`Story Snapshots: Title should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
>
@@ -5245,7 +4701,9 @@ exports[`Story Snapshots: Title should match snapshot 1`] = `
"flex": 1,
"flexDirection": "row",
},
- null,
+ {
+ "marginHorizontal": 5,
+ },
]
}
>
@@ -5253,21 +4711,14 @@ exports[`Story Snapshots: Title should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-start",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginStart": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-start",
+ "marginStart": 0,
+ }
}
>
@@ -5453,21 +4890,14 @@ exports[`Story Snapshots: Title should match snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
- [
- {
- "alignItems": "center",
- "flexDirection": "row",
- "justifyContent": "flex-end",
- },
- {
- "flexBasis": 0,
- "flexGrow": 1,
- },
- {
- "marginEnd": 0,
- },
- undefined,
- ]
+ {
+ "alignItems": "center",
+ "flexBasis": 0,
+ "flexDirection": "row",
+ "flexGrow": 1,
+ "justifyContent": "flex-end",
+ "marginEnd": 0,
+ }
}
>
{left ? {left()} : null}
diff --git a/app/containers/List/__snapshots__/List.test.tsx.snap b/app/containers/List/__snapshots__/List.test.tsx.snap
index 2be6919ee62..5ff7f891b02 100644
--- a/app/containers/List/__snapshots__/List.test.tsx.snap
+++ b/app/containers/List/__snapshots__/List.test.tsx.snap
@@ -707,7 +707,7 @@ exports[`Story Snapshots: ListItemWithRightContainerStyle should match snapshot
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={1}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -974,7 +974,7 @@ exports[`Story Snapshots: Pressable should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={2}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -1106,7 +1106,7 @@ exports[`Story Snapshots: Pressable should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={3}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -1273,7 +1273,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={4}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -1454,7 +1454,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={5}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -1635,7 +1635,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={6}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -1816,7 +1816,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={7}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -3440,7 +3440,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={8}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -3686,7 +3686,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={9}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -4011,7 +4011,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={10}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -4257,7 +4257,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={11}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -4624,7 +4624,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={12}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -4870,7 +4870,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={13}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -5195,7 +5195,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={14}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -5441,7 +5441,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={15}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -5833,7 +5833,7 @@ exports[`Story Snapshots: WithCustomColors should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={16}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -6054,7 +6054,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={17}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -6300,7 +6300,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={18}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -6625,7 +6625,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={19}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -6871,7 +6871,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={20}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -8870,7 +8870,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={21}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -9116,7 +9116,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={22}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -9441,7 +9441,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={23}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -9687,7 +9687,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={24}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
diff --git a/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap b/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap
index e36536132bb..b713bd5638e 100644
--- a/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap
+++ b/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap
@@ -5,42 +5,53 @@ exports[`Story Snapshots: Separators should match snapshot 1`] = `
+
+
@@ -10639,14 +10599,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"height": "100%",
"width": "100%",
},
- {
- "opacity": 1,
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
/>
@@ -10664,13 +10617,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"left": 0,
},
undefined,
- {
- "transform": [
- {
- "translateX": -0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10681,14 +10628,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"height": "100%",
"width": "100%",
},
- {
- "opacity": 1,
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
/>
@@ -10706,13 +10646,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"left": 0,
},
undefined,
- {
- "transform": [
- {
- "translateX": -0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10723,14 +10657,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"height": "100%",
"width": "100%",
},
- {
- "opacity": 1,
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
/>
@@ -10748,13 +10675,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"left": 0,
},
undefined,
- {
- "transform": [
- {
- "translateX": -0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10765,14 +10686,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"height": "100%",
"width": "100%",
},
- {
- "opacity": 1,
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
/>
@@ -10790,13 +10704,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"left": 0,
},
undefined,
- {
- "transform": [
- {
- "translateX": -0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10807,14 +10715,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"height": "100%",
"width": "100%",
},
- {
- "opacity": 1,
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
/>
@@ -10832,13 +10733,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"left": 0,
},
undefined,
- {
- "transform": [
- {
- "translateX": -0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10849,14 +10744,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"height": "100%",
"width": "100%",
},
- {
- "opacity": 1,
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
/>
@@ -10874,13 +10762,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"left": 0,
},
undefined,
- {
- "transform": [
- {
- "translateX": -0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10891,14 +10773,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"height": "100%",
"width": "100%",
},
- {
- "opacity": 1,
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
/>
@@ -10916,13 +10791,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"left": 0,
},
undefined,
- {
- "transform": [
- {
- "translateX": -0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10933,14 +10802,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"height": "100%",
"width": "100%",
},
- {
- "opacity": 1,
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
/>
@@ -10958,13 +10820,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"left": 0,
},
undefined,
- {
- "transform": [
- {
- "translateX": -0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10975,14 +10831,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"height": "100%",
"width": "100%",
},
- {
- "opacity": 1,
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
/>
@@ -11000,13 +10849,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"left": 0,
},
undefined,
- {
- "transform": [
- {
- "translateX": -0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -11017,14 +10860,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = `
"height": "100%",
"width": "100%",
},
- {
- "opacity": 1,
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
/>
@@ -11274,7 +11110,7 @@ exports[`MessageComposer Toolbar tap mention 1`] = `
borderless={true}
collapsable={false}
delayLongPress={600}
- handlerTag={171}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
hitSlop={
{
@@ -11350,7 +11186,7 @@ exports[`MessageComposer Toolbar tap mention 1`] = `
borderless={true}
collapsable={false}
delayLongPress={600}
- handlerTag={172}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
hitSlop={
{
@@ -11426,7 +11262,7 @@ exports[`MessageComposer Toolbar tap mention 1`] = `
borderless={true}
collapsable={false}
delayLongPress={600}
- handlerTag={173}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
hitSlop={
{
@@ -11502,7 +11338,7 @@ exports[`MessageComposer Toolbar tap mention 1`] = `
borderless={true}
collapsable={false}
delayLongPress={600}
- handlerTag={174}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
hitSlop={
{
@@ -11647,9 +11483,7 @@ exports[`MessageComposer Toolbar tap mention 1`] = `
{
} else if (previousHeight.value === EMOJI_KEYBOARD_FIXED_HEIGHT) {
updateHeight();
}
- runOnJS(setShowEmojiKeyboard)(currentValue);
+ scheduleOnRN(setShowEmojiKeyboard, currentValue);
},
[showEmojiPickerSharedValue]
);
@@ -171,7 +172,7 @@ export const useEmojiKeyboard = () => {
} else if (currentValue === false && showEmojiPickerSharedValue.value === true) {
openEmojiPicker();
}
- runOnJS(setShowEmojiSearchbar)(currentValue);
+ scheduleOnRN(setShowEmojiSearchbar, currentValue);
},
[showEmojiSearchbarSharedValue]
);
diff --git a/app/containers/ReactionsList/__snapshots__/ReactionsList.test.tsx.snap b/app/containers/ReactionsList/__snapshots__/ReactionsList.test.tsx.snap
index 7fbf511b867..46ef94103e7 100644
--- a/app/containers/ReactionsList/__snapshots__/ReactionsList.test.tsx.snap
+++ b/app/containers/ReactionsList/__snapshots__/ReactionsList.test.tsx.snap
@@ -140,7 +140,7 @@ exports[`Story Snapshots: ReactionsListFullName should match snapshot 1`] = `
}
>
LONG_SWIPE && previousTransX <= LONG_SWIPE) {
- runOnJS(triggerHideAnimation)(ACTION_WIDTH);
+ scheduleOnRN(triggerHideAnimation, ACTION_WIDTH);
} else if (previousTransX && currentTransX <= LONG_SWIPE && previousTransX > LONG_SWIPE) {
- runOnJS(triggerHideAnimation)(0);
+ scheduleOnRN(triggerHideAnimation, 0);
}
} else if (previousTransX && currentTransX < -LONG_SWIPE && previousTransX >= -LONG_SWIPE) {
- runOnJS(triggerHideAnimation)(-ACTION_WIDTH);
+ scheduleOnRN(triggerHideAnimation, -ACTION_WIDTH);
} else if (previousTransX && currentTransX >= -LONG_SWIPE && previousTransX < -LONG_SWIPE) {
- runOnJS(triggerHideAnimation)(0);
+ scheduleOnRN(triggerHideAnimation, 0);
}
}
);
diff --git a/app/containers/RoomItem/Touchable.tsx b/app/containers/RoomItem/Touchable.tsx
index 5b3257f14f0..6f88ede833d 100644
--- a/app/containers/RoomItem/Touchable.tsx
+++ b/app/containers/RoomItem/Touchable.tsx
@@ -1,11 +1,12 @@
import React, { useRef, memo } from 'react';
-import Animated, { useSharedValue, useAnimatedStyle, withSpring, runOnJS } from 'react-native-reanimated';
+import Animated, { useSharedValue, useAnimatedStyle, withSpring } from 'react-native-reanimated';
import {
Gesture,
GestureDetector,
type GestureUpdateEvent,
type PanGestureHandlerEventPayload
} from 'react-native-gesture-handler';
+import { scheduleOnRN } from 'react-native-worklets';
import Touch from '../Touch';
import { ACTION_WIDTH, LONG_SWIPE, SMALL_SWIPE } from './styles';
@@ -172,7 +173,7 @@ const Touchable = ({
const longPressGesture = Gesture.LongPress()
.minDuration(500)
.onStart(() => {
- runOnJS(handleLongPress)();
+ scheduleOnRN(handleLongPress);
});
const panGesture = Gesture.Pan()
@@ -184,7 +185,7 @@ const Touchable = ({
if (transX.value > 2 * width) transX.value = 2 * width;
})
.onEnd(event => {
- runOnJS(handleRelease)(event);
+ scheduleOnRN(handleRelease, event);
});
// Use Race instead of Simultaneous to prevent conflicts
diff --git a/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap b/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap
index a04cc71c4f2..8dfa9dd2ec5 100644
--- a/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap
+++ b/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap
@@ -40,13 +40,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -71,7 +65,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={1}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -174,13 +168,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -190,7 +178,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={2}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -276,13 +264,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -292,7 +274,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={3}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -364,22 +346,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -710,7 +678,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={5}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -813,13 +781,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -829,7 +791,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={6}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -915,13 +877,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -931,7 +887,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={7}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -1003,22 +959,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -1390,7 +1332,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={9}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -1493,13 +1435,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -1509,7 +1445,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={10}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -1595,13 +1531,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -1611,7 +1541,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={11}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -1683,22 +1613,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -2070,7 +1986,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={13}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -2173,13 +2089,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -2189,7 +2099,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={14}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -2275,13 +2185,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -2291,7 +2195,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={15}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -2363,22 +2267,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -2750,7 +2640,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={17}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -2853,13 +2743,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -2869,7 +2753,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={18}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -2955,13 +2839,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -2971,7 +2849,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={19}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -3043,22 +2921,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -3430,7 +3294,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={21}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -3533,13 +3397,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -3549,7 +3407,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={22}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -3635,13 +3493,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -3651,7 +3503,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={23}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -3723,22 +3575,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -4110,7 +3948,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={25}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -4213,13 +4051,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -4229,7 +4061,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={26}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -4315,13 +4147,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -4331,7 +4157,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={27}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -4403,22 +4229,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -4790,7 +4602,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={29}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -4893,13 +4705,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -4909,7 +4715,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={30}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -4995,13 +4801,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -5011,7 +4811,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={31}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -5083,22 +4883,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -5470,7 +5256,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={33}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -5573,13 +5359,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -5589,7 +5369,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={34}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -5675,13 +5455,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -5691,7 +5465,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={35}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -5763,22 +5537,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -6150,7 +5910,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={37}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -6253,13 +6013,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -6269,7 +6023,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={38}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -6355,13 +6109,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -6371,7 +6119,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={39}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -6443,22 +6191,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -6830,7 +6564,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={41}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -6933,13 +6667,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -6949,7 +6677,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={42}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -7035,13 +6763,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -7051,7 +6773,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={43}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -7123,22 +6845,14 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = `
@@ -7514,7 +7222,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={67}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -7617,13 +7325,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -7633,7 +7335,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={68}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -7719,13 +7421,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -7735,7 +7431,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={69}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -7807,22 +7503,14 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = `
@@ -8142,7 +7824,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={73}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -8245,13 +7927,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -8261,7 +7937,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={74}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -8347,13 +8023,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -8363,7 +8033,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={75}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -8435,22 +8105,14 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
@@ -8822,7 +8478,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={77}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -8925,13 +8581,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -8941,7 +8591,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={78}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -9027,13 +8677,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -9043,7 +8687,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={79}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -9115,22 +8759,14 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
@@ -9502,7 +9132,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={81}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -9605,13 +9235,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -9621,7 +9245,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={82}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -9707,13 +9331,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -9723,7 +9341,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={83}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -9795,22 +9413,14 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = `
@@ -10167,7 +9771,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={91}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -10270,13 +9874,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10286,7 +9884,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={92}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -10372,13 +9970,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10388,7 +9980,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={93}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -10460,22 +10052,14 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
@@ -10791,7 +10369,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={95}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -10894,13 +10472,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -10910,7 +10482,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={96}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -10996,13 +10568,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -11012,7 +10578,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={97}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -11084,22 +10650,14 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
@@ -11359,7 +10911,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={99}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -11462,13 +11014,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -11478,7 +11024,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={100}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -11564,13 +11110,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -11580,7 +11120,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={101}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -11652,22 +11192,14 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1
@@ -11968,7 +11494,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={109}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -12071,13 +11597,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -12087,7 +11607,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={110}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -12173,13 +11693,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -12189,7 +11703,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={111}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -12261,22 +11775,14 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
@@ -12638,7 +12138,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={113}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -12741,13 +12241,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -12757,7 +12251,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={114}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -12843,13 +12337,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -12859,7 +12347,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={115}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -12931,22 +12419,14 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
@@ -13308,7 +12782,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={117}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -13411,13 +12885,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -13427,7 +12895,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={118}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -13513,13 +12981,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -13529,7 +12991,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={119}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -13601,22 +13063,14 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1`
@@ -13942,7 +13390,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={127}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -14045,13 +13493,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -14061,7 +13503,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={128}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -14147,13 +13589,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -14163,7 +13599,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={129}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -14235,22 +13671,14 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
@@ -14594,7 +14016,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={131}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -14697,13 +14119,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -14713,7 +14129,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={132}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -14799,13 +14215,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
{
"height": 60,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -14815,7 +14225,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={133}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -14887,22 +14297,14 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = `
@@ -15251,7 +14647,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={139}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -15354,13 +14750,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -15370,7 +14760,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={140}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -15456,13 +14846,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -15472,7 +14856,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={141}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -15544,22 +14928,14 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
@@ -15906,7 +15276,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={143}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -16009,13 +15379,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -16025,7 +15389,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={144}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -16111,13 +15475,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -16127,7 +15485,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={145}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -16199,22 +15557,14 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
@@ -16561,7 +15905,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={147}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -16664,13 +16008,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -16680,7 +16018,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={148}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -16766,13 +16104,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -16782,7 +16114,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={149}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -16854,22 +16186,14 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
@@ -17216,7 +16534,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={151}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -17319,13 +16637,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -17335,7 +16647,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={152}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -17421,13 +16733,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -17437,7 +16743,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={153}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -17509,22 +16815,14 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
@@ -17871,7 +17163,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={155}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -17974,13 +17266,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -17990,7 +17276,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={156}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -18076,13 +17362,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -18092,7 +17372,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={157}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -18164,22 +17444,14 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
@@ -18582,7 +17848,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={159}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -18685,13 +17951,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -18701,7 +17961,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={160}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -18787,13 +18047,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -18803,7 +18057,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={161}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -18875,22 +18129,14 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
@@ -19293,7 +18533,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={163}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -19396,13 +18636,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -19412,7 +18646,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={164}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -19498,13 +18732,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -19514,7 +18742,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={165}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -19586,22 +18814,14 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = `
@@ -20009,7 +19223,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={181}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -20112,13 +19326,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -20128,7 +19336,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={182}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -20214,13 +19422,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -20230,7 +19432,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={183}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -20302,22 +19504,14 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
@@ -20633,7 +19821,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={185}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -20736,13 +19924,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -20752,7 +19934,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={186}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -20838,13 +20020,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -20854,7 +20030,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={187}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -20926,22 +20102,14 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
@@ -21257,7 +20419,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={189}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -21360,13 +20522,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -21376,7 +20532,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={190}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -21462,13 +20618,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -21478,7 +20628,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={191}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -21550,22 +20700,14 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
@@ -21881,7 +21017,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={193}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -21984,13 +21120,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -22000,7 +21130,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={194}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -22086,13 +21216,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -22102,7 +21226,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={195}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -22174,22 +21298,14 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
@@ -22505,7 +21615,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={197}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -22608,13 +21718,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -22624,7 +21728,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={198}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -22710,13 +21814,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -22726,7 +21824,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={199}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -22798,22 +21896,14 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
@@ -23129,7 +22213,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={201}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -23232,13 +22316,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -23248,7 +22326,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={202}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -23334,13 +22412,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -23350,7 +22422,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={203}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -23422,22 +22494,14 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
@@ -23753,7 +22811,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={205}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -23856,13 +22914,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -23872,7 +22924,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={206}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -23958,13 +23010,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -23974,7 +23020,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={207}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -24046,22 +23092,14 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
@@ -24377,7 +23409,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={209}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -24480,13 +23512,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -24496,7 +23522,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={210}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -24582,13 +23608,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -24598,7 +23618,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={211}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -24670,22 +23690,14 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
@@ -25001,7 +24007,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={213}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -25104,13 +24110,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -25120,7 +24120,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={214}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -25206,13 +24206,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -25222,7 +24216,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={215}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -25294,22 +24288,14 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
@@ -25625,7 +24605,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={217}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -25728,13 +24708,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -25744,7 +24718,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={218}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -25830,13 +24804,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -25846,7 +24814,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={219}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -25918,22 +24886,14 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = `
@@ -26254,7 +25208,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={241}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -26357,13 +25311,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -26373,7 +25321,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={242}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -26459,13 +25407,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -26475,7 +25417,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={243}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -26547,22 +25489,14 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
@@ -26914,7 +25842,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={245}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -27017,13 +25945,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -27033,7 +25955,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={246}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -27119,13 +26041,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -27135,7 +26051,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={247}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -27207,22 +26123,14 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
@@ -27606,7 +26508,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={249}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -27709,13 +26611,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -27725,7 +26621,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={250}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -27811,13 +26707,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -27827,7 +26717,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={251}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -27899,22 +26789,14 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
@@ -28266,7 +27142,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={253}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -28369,13 +27245,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -28385,7 +27255,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={254}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -28471,13 +27341,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -28487,7 +27351,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={255}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -28559,22 +27423,14 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = `
@@ -28962,7 +27812,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={265}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -29065,13 +27915,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -29081,7 +27925,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={266}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -29167,13 +28011,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -29183,7 +28021,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={267}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -29255,22 +28093,14 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = `
@@ -29590,7 +28414,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={271}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -29693,13 +28517,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -29709,7 +28527,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={272}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -29795,13 +28613,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -29811,7 +28623,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={273}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -29883,22 +28695,14 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
@@ -30221,7 +29019,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={275}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -30324,13 +29122,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -30340,7 +29132,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={276}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -30426,13 +29218,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -30442,7 +29228,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={277}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -30514,22 +29300,14 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
@@ -30845,7 +29617,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={279}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -30948,13 +29720,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -30964,7 +29730,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={280}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -31050,13 +29816,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -31066,7 +29826,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={281}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -31138,22 +29898,14 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
@@ -31469,7 +30215,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={283}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -31572,13 +30318,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -31588,7 +30328,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={284}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -31674,13 +30414,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -31690,7 +30424,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={285}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -31762,22 +30496,14 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
@@ -32093,7 +30813,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={287}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -32196,13 +30916,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -32212,7 +30926,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={288}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -32298,13 +31012,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -32314,7 +31022,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={289}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -32386,22 +31094,14 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
@@ -32717,7 +31411,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={291}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -32820,13 +31514,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -32836,7 +31524,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={292}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -32922,13 +31610,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -32938,7 +31620,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={293}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -33010,22 +31692,14 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
@@ -33341,7 +32009,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={295}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -33444,13 +32112,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -33460,7 +32122,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={296}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -33546,13 +32208,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -33562,7 +32218,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={297}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -33634,22 +32290,14 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
@@ -33965,7 +32607,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={299}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -34068,13 +32710,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -34084,7 +32720,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={300}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -34170,13 +32806,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -34186,7 +32816,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={301}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -34258,22 +32888,14 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
@@ -34589,7 +33205,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={303}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -34692,13 +33308,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -34708,7 +33318,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={304}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -34794,13 +33404,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -34810,7 +33414,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={305}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -34882,22 +33486,14 @@ exports[`Story Snapshots: Type should match snapshot 1`] = `
@@ -35218,7 +33808,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={325}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -35321,13 +33911,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -35337,7 +33921,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={326}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -35423,13 +34007,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -35439,7 +34017,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={327}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -35511,22 +34089,14 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
@@ -35849,7 +34413,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={329}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -35952,13 +34516,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 0,
- },
- ],
- },
+ [Function],
]
}
>
@@ -35968,7 +34526,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={330}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -36054,13 +34612,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
{
"height": 75,
},
- {
- "transform": [
- {
- "translateX": 80,
- },
- ],
- },
+ [Function],
]
}
>
@@ -36070,7 +34622,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={331}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -36142,22 +34694,14 @@ exports[`Story Snapshots: User should match snapshot 1`] = `
;
+ transX: SharedValue;
isRead: boolean;
width: number;
onToggleReadPress(): void;
@@ -19,7 +19,7 @@ export interface ILeftActionsProps {
}
export interface IRightActionsProps {
- transX: Animated.SharedValue;
+ transX: SharedValue;
favorite: boolean;
width: number;
toggleFav(): void;
diff --git a/app/containers/SearchBox/__snapshots__/SearchBox.test.tsx.snap b/app/containers/SearchBox/__snapshots__/SearchBox.test.tsx.snap
index 351aaeaae51..f18a7e94caf 100644
--- a/app/containers/SearchBox/__snapshots__/SearchBox.test.tsx.snap
+++ b/app/containers/SearchBox/__snapshots__/SearchBox.test.tsx.snap
@@ -10,13 +10,13 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = `
testID="searchbox"
>
{
if (I18n.isRTL) {
if (previousTransX && currentTransX > longSwipe && previousTransX <= longSwipe) {
- runOnJS(triggerDeleteAnimation)(actionWidth);
+ scheduleOnRN(triggerDeleteAnimation, actionWidth);
} else if (previousTransX && currentTransX <= longSwipe && previousTransX > longSwipe) {
- runOnJS(triggerDeleteAnimation)(0);
+ scheduleOnRN(triggerDeleteAnimation, 0);
}
} else if (previousTransX && currentTransX < -longSwipe && previousTransX >= -longSwipe) {
- runOnJS(triggerDeleteAnimation)(-actionWidth);
+ scheduleOnRN(triggerDeleteAnimation, -actionWidth);
} else if (previousTransX && currentTransX >= -longSwipe && previousTransX < -longSwipe) {
- runOnJS(triggerDeleteAnimation)(0);
+ scheduleOnRN(triggerDeleteAnimation, 0);
}
}
);
diff --git a/app/containers/ServerItem/SwipeableDeleteItem/Touchable.tsx b/app/containers/ServerItem/SwipeableDeleteItem/Touchable.tsx
index 898187f1129..a9f7b0b7f7f 100644
--- a/app/containers/ServerItem/SwipeableDeleteItem/Touchable.tsx
+++ b/app/containers/ServerItem/SwipeableDeleteItem/Touchable.tsx
@@ -1,5 +1,5 @@
import React, { useRef, memo } from 'react';
-import Animated, { useSharedValue, useAnimatedStyle, withSpring, runOnJS } from 'react-native-reanimated';
+import Animated, { useSharedValue, useAnimatedStyle, withSpring } from 'react-native-reanimated';
import {
Gesture,
GestureDetector,
@@ -7,6 +7,7 @@ import {
type PanGestureHandlerEventPayload
} from 'react-native-gesture-handler';
import { View, type AccessibilityActionEvent } from 'react-native';
+import { scheduleOnRN } from 'react-native-worklets';
import Touch from '../../Touch';
import { DeleteAction } from './Actions';
@@ -174,7 +175,7 @@ const SwipeableDeleteTouchable = ({
}
})
.onEnd(event => {
- runOnJS(handleRelease)(event);
+ scheduleOnRN(handleRelease, event);
});
const animatedStyles = useAnimatedStyle(() => ({
diff --git a/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap b/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap
index d0c4feeeb28..478c1c735ad 100644
--- a/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap
+++ b/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap
@@ -8,7 +8,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = `
collapsable={false}
delayLongPress={600}
enabled={true}
- handlerTag={1}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -76,7 +76,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = `
>
@@ -671,7 +663,7 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={4}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -744,22 +736,14 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = `
@@ -1021,7 +997,7 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = `
activeOpacity={0.105}
collapsable={false}
delayLongPress={600}
- handlerTag={6}
+ handlerTag={-1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onActiveStateChange={[Function]}
@@ -1094,22 +1070,14 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = `
(
/>
);
-const touchable: { [key: string]: React.RefObject | null } = {};
+const touchable: { [key: string]: React.RefObject } = {};
export const Overflow = ({ element, loading, action, parser }: IOverflow) => {
const { theme } = useTheme();
@@ -49,6 +49,12 @@ export const Overflow = ({ element, loading, action, parser }: IOverflow) => {
const blockId = element?.blockId || '';
const [show, onShow] = useState(false);
+ if (!touchable[blockId]) {
+ touchable[blockId] = React.createRef();
+ }
+
+ const touchableRef = touchable[blockId] as React.RefObject;
+
const onOptionPress = ({ value }: any) => {
onShow(false);
action({ value });
@@ -56,20 +62,14 @@ export const Overflow = ({ element, loading, action, parser }: IOverflow) => {
return (
<>
- {
- touchable[blockId] = ref;
- }}
- onPress={() => onShow(!show)}
- hitSlop={BUTTON_HIT_SLOP}
- style={styles.menu}>
+ onShow(!show)} hitSlop={BUTTON_HIT_SLOP} style={styles.menu}>
{!loading ? (
) : (
)}
- onShow(false)}>
+ onShow(false)}>
>
diff --git a/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap b/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap
index 7afc636e519..2d50bedb15b 100644
--- a/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap
+++ b/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap
@@ -6,42 +6,53 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
(
};
const touchableProps = isIOS
? {}
- : { background: TouchableNativeFeedback.Ripple(android_rippleColor ?? colors.surfaceNeutral, false) };
+ : { background: TouchableNativeFeedback.Ripple(android_rippleColor ?? colors.surfaceNeutral, false), useForeground: false };
return (