@momo-kits/foundation 0.92.29-optimize.6 → 0.92.29-optimize.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Application/Components.tsx +4 -12
- package/Application/StackScreen.tsx +19 -4
- package/package.json +45 -45
- package/publish.sh +6 -6
|
@@ -331,17 +331,9 @@ const HeaderToolkitAction: React.FC<any> = ({
|
|
|
331
331
|
);
|
|
332
332
|
};
|
|
333
333
|
|
|
334
|
-
const onMore = () => {
|
|
334
|
+
const onMore = (tools: any[]) => {
|
|
335
335
|
onAction?.('onMore');
|
|
336
|
-
navigator?.maxApi?.dispatchFunction?.(
|
|
337
|
-
'showTools',
|
|
338
|
-
{runtimeTools},
|
|
339
|
-
(res: {item: {action?: string; key: string}}) => {
|
|
340
|
-
const {item} = res;
|
|
341
|
-
navigator?.toolkitCallback?.(item.key);
|
|
342
|
-
getToolkitConfig();
|
|
343
|
-
}
|
|
344
|
-
);
|
|
336
|
+
navigator?.maxApi?.dispatchFunction?.('showToolkit', {tools}, () => {});
|
|
345
337
|
};
|
|
346
338
|
|
|
347
339
|
const onClose = () => {
|
|
@@ -385,7 +377,7 @@ const HeaderToolkitAction: React.FC<any> = ({
|
|
|
385
377
|
onPress={() => {
|
|
386
378
|
navigator?.maxApi?.dispatchFunction?.(
|
|
387
379
|
'onToolAction',
|
|
388
|
-
|
|
380
|
+
{item: pinTool},
|
|
389
381
|
() => {
|
|
390
382
|
getToolkitConfig();
|
|
391
383
|
}
|
|
@@ -409,7 +401,7 @@ const HeaderToolkitAction: React.FC<any> = ({
|
|
|
409
401
|
]}>
|
|
410
402
|
<TouchableOpacity
|
|
411
403
|
accessibilityLabel={'btn_navigation_more'}
|
|
412
|
-
onPress={onMore}>
|
|
404
|
+
onPress={() => onMore(toolConfig?.tools)}>
|
|
413
405
|
<Icon color={tintColor} source="navigation_more_horiz" size={20} />
|
|
414
406
|
</TouchableOpacity>
|
|
415
407
|
<View style={[styles.divider, {backgroundColor: tintColor}]} />
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, {useContext, useEffect, useLayoutEffect, useRef} from 'react';
|
|
2
2
|
import {useHeaderHeight} from '@react-navigation/stack';
|
|
3
|
-
import {InteractionManager, Linking, View} from 'react-native';
|
|
3
|
+
import {Alert, InteractionManager, Linking, View} from 'react-native';
|
|
4
4
|
import {ScreenParams} from './types';
|
|
5
5
|
import Navigation from './Navigation';
|
|
6
6
|
import {ApplicationContext, MiniAppContext, ScreenContext} from './index';
|
|
@@ -146,6 +146,8 @@ const StackScreen: React.FC<ScreenParams> = props => {
|
|
|
146
146
|
}, 5000);
|
|
147
147
|
|
|
148
148
|
return () => {
|
|
149
|
+
clearTimeout(tracked.current.timeoutLoad);
|
|
150
|
+
clearTimeout(tracked.current.timeoutInteraction);
|
|
149
151
|
onScreenLoad();
|
|
150
152
|
onScreenInteraction();
|
|
151
153
|
};
|
|
@@ -155,8 +157,10 @@ const StackScreen: React.FC<ScreenParams> = props => {
|
|
|
155
157
|
* tracking for screen load
|
|
156
158
|
*/
|
|
157
159
|
const onScreenLoad = () => {
|
|
158
|
-
clearTimeout(tracked.current.timeoutLoad);
|
|
159
160
|
if (!tracked.current?.releaseLoad) {
|
|
161
|
+
if (timeLoad.current === 0) {
|
|
162
|
+
timeLoad.current = endTime.current - startTime.current;
|
|
163
|
+
}
|
|
160
164
|
context.autoTracking?.({
|
|
161
165
|
appId: context.appId,
|
|
162
166
|
code: context.code,
|
|
@@ -170,6 +174,9 @@ const StackScreen: React.FC<ScreenParams> = props => {
|
|
|
170
174
|
appId: `auto - ${context.appId}`,
|
|
171
175
|
message: `${screenName} screen_load_time ${timeLoad.current}`,
|
|
172
176
|
});
|
|
177
|
+
if (timeLoad.current === 0 && context.enableAutoId) {
|
|
178
|
+
Alert.alert(screenName, "Can't get screen load time");
|
|
179
|
+
}
|
|
173
180
|
tracked.current.releaseLoad = true;
|
|
174
181
|
}
|
|
175
182
|
};
|
|
@@ -178,8 +185,10 @@ const StackScreen: React.FC<ScreenParams> = props => {
|
|
|
178
185
|
* tracking for screen load
|
|
179
186
|
*/
|
|
180
187
|
const onScreenInteraction = () => {
|
|
181
|
-
clearTimeout(tracked.current.timeoutInteraction);
|
|
182
188
|
if (!tracked.current?.releaseInteraction) {
|
|
189
|
+
if (timeLoad.current === 0) {
|
|
190
|
+
timeLoad.current = endTime.current - startTime.current;
|
|
191
|
+
}
|
|
183
192
|
context.autoTracking?.({
|
|
184
193
|
appId: context.appId,
|
|
185
194
|
code: context.code,
|
|
@@ -194,6 +203,12 @@ const StackScreen: React.FC<ScreenParams> = props => {
|
|
|
194
203
|
appId: `auto - ${context.appId}`,
|
|
195
204
|
message: `${screenName} screen_interaction_time ${timeInteraction.current}`,
|
|
196
205
|
});
|
|
206
|
+
if (
|
|
207
|
+
timeInteraction.current - timeLoad.current <= 0 &&
|
|
208
|
+
context.enableAutoId
|
|
209
|
+
) {
|
|
210
|
+
Alert.alert(screenName, "Can't get screen interaction time");
|
|
211
|
+
}
|
|
197
212
|
tracked.current.releaseInteraction = true;
|
|
198
213
|
}
|
|
199
214
|
};
|
|
@@ -203,12 +218,12 @@ const StackScreen: React.FC<ScreenParams> = props => {
|
|
|
203
218
|
value={{
|
|
204
219
|
screenName,
|
|
205
220
|
onElementLoad: () => {
|
|
221
|
+
clearTimeout(timeoutLoad.current);
|
|
206
222
|
endTime.current = Date.now();
|
|
207
223
|
interaction.current?.cancel?.();
|
|
208
224
|
interaction.current = InteractionManager.runAfterInteractions(() => {
|
|
209
225
|
timeInteraction.current = Date.now() - startTime.current;
|
|
210
226
|
});
|
|
211
|
-
clearTimeout(timeoutLoad.current);
|
|
212
227
|
timeoutLoad.current = setTimeout(() => {
|
|
213
228
|
if (timeLoad.current === 0) {
|
|
214
229
|
timeLoad.current = endTime.current - startTime.current;
|
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
}
|
|
2
|
+
"name": "@momo-kits/foundation",
|
|
3
|
+
"version": "0.92.29-optimize.8",
|
|
4
|
+
"description": "React Native Component Kits",
|
|
5
|
+
"main": "index.ts",
|
|
6
|
+
"scripts": {},
|
|
7
|
+
"keywords": [
|
|
8
|
+
"@momo-kits/foundation"
|
|
9
|
+
],
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@gorhom/bottom-sheet": "2.4.1",
|
|
12
|
+
"react-native-safe-area-context": "3.1.4",
|
|
13
|
+
"react-native-linear-gradient": "2.8.3",
|
|
14
|
+
"react-native-gesture-handler": "1.10.3",
|
|
15
|
+
"react-native-modalize": "2.1.1",
|
|
16
|
+
"react-native-fast-image": "8.1.5",
|
|
17
|
+
"@react-navigation/bottom-tabs": "https://oauth2:5WXQLHPMxxCyvGt_Py4D@gitlab.mservice.com.vn/momo-platform/react-native-bottom-tabs.git",
|
|
18
|
+
"@react-navigation/core": "5.16.1",
|
|
19
|
+
"@react-navigation/native": "5.9.8",
|
|
20
|
+
"@react-navigation/routers": "5.7.4",
|
|
21
|
+
"lottie-react-native": "git+https://gitlab.mservice.com.vn/momo-platform/momo-lottie-react-native.git",
|
|
22
|
+
"@react-navigation/stack": "https://oauth2:eX-jVhzQdLc343AjD3Sc@gitlab.mservice.com.vn/momo-platform/react-navigation-stack.git"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"react-native": "*"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@babel/core": "^7.12.9",
|
|
29
|
+
"@babel/runtime": "^7.12.5",
|
|
30
|
+
"@react-native-community/eslint-config": "^2.0.0",
|
|
31
|
+
"@types/jest": "26.0.23",
|
|
32
|
+
"@types/react-native": "0.64.4",
|
|
33
|
+
"@types/react-test-renderer": "16.9.2",
|
|
34
|
+
"@types/d3-shape": "1.3.7",
|
|
35
|
+
"babel-jest": "^26.6.3",
|
|
36
|
+
"eslint": "^7.14.0",
|
|
37
|
+
"jest": "^26.6.3",
|
|
38
|
+
"metro-react-native-babel-preset": "^0.64.0",
|
|
39
|
+
"react-test-renderer": "17.0.1",
|
|
40
|
+
"typescript": "^4.0.3",
|
|
41
|
+
"@momo-platform/versions": "4.1.11",
|
|
42
|
+
"react-scanner": "^1.1.0"
|
|
43
|
+
},
|
|
44
|
+
"author": "@momo-kits/foundation",
|
|
45
|
+
"license": "ISC"
|
|
46
|
+
}
|
package/publish.sh
CHANGED
|
@@ -7,16 +7,16 @@ rsync -r --exclude=/dist ./* dist
|
|
|
7
7
|
cd dist
|
|
8
8
|
|
|
9
9
|
if [ "$1" == "stable" ]; then
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
# npm version $(npm view @momo-kits/foundation@stable version)
|
|
11
|
+
# npm version patch
|
|
12
12
|
npm publish --tag stable --access=public
|
|
13
13
|
elif [ "$1" == "latest" ]; then
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
# npm version $(npm view @momo-kits/foundation@latest version)
|
|
15
|
+
# npm version prerelease --preid=rc
|
|
16
16
|
npm publish --tag latest --access=public
|
|
17
17
|
else
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
# npm version $(npm view @momo-kits/foundation@beta version)
|
|
19
|
+
# npm version prerelease --preid=beta
|
|
20
20
|
npm publish --tag beta --access=public
|
|
21
21
|
fi
|
|
22
22
|
|