@eohjsc/react-native-smart-city 0.3.25 → 0.3.28

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.
Files changed (92) hide show
  1. package/index.js +2 -0
  2. package/package.json +1 -1
  3. package/src/Images/Common/device_icon.png +0 -0
  4. package/src/Images/DevMode/gateway.png +0 -0
  5. package/src/Images/DevMode/gateway@2x.png +0 -0
  6. package/src/Images/DevMode/gateway@3x.png +0 -0
  7. package/src/Images/DevMode/menu.png +0 -0
  8. package/src/Images/DevMode/menu@2x.png +0 -0
  9. package/src/Images/DevMode/menu@3x.png +0 -0
  10. package/src/Images/DevMode/search.png +0 -0
  11. package/src/Images/DevMode/search@2x.png +0 -0
  12. package/src/Images/DevMode/search@3x.png +0 -0
  13. package/src/Images/DevMode/smart.png +0 -0
  14. package/src/Images/DevMode/smart@2x.png +0 -0
  15. package/src/Images/DevMode/smart@3x.png +0 -0
  16. package/src/Images/DevMode/template.png +0 -0
  17. package/src/Images/DevMode/template@2x.png +0 -0
  18. package/src/Images/DevMode/template@3x.png +0 -0
  19. package/src/commons/ActionGroup/SliderRangeTemplate.js +7 -7
  20. package/src/commons/CameraDevice/index.js +1 -2
  21. package/src/commons/ConnectingProcess/DeviceItem/DeviceItem.js +20 -12
  22. package/src/commons/ConnectingProcess/DeviceItem/DeviceItemStyles.js +2 -0
  23. package/src/commons/ConnectingProcess/__test__/DeviceItem.test.js +1 -1
  24. package/src/commons/ConnectingProcess/index.js +11 -0
  25. package/src/commons/Dashboard/MyUnit/__test__/MyUnit.test.js +55 -5
  26. package/src/commons/Dashboard/MyUnit/index.js +59 -12
  27. package/src/commons/DevMode/Label.js +10 -0
  28. package/src/commons/DevMode/Search.js +20 -0
  29. package/src/commons/DevMode/Styles/LabelStyles.js +8 -0
  30. package/src/commons/DevMode/Styles/SearchStyles.js +21 -0
  31. package/src/commons/DevMode/index.js +3 -0
  32. package/src/commons/Form/TextInput.js +4 -0
  33. package/src/commons/MediaPlayerDetail/index.js +0 -20
  34. package/src/commons/MenuActionMore/index.js +1 -3
  35. package/src/commons/Modal/index.js +1 -2
  36. package/src/commons/Popover/index.js +26 -0
  37. package/src/commons/Tabbar/Styles/indexStyles.js +51 -0
  38. package/src/commons/Tabbar/index.js +110 -0
  39. package/src/configs/Colors.js +4 -0
  40. package/src/configs/Images.js +6 -0
  41. package/src/context/actionType.ts +2 -0
  42. package/src/context/reducer.ts +10 -0
  43. package/src/hooks/Common/useGGHomeDeviceConnected.js +9 -2
  44. package/src/hooks/Common/usePopover.js +0 -8
  45. package/src/hooks/IoT/useGGHomeConnection.js +0 -1
  46. package/src/navigations/GatewayStack.js +23 -0
  47. package/src/navigations/Main.js +144 -0
  48. package/src/navigations/SmartStack.js +23 -0
  49. package/src/navigations/TemplateStack.js +23 -0
  50. package/src/navigations/UnitStack.js +10 -2
  51. package/src/screens/AllCamera/__test__/index.test.js +1 -8
  52. package/src/screens/AllCamera/index.js +0 -13
  53. package/src/screens/Device/hooks/__test__/useEmergencyButton.test.js +37 -0
  54. package/src/screens/Drawer/Drawer.test.js +24 -0
  55. package/src/screens/Drawer/index.js +198 -0
  56. package/src/screens/Gateway/__test__/index.test.js +16 -0
  57. package/src/screens/Gateway/index.js +8 -0
  58. package/src/screens/GuestInfo/index.js +11 -4
  59. package/src/screens/GuestInfo/styles/indexStyles.js +7 -0
  60. package/src/screens/ManageAccess/index.js +14 -5
  61. package/src/screens/ManageAccess/styles/ManageAccessStyles.js +9 -0
  62. package/src/screens/ScriptDetail/__test__/index.test.js +0 -3
  63. package/src/screens/ScriptDetail/index.js +7 -10
  64. package/src/screens/Smart/__test__/index.test.js +16 -0
  65. package/src/screens/Smart/index.js +8 -0
  66. package/src/screens/SubUnit/AddSubUnit.js +1 -1
  67. package/src/screens/SubUnit/EditSubUnit.js +4 -1
  68. package/src/screens/Template/Styles/indexStyles.js +51 -0
  69. package/src/screens/Template/__test__/index.test.js +16 -0
  70. package/src/screens/Template/index.js +84 -0
  71. package/src/screens/Unit/Detail.js +5 -27
  72. package/src/screens/Unit/SmartAccount.js +7 -6
  73. package/src/screens/Unit/Station/__test__/index.test.js +41 -0
  74. package/src/screens/Unit/Summaries.js +8 -1
  75. package/src/screens/Unit/__test__/Detail.test.js +1 -5
  76. package/src/screens/Unit/components/Header/index.js +1 -1
  77. package/src/screens/Unit/components/MyUnitDevice/index.js +29 -12
  78. package/src/screens/Unit/components/__test__/Header.test.js +1 -1
  79. package/src/screens/Unit/components/__test__/MyUnitDevice.test.js +2 -2
  80. package/src/screens/Unit/hook/useUnitConnectRemoteDevices.js +6 -5
  81. package/src/utils/Converter/__test__/timer.test.js +99 -0
  82. package/src/utils/Functions/Search.js +17 -0
  83. package/src/utils/Functions/ShortEmail.js +4 -0
  84. package/src/utils/Functions/__test__/Search.test.js +6 -0
  85. package/src/utils/Functions/__test__/ShortEmail.test.js +6 -0
  86. package/src/utils/I18n/translations/en.json +11 -1
  87. package/src/utils/I18n/translations/vi.json +11 -1
  88. package/src/utils/Route/index.js +6 -0
  89. package/src/commons/Modal/ModalFullVideo.js +0 -48
  90. package/src/commons/Modal/Styles/ModalFullVideoStyles.js +0 -26
  91. package/src/screens/Unit/components/MyUnit/index.js +0 -136
  92. package/src/screens/Unit/components/__test__/MyUnit.test.js +0 -35
package/index.js CHANGED
@@ -19,6 +19,7 @@ import MyUnit from './src/commons/Dashboard/MyUnit';
19
19
  import SharedUnit from './src/commons/Unit/SharedUnit';
20
20
  import { Action } from './src/context/actionType';
21
21
  import { withRemoteControl } from './src/hoc';
22
+ import DevModeStack from './src/navigations/Main';
22
23
 
23
24
  export {
24
25
  AddSubUnitStack,
@@ -44,4 +45,5 @@ export {
44
45
  SCWrapper,
45
46
  Action,
46
47
  withRemoteControl,
48
+ DevModeStack,
47
49
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eohjsc/react-native-smart-city",
3
3
  "title": "React Native Smart Home",
4
- "version": "0.3.25",
4
+ "version": "0.3.28",
5
5
  "description": "TODO",
6
6
  "main": "index.js",
7
7
  "files": [
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -12,11 +12,11 @@ const SliderRangeTemplate = memo(({ actionGroup, doAction, sensor }) => {
12
12
  const t = useTranslations();
13
13
  const { configuration } = actionGroup;
14
14
  const [valueBrightness, setValueBrightness] = useState(0);
15
+ const [valueBrightnessTemp, setValueBrightnessTemp] = useState(0);
15
16
  const [configValues] = useConfigGlobalState('configValues');
16
17
 
17
18
  const onChangeBrightness = useCallback(
18
19
  (value) => {
19
- setValueBrightness(value);
20
20
  doAction(
21
21
  configuration?.action_brightness_data,
22
22
  JSON.stringify({ value_brness: value })
@@ -26,17 +26,17 @@ const SliderRangeTemplate = memo(({ actionGroup, doAction, sensor }) => {
26
26
  );
27
27
 
28
28
  const percentBrightness = useMemo(() => {
29
- return valueBrightness || 0;
30
- }, [valueBrightness]);
29
+ return valueBrightnessTemp || valueBrightness || 0;
30
+ }, [valueBrightness, valueBrightnessTemp]);
31
31
 
32
32
  useEffect(() => {
33
33
  const { config } = configuration;
34
34
  const configValue = configValues[config];
35
35
  let valueBrness = configValue?.value;
36
- if (valueBrness >= 0) {
36
+ if (valueBrness >= 0 && valueBrightness >= 0) {
37
37
  setValueBrightness(valueBrness);
38
38
  }
39
- }, [configuration.config, configValues, configuration]);
39
+ }, [configuration.config, configValues, configuration, valueBrightness]);
40
40
 
41
41
  return (
42
42
  <View style={styles.viewBrightness}>
@@ -49,9 +49,9 @@ const SliderRangeTemplate = memo(({ actionGroup, doAction, sensor }) => {
49
49
  <View style={styles.RightBrightness}>
50
50
  <View style={styles.slider}>
51
51
  <SliderRange
52
- value={valueBrightness}
52
+ value={valueBrightnessTemp}
53
53
  onSlidingComplete={onChangeBrightness}
54
- onValueChange={setValueBrightness}
54
+ onValueChange={setValueBrightnessTemp}
55
55
  step={1}
56
56
  minimumValue={0}
57
57
  maximumValue={100}
@@ -17,7 +17,7 @@ const { standardizeWidth, standardizeHeight } = standardizeCameraScreenSize(
17
17
  Device.screenWidth - 32
18
18
  );
19
19
 
20
- const CameraDevice = ({ station, handleFullScreen, goToPlayBack }) => {
20
+ const CameraDevice = ({ station, goToPlayBack }) => {
21
21
  const t = useTranslations();
22
22
  const { navigate } = useNavigation();
23
23
  const { setAction } = useContext(SCContext);
@@ -62,7 +62,6 @@ const CameraDevice = ({ station, handleFullScreen, goToPlayBack }) => {
62
62
  }}
63
63
  key={`camera-device-${device.id}`}
64
64
  cameraName={device.configuration.name}
65
- handleFullScreen={handleFullScreen}
66
65
  goToPlayBack={goToPlayBack(device, { uri: station?.background })}
67
66
  width={standardizeWidth}
68
67
  height={standardizeHeight}
@@ -3,18 +3,26 @@ import { View } from 'react-native';
3
3
  import styles from './DeviceItemStyles';
4
4
  import FImage from '../../FImage';
5
5
  import _TextInput from '../../Form/TextInput';
6
+ import Images from '../../../configs/Images';
6
7
 
7
- const DeviceItem = memo(({ icon, name, setNewName }) => {
8
- return (
9
- <View style={styles.container}>
10
- {!!icon && <FImage source={{ uri: icon }} style={styles.iconSensor} />}
11
- <_TextInput
12
- value={name}
13
- textInputStyle={styles.textItem}
14
- onChange={setNewName}
15
- />
16
- </View>
17
- );
18
- });
8
+ const DeviceItem = memo(
9
+ ({ icon, name, setNewName, handleSelectionChange, isSelection }) => {
10
+ return (
11
+ <View style={styles.container}>
12
+ <FImage
13
+ source={icon ? { uri: icon } : Images.deviceIcon}
14
+ style={styles.iconSensor}
15
+ />
16
+ <_TextInput
17
+ value={name}
18
+ textInputStyle={styles.textItem}
19
+ onChange={setNewName}
20
+ selection={isSelection && { start: 0, end: 0 }}
21
+ onSelectionChange={handleSelectionChange}
22
+ />
23
+ </View>
24
+ );
25
+ }
26
+ );
19
27
 
20
28
  export default DeviceItem;
@@ -20,6 +20,8 @@ export default StyleSheet.create({
20
20
  elevation: 6,
21
21
  paddingLeft: 30,
22
22
  paddingRight: 30,
23
+ display: 'flex',
24
+ alignItems: 'center',
23
25
  },
24
26
  iconSensor: {
25
27
  width: 32,
@@ -13,7 +13,7 @@ describe('Test DeviceItem button', () => {
13
13
  const instance = tree.root;
14
14
  const image = instance.findAllByType(FImage);
15
15
  const text = instance.findAllByType(_TextInput);
16
- expect(image).toHaveLength(0);
16
+ expect(image).toHaveLength(1);
17
17
  expect(text).toHaveLength(1);
18
18
  });
19
19
  });
@@ -20,6 +20,8 @@ const ConnectingSuccess = ({
20
20
  unit_name,
21
21
  newName,
22
22
  setNewName,
23
+ isSelection,
24
+ handleSelectionChange,
23
25
  }) => {
24
26
  const t = useTranslations();
25
27
  return (
@@ -37,6 +39,8 @@ const ConnectingSuccess = ({
37
39
  icon={sensor?.icon_kit}
38
40
  name={newName}
39
41
  setNewName={setNewName}
42
+ handleSelectionChange={handleSelectionChange}
43
+ isSelection={isSelection}
40
44
  />
41
45
  </View>
42
46
  );
@@ -61,6 +65,7 @@ const ConnectingProcess = ({ route }) => {
61
65
  const [sensor, setSensor] = useState(null);
62
66
  const user = useSCContextSelector((state) => state?.auth?.account?.user);
63
67
  const [newName, setNewName] = useState('');
68
+ const [isSelection, setIsSelection] = useState(true);
64
69
 
65
70
  const connectingDevice = useCallback(async () => {
66
71
  setIsLoading(true);
@@ -166,6 +171,10 @@ const ConnectingProcess = ({ route }) => {
166
171
  unit_id,
167
172
  ]);
168
173
 
174
+ const handleSelectionChange = useCallback(() => {
175
+ setIsSelection(false);
176
+ }, []);
177
+
169
178
  useEffect(() => {
170
179
  connectingDevice();
171
180
  }, [connectingDevice]);
@@ -185,6 +194,8 @@ const ConnectingProcess = ({ route }) => {
185
194
  unit_name={unit_name}
186
195
  newName={newName}
187
196
  setNewName={setNewName}
197
+ isSelection={isSelection}
198
+ handleSelectionChange={handleSelectionChange}
188
199
  />
189
200
  )}
190
201
  </View>
@@ -1,12 +1,17 @@
1
1
  import React from 'react';
2
2
  import renderer, { act } from 'react-test-renderer';
3
+ import MockAdapter from 'axios-mock-adapter';
3
4
  import MyUnit from '..';
5
+ import MyUnitDevice from '../../../../screens/Unit/components/MyUnitDevice';
4
6
  import { TESTID } from '../../../../configs/Constants';
5
7
  import { SCProvider } from '../../../../context';
6
8
  import { mockSCStore } from '../../../../context/mockStore';
9
+ import api from '../../../../utils/Apis/axios';
10
+ import { API } from '../../../../configs';
11
+
12
+ const mock = new MockAdapter(api.axiosInstance);
7
13
 
8
14
  const mockedNavigate = jest.fn();
9
- const mockUseIsFocused = jest.fn();
10
15
  const mockedDispatch = jest.fn();
11
16
 
12
17
  jest.mock('@react-navigation/native', () => {
@@ -15,9 +20,8 @@ jest.mock('@react-navigation/native', () => {
15
20
  useNavigation: () => ({
16
21
  navigate: mockedNavigate,
17
22
  }),
18
- useIsFocused: () => ({
19
- isFocused: mockUseIsFocused,
20
- }),
23
+ useIsFocused: () => true,
24
+ useFocusEffect: jest.fn(),
21
25
  };
22
26
  });
23
27
 
@@ -34,6 +38,42 @@ const wrapComponent = () => (
34
38
 
35
39
  describe('Test MyUnit', () => {
36
40
  let tree;
41
+ let data = [
42
+ {
43
+ id: 1,
44
+ name: 'name',
45
+ background: 'background',
46
+ abstract_devices: [
47
+ {
48
+ id: 1,
49
+ name: 'device',
50
+ is_managed_by_backend: true,
51
+ device_type: 'GOOGLE_HOME',
52
+ station_name: 'name',
53
+ },
54
+ {
55
+ id: 2,
56
+ name: 'device',
57
+ is_managed_by_backend: true,
58
+ device_type: '',
59
+ station_name: 'name',
60
+ quick_action: {
61
+ config_id: 1,
62
+ },
63
+ },
64
+ ],
65
+ },
66
+ {
67
+ id: 2,
68
+ name: 'name2',
69
+ background: 'background',
70
+ },
71
+ ];
72
+
73
+ beforeEach(() => {
74
+ mock.resetHistory();
75
+ });
76
+
37
77
  const getElement = (instance) => {
38
78
  const goToDetail = instance.findAll(
39
79
  (item) => item.props.testID === TESTID.MY_UNIT_GO_TO_DETAIL
@@ -44,7 +84,7 @@ describe('Test MyUnit', () => {
44
84
  return { goToDetail, textNoUnit };
45
85
  };
46
86
 
47
- test('create MyUnit no Unit', async () => {
87
+ test('MyUnit no Unit', async () => {
48
88
  await act(async () => {
49
89
  tree = await renderer.create(wrapComponent());
50
90
  });
@@ -52,4 +92,14 @@ describe('Test MyUnit', () => {
52
92
  const { textNoUnit } = getElement(instance);
53
93
  expect(textNoUnit[0]).toBeDefined();
54
94
  });
95
+
96
+ test('MyUnit with unit', async () => {
97
+ mock.onGet(API.UNIT.MY_UNITS()).replyOnce(200, data);
98
+ await act(async () => {
99
+ tree = await renderer.create(wrapComponent());
100
+ });
101
+ const instance = tree.root;
102
+ const devices = instance.findAllByType(MyUnitDevice);
103
+ expect(devices).toHaveLength(2);
104
+ });
55
105
  });
@@ -1,5 +1,18 @@
1
- import React, { memo, useCallback, useEffect, useState } from 'react';
1
+ import React, {
2
+ memo,
3
+ useCallback,
4
+ useEffect,
5
+ useState,
6
+ useContext,
7
+ useMemo,
8
+ } from 'react';
2
9
  import { View, Image, TouchableOpacity, Dimensions } from 'react-native';
10
+ import {
11
+ useNavigation,
12
+ useIsFocused,
13
+ useFocusEffect,
14
+ } from '@react-navigation/native';
15
+ import NetInfo from '@react-native-community/netinfo';
3
16
  import { API, Colors, Images } from '../../../configs';
4
17
  import Text from '../../Text';
5
18
  import { fetchWithCache } from '../../../utils/Apis/axios';
@@ -7,10 +20,13 @@ import { fetchWithCache } from '../../../utils/Apis/axios';
7
20
  import styles from './styles';
8
21
  import { Section } from '../../Section';
9
22
  import { useTranslations } from '../../../hooks/Common/useTranslations';
10
- import { useNavigation, useIsFocused } from '@react-navigation/native';
23
+ import { useUnitConnectRemoteDevices } from '../../../screens/Unit/hook/useUnitConnectRemoteDevices';
24
+ import { useWatchConfigs } from '../../../hooks/IoT';
25
+ import { SCContext } from '../../../context';
26
+ import { Action } from '../../../context/actionType';
11
27
 
12
28
  import Carousel from 'react-native-snap-carousel';
13
- import { TESTID } from '../../../configs/Constants';
29
+ import { TESTID, DEVICE_TYPE } from '../../../configs/Constants';
14
30
  import Routes from '../../../utils/Route';
15
31
  import MyUnitDevice from '../../../screens/Unit/components/MyUnitDevice';
16
32
 
@@ -20,21 +36,49 @@ const MyUnit = () => {
20
36
  const isFocused = useIsFocused();
21
37
  const navigation = useNavigation();
22
38
  const [myUnits, setMyUnits] = useState([]);
39
+ const [slideIndex, setSlideIndex] = useState(0);
40
+ const { setAction } = useContext(SCContext);
23
41
 
24
42
  const fetchMyUnitDashboard = useCallback(async () => {
25
43
  await fetchWithCache(API.UNIT.MY_UNITS(), {}, (response) => {
26
44
  const { success, data } = response;
27
- if (success) {
28
- setMyUnits(data);
29
- }
45
+ success && setMyUnits(data);
30
46
  });
31
47
  }, [setMyUnits]);
32
48
 
33
49
  useEffect(() => {
34
- if (isFocused) {
35
- fetchMyUnitDashboard();
36
- }
50
+ isFocused && fetchMyUnitDashboard();
37
51
  }, [fetchMyUnitDashboard, isFocused]);
52
+
53
+ useFocusEffect(
54
+ useCallback(() => {
55
+ const unsubscribe = NetInfo.addEventListener((state) => {
56
+ setAction(Action.SET_NETWORK_CONNECTED, state.isConnected);
57
+ });
58
+ return () => unsubscribe();
59
+ // eslint-disable-next-line react-hooks/exhaustive-deps
60
+ }, [])
61
+ );
62
+
63
+ useUnitConnectRemoteDevices(myUnits[slideIndex]);
64
+
65
+ const configsNeedWatching = useMemo(() => {
66
+ const configIds = [];
67
+ myUnits.forEach((unit) => {
68
+ (unit?.abstract_devices || []).forEach((device) => {
69
+ if (
70
+ device?.quick_action?.config_id &&
71
+ device?.device_type !== DEVICE_TYPE.GOOGLE_HOME
72
+ ) {
73
+ configIds.push(device.quick_action.config_id);
74
+ }
75
+ });
76
+ });
77
+ return configIds;
78
+ }, [myUnits]);
79
+
80
+ useWatchConfigs(configsNeedWatching);
81
+
38
82
  const goToDetail = useCallback(
39
83
  (item) => {
40
84
  navigation.navigate(Routes.UnitStack, {
@@ -47,6 +91,7 @@ const MyUnit = () => {
47
91
  },
48
92
  [navigation]
49
93
  );
94
+
50
95
  const _renderItem = useCallback(
51
96
  ({ item, index }) => {
52
97
  const paddingLeft = index === 0 ? 0 : 8;
@@ -73,14 +118,15 @@ const MyUnit = () => {
73
118
  />
74
119
  <Text style={styles.title}>{item.name}</Text>
75
120
  </TouchableOpacity>
76
- {item.abstract_sensors.map((sensor, indexSensor) => (
77
- <MyUnitDevice key={indexSensor} sensor={sensor} unit={item} />
121
+ {(item?.abstract_devices || []).map((device, indexDevice) => (
122
+ <MyUnitDevice key={indexDevice} device={device} unit={item} />
78
123
  ))}
79
124
  </View>
80
125
  );
81
126
  },
82
- [myUnits.length, goToDetail]
127
+ [myUnits, goToDetail]
83
128
  );
129
+
84
130
  return (
85
131
  <>
86
132
  <Section style={styles.boxTxtMyUnit}>
@@ -96,6 +142,7 @@ const MyUnit = () => {
96
142
  itemWidth={screenWidth - 32}
97
143
  renderItem={_renderItem}
98
144
  inactiveSlideScale={1}
145
+ onSnapToItem={setSlideIndex}
99
146
  />
100
147
  ) : (
101
148
  <View>
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { memo } from 'react';
3
+ import Text from '../Text';
4
+ import styles from './Styles/LabelStyles';
5
+
6
+ const Label = ({ name = '', style }) => {
7
+ return <Text style={[styles.label, style]}>{name}</Text>;
8
+ };
9
+
10
+ export default memo(Label);
@@ -0,0 +1,20 @@
1
+ import React, { memo } from 'react';
2
+ import { View, Image, TextInput } from 'react-native';
3
+ import { Images } from '../../configs';
4
+ import t from '../../hooks/Common/useTranslations';
5
+ import styles from './Styles/SearchStyles';
6
+
7
+ const Search = ({ onSearch }) => {
8
+ return (
9
+ <View style={styles.wrap}>
10
+ <Image source={Images.search} style={styles.icon} />
11
+ <TextInput
12
+ style={styles.textInput}
13
+ placeholder={t('what_are_you_looking_for')}
14
+ onChangeText={onSearch}
15
+ />
16
+ </View>
17
+ );
18
+ };
19
+
20
+ export default memo(Search);
@@ -0,0 +1,8 @@
1
+ import { StyleSheet } from 'react-native';
2
+
3
+ export default StyleSheet.create({
4
+ label: {
5
+ fontSize: 28,
6
+ fontWeight: 'bold',
7
+ },
8
+ });
@@ -0,0 +1,21 @@
1
+ import { StyleSheet } from 'react-native';
2
+ import { Colors } from '../../../configs';
3
+
4
+ export default StyleSheet.create({
5
+ wrap: {
6
+ borderRadius: 6,
7
+ borderWidth: 1,
8
+ borderColor: Colors.Neutral.Neutral3,
9
+ width: '100%',
10
+ flexDirection: 'row',
11
+ alignItems: 'center',
12
+ paddingHorizontal: 10,
13
+ marginVertical: 16,
14
+ },
15
+ icon: {},
16
+ textInput: {
17
+ flex: 1,
18
+ height: 36,
19
+ marginLeft: 5,
20
+ },
21
+ });
@@ -0,0 +1,3 @@
1
+ import Label from './Label';
2
+
3
+ export { Label };
@@ -27,6 +27,8 @@ const _TextInput = ({
27
27
  selectionColor,
28
28
  borderBottomOnly,
29
29
  testID,
30
+ selection,
31
+ onSelectionChange,
30
32
  }) => {
31
33
  const errorStyle = !!errorText && styles.errorWrap;
32
34
  return (
@@ -64,6 +66,8 @@ const _TextInput = ({
64
66
  multiline={multiline}
65
67
  selectionColor={selectionColor}
66
68
  {...(value ? { value } : {})}
69
+ selection={selection}
70
+ onSelectionChange={onSelectionChange}
67
71
  />
68
72
  {extraText && extraText}
69
73
  {!!errorText && <Text style={styles.errorText}>{errorText}</Text>}
@@ -7,7 +7,6 @@ import React, {
7
7
  useMemo,
8
8
  } from 'react';
9
9
  import {
10
- Image,
11
10
  View,
12
11
  StyleSheet,
13
12
  Text,
@@ -34,10 +33,8 @@ const MediaPlayerDetail = ({
34
33
  style,
35
34
  wrapStyles,
36
35
  amount,
37
- handleFullScreen,
38
36
  isPaused = true,
39
37
  goToPlayBack,
40
- isShowFullScreenIcon = false,
41
38
  width,
42
39
  height,
43
40
  }) => {
@@ -61,11 +58,6 @@ const MediaPlayerDetail = ({
61
58
  // eslint-disable-next-line react-hooks/exhaustive-deps
62
59
  }, [paused]);
63
60
 
64
- const onFullScreen = useCallback(() => {
65
- handleFullScreen && handleFullScreen({ uri, cameraName, thumbnail });
66
- // eslint-disable-next-line react-hooks/exhaustive-deps
67
- }, []);
68
-
69
61
  const getWidthHeight = useCallback(() => {
70
62
  let newWidth = 0,
71
63
  newHeight = 0;
@@ -207,18 +199,6 @@ const MediaPlayerDetail = ({
207
199
  {cameraName}
208
200
  </Text>
209
201
  )}
210
- {isShowFullScreenIcon && (
211
- <TouchableOpacity
212
- onPress={onFullScreen}
213
- style={[
214
- styles.iconFullScreen,
215
- (amount === 4 || amount === 6) && styles.iconFullScreen2,
216
- ]}
217
- testID={TESTID.SUB_UNIT_FULL_CAMERA}
218
- >
219
- <Image source={Images.fullscreen} />
220
- </TouchableOpacity>
221
- )}
222
202
  </View>
223
203
  );
224
204
  };
@@ -1,6 +1,6 @@
1
1
  import React, { memo, useCallback, useEffect, useState } from 'react';
2
2
  import { TouchableOpacity, ScrollView } from 'react-native';
3
- import Popover from 'react-native-popover-view';
3
+ import Popover from '../Popover';
4
4
 
5
5
  import styles from './MenuActionMoreStyles';
6
6
  import Text from '../Text';
@@ -12,7 +12,6 @@ const MenuActionMore = memo(
12
12
  ({
13
13
  isVisible,
14
14
  hideMore,
15
- hideComplete,
16
15
  listMenuItem,
17
16
  childRef,
18
17
  onItemClick,
@@ -46,7 +45,6 @@ const MenuActionMore = memo(
46
45
  placement="bottom"
47
46
  from={childRef}
48
47
  onRequestClose={hideMore}
49
- onCloseComplete={hideComplete}
50
48
  isVisible={isVisible}
51
49
  arrowStyle={styles.wrap}
52
50
  >
@@ -1,5 +1,4 @@
1
1
  import ModalCustom from './ModalCustom';
2
- import ModalFullVideo from './ModalFullVideo';
3
2
  import ModalBottom from './ModalBottom';
4
3
 
5
- export { ModalCustom, ModalFullVideo, ModalBottom };
4
+ export { ModalCustom, ModalBottom };
@@ -0,0 +1,26 @@
1
+ import React, { useContext } from 'react';
2
+ import Popover from 'react-native-popover-view';
3
+ import { SCContext } from '../../context';
4
+ import { Action } from '../../context/actionType';
5
+
6
+ const PopoverComponent = (props) => {
7
+ const { setAction } = useContext(SCContext);
8
+
9
+ const onCloseStart = () => {
10
+ setAction(Action.SET_POPOVER_ANIMATING, true);
11
+ };
12
+
13
+ const onCloseComplete = () => {
14
+ setAction(Action.SET_POPOVER_ANIMATING, false);
15
+ };
16
+
17
+ return (
18
+ <Popover
19
+ onCloseStart={onCloseStart}
20
+ onCloseComplete={onCloseComplete}
21
+ {...props}
22
+ />
23
+ );
24
+ };
25
+
26
+ export default PopoverComponent;