@eohjsc/react-native-smart-city 0.2.21 → 0.2.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/assets/images/Add.svg +5 -0
- package/assets/images/AddLocationMaps/Point.svg +3 -0
- package/assets/images/CheckCircle.svg +4 -0
- package/assets/images/Close.svg +3 -0
- package/assets/images/HowToStart.svg +14 -0
- package/assets/images/Illustrations.svg +83 -0
- package/assets/images/OneTap.svg +14 -0
- package/assets/images/OneTap@1x.svg +14 -0
- package/assets/images/Rearrange.svg +3 -0
- package/assets/images/Schedule.svg +39 -0
- package/assets/images/ValueChange.svg +49 -0
- package/index.js +2 -0
- package/package.json +14 -2
- package/src/Images/Common/ActiveButton.png +0 -0
- package/src/Images/Common/ActiveButton@2x.png +0 -0
- package/src/Images/Common/ActiveButton@3x.png +0 -0
- package/src/Images/Common/arrow-back.png +0 -0
- package/src/Images/Common/checked@2x.png +0 -0
- package/src/Images/Common/checked@3x.png +0 -0
- package/src/Images/Common/file.png +0 -0
- package/src/Images/Common/fullscreen.png +0 -0
- package/src/Images/Common/refresh.png +0 -0
- package/src/commons/ActionGroup/NumberUpDownActionTemplate.js +1 -1
- package/src/commons/ActionGroup/OnOffTemplate/index.js +9 -4
- package/src/commons/ActionGroup/OptionsDropdownActionTemplate.js +4 -3
- package/src/commons/ActionGroup/StatesGridActionTemplate.js +2 -2
- package/src/commons/ActionGroup/ThreeButtonTemplate.js +13 -6
- package/src/commons/ActionGroup/ThreeButtonTemplateStyle.js +1 -1
- package/src/commons/ActionGroup/TimerActionTemplate.js +158 -33
- package/src/commons/ActionGroup/__test__/NumberUpDownTemplate.test.js +294 -0
- package/src/commons/ActionGroup/__test__/NumberUpDownTemplateWithNullConfigValue.test.js +60 -0
- package/src/commons/ActionGroup/__test__/OnOffButtonTemplate.test.js +8 -13
- package/src/commons/ActionGroup/__test__/OnOffTemplate.test.js +3 -3
- package/src/commons/ActionGroup/__test__/OptionsDropdownTemplate.test.js +26 -45
- package/src/commons/ActionGroup/__test__/ThreeButtonTemplate.test.js +11 -5
- package/src/commons/ActionGroup/__test__/TimerActionTemplate.test.js +14 -8
- package/src/commons/ActionGroup/__test__/TimerActionTemplateWithutConfigValue.test.js +17 -23
- package/src/commons/ActionGroup/__test__/__snapshots__/ThreeButtonTemplate.test.js.snap +241 -223
- package/src/commons/ActionGroup/__test__/index.test.js +39 -107
- package/src/commons/ActionGroup/hooks/useDropdownAction.js +2 -1
- package/src/commons/ActionTemplate/ActionTemplateStyles.js +14 -0
- package/src/commons/ActionTemplate/OnOffButtonAction.js +40 -0
- package/src/commons/ActionTemplate/OnOffButtonActionStyles.js +11 -0
- package/src/commons/ActionTemplate/OneButtonAction.js +26 -0
- package/src/commons/ActionTemplate/OneButtonActionStyles.js +11 -0
- package/src/commons/ActionTemplate/ThreeButtonAction.js +55 -0
- package/src/commons/ActionTemplate/ThreeButtonActionStyles.js +11 -0
- package/src/commons/ActionTemplate/__test__/OnOffButtonAction.test.js +34 -0
- package/src/commons/ActionTemplate/__test__/OneButtonAction.test.js +33 -0
- package/src/commons/ActionTemplate/__test__/ThreeButtonAction.test.js +35 -0
- package/src/commons/ActionTemplate/__test__/index.test.js +71 -0
- package/src/commons/ActionTemplate/index.js +69 -0
- package/src/commons/AlertAction/__test__/AlertAction.test.js +6 -6
- package/src/commons/AlertAction/index.js +2 -0
- package/src/commons/Automate/ItemAddNewScriptActionStyles.js +38 -0
- package/src/commons/Automate/ItemAutomate.js +39 -0
- package/src/commons/Automate/ItemAutomateStyles.js +33 -0
- package/src/commons/Automate/ItemScriptAction.js +45 -0
- package/src/commons/Automate/ItemScriptActionStyles.js +42 -0
- package/src/commons/Automate/__test__/ItemAutomate.test.js +16 -0
- package/src/commons/Automate/__test__/ItemScriptAction.test.js +16 -0
- package/src/commons/BackDefault/__test__/BackDefault.test.js +21 -0
- package/src/commons/BottomScrollPicker/index.js +62 -0
- package/src/commons/BottomScrollPicker/styles.js +13 -0
- package/src/commons/BottomSheet/index.js +41 -0
- package/src/commons/BottomSheet/styles.js +37 -0
- package/src/commons/Button/index.js +6 -1
- package/src/commons/ButtonPopup/__test__/__snapshots__/ButtonPopup.test.js.snap +2 -0
- package/src/commons/ButtonPopup/index.js +2 -0
- package/src/commons/Calendar/index.js +72 -0
- package/src/commons/Calendar/styles.js +11 -0
- package/src/commons/CameraDevice/index.js +2 -1
- package/src/commons/ChartLoading/__test__/ChartLoading.test.js +9 -7
- package/src/commons/ChartLoading/index.js +2 -1
- package/src/commons/DateTimeRangeChange/index.js +2 -1
- package/src/commons/Device/ConnectedViewHeader.js +3 -1
- package/src/commons/Device/DeviceAlertStatus.js +5 -2
- package/src/commons/Device/DisconnectedView.js +34 -26
- package/src/commons/Device/Emergency/EmergencyButton.js +2 -1
- package/src/commons/Device/Emergency/EmergencyDetail.js +2 -1
- package/src/commons/Device/Emergency/__test__/EmergencyButton.test.js +14 -6
- package/src/commons/Device/Emergency/__test__/EmergencyDetail.test.js +10 -2
- package/src/commons/Device/FlatListItems.js +3 -2
- package/src/commons/Device/FooterInfo.js +2 -1
- package/src/commons/Device/HistoryChart.js +2 -1
- package/src/commons/Device/ItemAddNew/index.js +8 -3
- package/src/commons/Device/SensorConnectedStatus.js +2 -1
- package/src/commons/Device/WindDirection/Compass/Compass.test.js +19 -11
- package/src/commons/Device/WindDirection/Compass/index.js +1 -1
- package/src/commons/Device/WindSpeed/LinearChart/__test__/LinearChart.test.js +9 -3
- package/src/commons/Device/WindSpeed/LinearChart/__test__/__snapshots__/LinearChart.test.js.snap +0 -81
- package/src/commons/Device/WindSpeed/LinearChart/index.js +2 -1
- package/src/commons/Device/__test__/ConnectedViewHeader.test.js +16 -8
- package/src/commons/Device/__test__/DeviceAlertStatus.test.js +13 -5
- package/src/commons/Device/__test__/DisconnectedView.test.js +13 -5
- package/src/commons/Device/__test__/FlatListItems.test.js +9 -1
- package/src/commons/Device/__test__/FooterInfo.test.js +13 -4
- package/src/commons/Device/__test__/SensorConnectedStatus.test.js +9 -1
- package/src/commons/Device/__test__/__snapshots__/DisconnectedView.test.js.snap +20 -20
- package/src/commons/DisplayChecking/__test__/DisplayChecking.test.js +28 -0
- package/src/commons/EmergencyButton/AlertSendConfirm.js +2 -1
- package/src/commons/EmergencyButton/AlertSent.js +3 -2
- package/src/commons/Explore/CityItem/index.js +2 -1
- package/src/commons/Explore/HeaderExplore/index.js +2 -1
- package/src/commons/Explore/HeaderLabel/index.js +2 -1
- package/src/commons/Explore/SearchBox/__test__/SearchBox.test.js +9 -2
- package/src/commons/Explore/SearchBox/index.js +2 -1
- package/src/commons/Explore/__test__/CityItem.test.js +13 -15
- package/src/commons/Explore/__test__/HeaderExplore.test.js +11 -7
- package/src/commons/Explore/__test__/HeaderLabel.test.js +15 -9
- package/src/commons/Explore/__test__/LocationItem.test.js +31 -0
- package/src/commons/Header/HeaderCustom.js +22 -2
- package/src/commons/Header/Styles/HeaderCustomStyles.js +2 -2
- package/src/commons/Header/__test__/HeaderCT.test.js +12 -4
- package/src/commons/HeaderAni/index.js +36 -5
- package/src/commons/HorizontalPicker/index.js +134 -0
- package/src/commons/HorizontalPicker/styles.js +56 -0
- package/src/commons/ImagePicker/__test__/ImagePicker.test.js +19 -13
- package/src/commons/ImagePicker/index.js +3 -1
- package/src/commons/MediaPlayer/index.js +2 -1
- package/src/commons/MediaPlayerDetail/__test__/MediaPlayerDetail.test.js +14 -8
- package/src/commons/MediaPlayerDetail/index.js +4 -1
- package/src/commons/MenuActionAddnew/__test__/MenuActionAddNew.test.js +11 -20
- package/src/commons/MenuActionAddnew/index.js +2 -1
- package/src/commons/Modal/ModalBottom.js +51 -0
- package/src/commons/Modal/ModalFullVideo.js +2 -1
- package/src/commons/Modal/Styles/ModalBottomStyles.js +35 -0
- package/src/commons/Modal/__test__/ModalBottom.test.js +39 -0
- package/src/commons/Modal/index.js +2 -1
- package/src/commons/NavBar/index.js +2 -2
- package/src/commons/RowItem/__test__/RowItem.test.js +16 -0
- package/src/commons/RowItem/index.js +61 -0
- package/src/commons/RowItem/styles.js +53 -0
- package/src/commons/SelectActionCard/SelectActionStyles.js +16 -0
- package/src/commons/SelectActionCard/index.js +30 -0
- package/src/commons/Sharing/DevicePermissionsCheckbox.js +2 -1
- package/src/commons/Sharing/MemberList.js +3 -1
- package/src/commons/Sharing/RowMember.js +3 -2
- package/src/commons/Sharing/StationDevicePermissions.js +2 -1
- package/src/commons/Sharing/WrapHeaderScrollable.js +78 -74
- package/src/commons/Sharing/__test__/DevicePermissionsCheckbox.test.js +15 -9
- package/src/commons/Sharing/__test__/MemberList.test.js +17 -25
- package/src/commons/Sharing/__test__/StationDevicePermission.test.js +17 -12
- package/src/commons/Sharing/__test__/WrapHeaderScrollable.test.js +0 -9
- package/src/commons/SubUnit/OneTap/ItemOneTap.js +101 -0
- package/src/commons/SubUnit/OneTap/ItemOneTapStyles.js +41 -0
- package/src/commons/SubUnit/OneTap/OneTapStyles.js +36 -0
- package/src/commons/SubUnit/OneTap/__test__/SubUnitAutomate.test.js +195 -0
- package/src/commons/SubUnit/OneTap/index.js +39 -0
- package/src/commons/SubUnit/ShortDetail.js +11 -6
- package/src/commons/SubUnit/__test__/ShortDetail.test.js +14 -6
- package/src/commons/Today/__test__/Today.test.js +9 -1
- package/src/commons/Today/__test__/__snapshots__/Today.test.js.snap +1 -1
- package/src/commons/Today/index.js +2 -1
- package/src/commons/Unit/SharedUnit.js +2 -1
- package/src/commons/Unit/__test__/SharedUnit.test.js +330 -0
- package/src/commons/UnitSummary/AirQuality/SegmentedRoundDisplay/index.js +1 -2
- package/src/commons/UnitSummary/AirQuality/__test__/index.test.js +16 -17
- package/src/commons/UnitSummary/AirQuality/index.js +5 -120
- package/src/commons/UnitSummary/AirQuality/styles.js +112 -0
- package/src/commons/UnitSummary/TotalPowerConsumption/index.js +2 -1
- package/src/commons/UnitSummary/__test__/TotalPowerConsumption.test.js +15 -9
- package/src/commons/WheelDateTimePicker/Picker.js +57 -0
- package/src/commons/WheelDateTimePicker/index.js +168 -0
- package/src/commons/WheelDateTimePicker/styles.js +21 -0
- package/src/commons/index.js +2 -0
- package/src/configs/API.js +29 -0
- package/src/configs/Colors.js +1 -0
- package/src/configs/Constants.js +61 -0
- package/src/configs/Images.js +1 -0
- package/src/configs/SCConfig.js +7 -0
- package/src/configs/Theme.js +20 -0
- package/src/context/SCContext.tsx +9 -39
- package/src/context/actionType.ts +11 -0
- package/src/context/mockStore.ts +51 -0
- package/src/context/reducer.ts +23 -0
- package/src/hooks/Common/__test__/useStatusbar.test.js +28 -0
- package/src/hooks/Common/__test__/useTranslations.test.js +23 -0
- package/src/hooks/Common/index.js +2 -0
- package/src/hooks/Common/useGetIdUser.js +9 -0
- package/src/hooks/Common/useTranslations.ts +34 -0
- package/src/iot/Monitor.js +2 -1
- package/src/iot/RemoteControl/Bluetooth.js +2 -6
- package/src/iot/RemoteControl/GoogleHome.js +1 -1
- package/src/iot/RemoteControl/Internet.js +1 -1
- package/src/iot/RemoteControl/LG.js +57 -15
- package/src/iot/RemoteControl/__test__/Bluetooth.test.js +3 -5
- package/src/iot/RemoteControl/__test__/GoogleHome.test.js +3 -3
- package/src/iot/RemoteControl/__test__/Internet.test.js +1 -8
- package/src/iot/RemoteControl/__test__/LgThinq.test.js +7 -10
- package/src/iot/RemoteControl/index.js +1 -1
- package/src/iot/states.js +1 -0
- package/src/navigations/AutomateStack.js +45 -0
- package/src/navigations/SharedStack.js +2 -1
- package/src/navigations/UnitStack.js +86 -6
- package/src/navigations/utils.js +8 -0
- package/src/screens/AQIGuide/__test__/AQIGuide.test.js +9 -1
- package/src/screens/AQIGuide/index.js +2 -2
- package/src/screens/ActivityLog/__test__/index.test.js +14 -39
- package/src/screens/ActivityLog/index.js +2 -1
- package/src/screens/AddCommon/SelectSubUnit.js +5 -4
- package/src/screens/AddCommon/SelectUnit.js +3 -2
- package/src/screens/AddCommon/__test__/SelectSubUnit.test.js +61 -0
- package/src/screens/AddCommon/__test__/SelectUnit.test.js +18 -10
- package/src/screens/AddLocationMaps/index.js +2 -1
- package/src/screens/AddNewAction/Components/LoadingSelectAction.js +40 -0
- package/src/screens/AddNewAction/Components/index.js +3 -0
- package/src/screens/AddNewAction/Device/DeviceStyles.js +43 -0
- package/src/screens/AddNewAction/Device/__test__/index.test.js +42 -0
- package/src/screens/AddNewAction/Device/index.js +33 -0
- package/src/screens/AddNewAction/SelectAction.js +237 -0
- package/src/screens/AddNewAction/SelectSensorDevices.js +150 -0
- package/src/screens/AddNewAction/SetupSensor.js +221 -0
- package/src/screens/AddNewAction/Styles/SelectActionStyles.js +62 -0
- package/src/screens/AddNewAction/Styles/SelectSensorDevicesStyles.js +36 -0
- package/src/screens/AddNewAction/Styles/SetupSensorStyles.js +76 -0
- package/src/screens/AddNewAction/__test__/SelectAction.test.js +153 -0
- package/src/screens/AddNewAction/__test__/SelectSensorDevices.test.js +191 -0
- package/src/screens/AddNewAction/__test__/SetupSensor.test.js +125 -0
- package/src/screens/AddNewAutoSmart/__test__/AddNewAutoSmart.test.js +112 -0
- package/src/screens/AddNewAutoSmart/index.js +113 -0
- package/src/screens/AddNewAutoSmart/styles/AddNewAutoSmartStyles.js +36 -0
- package/src/screens/AddNewDevice/ConnectDevices.js +2 -1
- package/src/screens/AddNewDevice/ConnectingDevices.js +2 -1
- package/src/screens/AddNewDevice/__test__/AddNewDevice.test.js +29 -13
- package/src/screens/AddNewDevice/__test__/ConnectDevices.test.js +19 -7
- package/src/screens/AddNewDevice/__test__/ConnectingDevices.test.js +16 -6
- package/src/screens/AddNewDevice/hooks/useStateAlertRename.js +2 -1
- package/src/screens/AddNewDevice/index.js +2 -1
- package/src/screens/AddNewGateway/ConnectedGateway.js +2 -1
- package/src/screens/AddNewGateway/ConnectingGateway.js +99 -24
- package/src/screens/AddNewGateway/ConnectingGatewayStyles.js +92 -0
- package/src/screens/AddNewGateway/SetupGatewayWifi.js +3 -2
- package/src/screens/AddNewGateway/__test__/AddNewGateway.test.js +35 -72
- package/src/screens/AddNewGateway/__test__/ConnectedGateway.test.js +14 -4
- package/src/screens/AddNewGateway/__test__/ConnectingGateway.test.js +20 -10
- package/src/screens/AddNewGateway/hooks/useStateAlertRename.js +2 -1
- package/src/screens/AddNewGateway/index.js +2 -1
- package/src/screens/AddNewOneTap/AddNewOneTapStyles.js +44 -0
- package/src/screens/AddNewOneTap/__test__/AddNewOneTap.test.js +130 -0
- package/src/screens/AddNewOneTap/index.js +83 -0
- package/src/screens/AllCamera/__test__/index.test.js +103 -0
- package/src/screens/AllCamera/index.js +2 -1
- package/src/screens/Automate/Components/Loading.js +64 -0
- package/src/screens/Automate/Styles/indexStyles.js +64 -0
- package/src/screens/Automate/__test__/Loading.test.js +16 -0
- package/src/screens/Automate/__test__/index.test.js +93 -0
- package/src/screens/Automate/index.js +148 -0
- package/src/screens/Device/HeaderDevice/styles.js +2 -2
- package/src/screens/Device/__test__/detail.test.js +90 -18
- package/src/screens/Device/detail.js +73 -35
- package/src/screens/Device/hooks/useCountUp.js +4 -0
- package/src/screens/Device/hooks/useEmergencyButton.js +3 -2
- package/src/screens/Device/styles.js +5 -1
- package/src/screens/DeviceInfo/__test__/index.test.js +12 -3
- package/src/screens/DeviceInfo/index.js +2 -1
- package/src/screens/EditActionsList/Styles/indexStyles.js +84 -0
- package/src/screens/EditActionsList/index.js +186 -0
- package/src/screens/EmergencyContacts/EmergencyContactsAddNew.js +3 -2
- package/src/screens/EmergencyContacts/EmergencyContactsList.js +9 -2
- package/src/screens/EmergencyContacts/EmergencyContactsSelectContacts.js +2 -1
- package/src/screens/EmergencyContacts/__test__/EmergencyContactAddNew.test.js +15 -18
- package/src/screens/EmergencyContacts/__test__/EmergencyContactList.test.js +19 -23
- package/src/screens/EmergencyContacts/__test__/EmergencyContactsSelectContacts.test.js +10 -25
- package/src/screens/EmergencyContacts/hook.js +3 -2
- package/src/screens/Explore/index.js +3 -2
- package/src/screens/GuestInfo/__test__/index.test.js +176 -0
- package/src/screens/GuestInfo/components/AccessScheduleItem.js +32 -0
- package/src/screens/GuestInfo/components/AccessScheduleSheet.js +204 -0
- package/src/screens/GuestInfo/components/HeaderGuestInfo.js +36 -0
- package/src/screens/GuestInfo/components/RecurringDetail.js +106 -0
- package/src/screens/GuestInfo/components/RowGuestInfo.js +31 -0
- package/src/screens/GuestInfo/components/TemporaryDetail.js +53 -0
- package/src/screens/GuestInfo/constant.js +59 -0
- package/src/screens/GuestInfo/index.js +150 -0
- package/src/screens/GuestInfo/styles/AccessScheduleDetailStyles.js +31 -0
- package/src/screens/GuestInfo/styles/AccessScheduleItemStyles.js +22 -0
- package/src/screens/GuestInfo/styles/HeaderGuestInfoStyles.js +31 -0
- package/src/screens/GuestInfo/styles/indexStyles.js +38 -0
- package/src/screens/ManageAccess/__test__/ManageAccess.test.js +13 -1
- package/src/screens/ManageAccess/hooks/index.js +4 -0
- package/src/screens/ManageAccess/index.js +49 -20
- package/src/screens/ManageAccess/styles/ManageAccessStyles.js +3 -0
- package/src/screens/PlayBackCamera/Timer.js +1 -1
- package/src/screens/PlayBackCamera/index.js +9 -5
- package/src/screens/ScanChipQR/__test__/ScanChipQR.test.js +2 -11
- package/src/screens/ScanChipQR/components/QRScan/index.js +2 -1
- package/src/screens/ScriptDetail/Styles/indexStyles.js +157 -0
- package/src/screens/ScriptDetail/__test__/index.test.js +119 -0
- package/src/screens/ScriptDetail/hooks/index.js +55 -0
- package/src/screens/ScriptDetail/index.js +344 -0
- package/src/screens/SelectUnit/Styles/indexStyles.js +55 -0
- package/src/screens/SelectUnit/__test__/index.test.js +85 -0
- package/src/screens/SelectUnit/index.js +100 -0
- package/src/screens/SetSchedule/__test__/index.test.js +97 -0
- package/src/screens/SetSchedule/components/RepeatOptionsPopup.js +56 -0
- package/src/screens/SetSchedule/components/RowItem.js +27 -0
- package/src/screens/SetSchedule/components/SelectWeekday.js +65 -0
- package/src/screens/SetSchedule/index.js +139 -0
- package/src/screens/SetSchedule/styles/RepeatOptionsPopupStyles.js +22 -0
- package/src/screens/SetSchedule/styles/RowItemStyles.js +29 -0
- package/src/screens/SetSchedule/styles/SelectWeekdayStyles.js +26 -0
- package/src/screens/SetSchedule/styles/indexStyles.js +22 -0
- package/src/screens/SharedUnit/TabHeader.js +2 -1
- package/src/screens/SharedUnit/__test__/TabHeader.test.js +40 -0
- package/src/screens/SharedUnit/index.js +3 -2
- package/src/screens/Sharing/MemberList.js +2 -1
- package/src/screens/Sharing/SelectPermission.js +2 -1
- package/src/screens/Sharing/SelectUser.js +3 -2
- package/src/screens/Sharing/__test__/MemberList.test.js +25 -28
- package/src/screens/Sharing/__test__/SelectPermission.test.js +16 -8
- package/src/screens/Sharing/__test__/SelectUser.test.js +33 -15
- package/src/screens/Sharing/hooks/index.js +22 -17
- package/src/screens/SubUnit/AddSubUnit.js +3 -2
- package/src/screens/SubUnit/Detail.js +5 -4
- package/src/screens/SubUnit/EditSubUnit.js +274 -0
- package/src/screens/SubUnit/EditSubUnitStyles.js +119 -0
- package/src/screens/SubUnit/ManageSubUnit.js +114 -371
- package/src/screens/SubUnit/ManageSubUnitStyles.js +40 -0
- package/src/screens/SubUnit/__test__/AddSubUnit.test.js +17 -11
- package/src/screens/SubUnit/__test__/Detail.test.js +11 -31
- package/src/screens/SubUnit/__test__/EditSubUnit.test.js +427 -0
- package/src/screens/SubUnit/__test__/ManageSubUnit.test.js +51 -384
- package/src/screens/SubUnit/hooks/__test__/useManageSubUnit.test.js +85 -0
- package/src/screens/SubUnit/hooks/useManageSubUnit.js +35 -0
- package/src/screens/SyncLGDevice/AddLGDevice.js +3 -2
- package/src/screens/TDSGuide/__test__/TDSGuide.test.js +9 -1
- package/src/screens/TDSGuide/index.js +2 -1
- package/src/screens/UVIndexGuide/__test__/UVIndexGuide.test.js +9 -1
- package/src/screens/UVIndexGuide/index.js +2 -1
- package/src/screens/Unit/AddMenu.js +3 -2
- package/src/screens/Unit/Detail.js +66 -20
- package/src/screens/Unit/ManageUnit/index.js +4 -3
- package/src/screens/Unit/ManageUnit.js +15 -4
- package/src/screens/Unit/MoreMenu.js +3 -2
- package/src/screens/Unit/SelectLocation.js +8 -2
- package/src/screens/Unit/SelectLocationStyles.js +11 -0
- package/src/screens/Unit/__test__/AddMenu.test.js +15 -15
- package/src/screens/Unit/__test__/CheckSendEmail.test.js +19 -10
- package/src/screens/Unit/__test__/Detail.test.js +92 -33
- package/src/screens/Unit/__test__/ManageUnit.test.js +16 -23
- package/src/screens/Unit/components/Header/index.js +2 -1
- package/src/screens/Unit/components/ListMyAllUnit/index.js +2 -1
- package/src/screens/Unit/components/MyUnit/index.js +2 -1
- package/src/screens/Unit/components/SearchLocation/__test__/RowLocation.test.js +36 -0
- package/src/screens/Unit/components/SearchLocation/index.js +2 -1
- package/src/screens/Unit/components/SharedUnit/index.js +2 -1
- package/src/screens/Unit/components/__test__/MyUnit.test.js +22 -72
- package/src/screens/Unit/components/__test__/MyUnitDevice.test.js +32 -0
- package/src/screens/Unit/components/__test__/SharedUnit.test.js +11 -2
- package/src/screens/UnitSummary/__test__/index.test.js +12 -4
- package/src/screens/UnitSummary/components/3PPowerConsumption/__test__/3PPowerConsumption.test.js +13 -3
- package/src/screens/UnitSummary/components/3PPowerConsumption/index.js +2 -1
- package/src/screens/UnitSummary/components/PowerConsumption/__test__/PowerConsumption.test.js +16 -12
- package/src/screens/UnitSummary/components/PowerConsumption/index.js +2 -1
- package/src/screens/UnitSummary/components/RunningDevices/__test__/index.test.js +2 -2
- package/src/screens/UnitSummary/components/Temperature/index.js +2 -1
- package/src/screens/UnitSummary/components/TotalPowerConsumption/index.js +2 -1
- package/src/screens/UnitSummary/components/UvIndex/__test__/__snapshots__/index.test.js.snap +37 -37
- package/src/screens/UnitSummary/components/UvIndex/__test__/index.test.js +14 -6
- package/src/screens/UnitSummary/components/UvIndex/index.js +2 -1
- package/src/screens/UnitSummary/components/WaterQuality/__test__/index.test.js +11 -5
- package/src/screens/UnitSummary/components/WaterQuality/index.js +2 -1
- package/src/screens/UnitSummary/components/__test__/TotalPowerConsumption.test.js +13 -7
- package/src/screens/UnitSummary/components/__test__/UnitSummary.test.js +67 -0
- package/src/screens/UnitSummary/components/__test__/index.test.js +48 -0
- package/src/screens/UnitSummary/components/index.js +1 -37
- package/src/screens/UnitSummary/components/indexstyles.js +39 -0
- package/src/screens/UnitSummary/index.js +2 -1
- package/src/screens/WaterQualityGuide/__test__/index.test.js +12 -12
- package/src/screens/WaterQualityGuide/index.js +2 -1
- package/src/utils/Apis/axios.js +0 -4
- package/src/utils/Converter/array.js +4 -0
- package/src/utils/Converter/time.js +29 -4
- package/src/utils/I18n/index.ts +6 -0
- package/src/utils/I18n/translations/en.json +77 -5
- package/src/utils/I18n/translations/vi.json +73 -3
- package/src/utils/I18n/translations.ts +45 -0
- package/src/utils/Route/index.js +13 -0
- package/src/utils/__test__/InitData.test.js +20 -0
- package/src/commons/ChartLoading/__test__/__snapshots__/ChartLoading.test.js.snap +0 -66
- package/src/commons/Device/HistoryChart/__test__/HistoryChart.test.js +0 -57
- package/src/commons/Device/HistoryChart/__test__/__snapshots__/HistoryChart.test.js.snap +0 -593
- package/src/commons/Explore/SearchBox/__test__/__snapshots__/SearchBox.test.js.snap +0 -59
- package/src/commons/Header/__test__/Header.test.js +0 -24
- package/src/commons/MenuActionAddnew/__test__/__snapshots__/MenuActionAddNew.test.js.snap +0 -788
- package/src/commons/Sharing/__test__/__snapshots__/WrapHeaderScrollable.test.js.snap +0 -174
- package/src/commons/UnitSummary/AirQuality/__test__/__snapshots__/index.test.js.snap +0 -26679
- package/src/iot/RemoteControl/__test__/index.test.js +0 -101
- package/src/iot/__test__/Monitor.test.js +0 -119
- package/src/screens/EmergencyContacts/__test__/__snapshots__/EmergencyContactAddNew.test.js.snap +0 -1706
- package/src/screens/EmergencyContacts/__test__/__snapshots__/EmergencyContactList.test.js.snap +0 -4276
- package/src/screens/EmergencyContacts/__test__/__snapshots__/EmergencyContactsSelectContacts.test.js.snap +0 -2240
- package/src/screens/SyncLGDevice/__test__/AddLGDevice.test.js +0 -358
- package/src/screens/Unit/MyAllUnit/__test__/__snapshots__/index.test.js.snap +0 -1001
- package/src/screens/Unit/MyAllUnit/__test__/index.test.js +0 -48
- package/src/screens/Unit/components/MyAllUnit/__test__/__snapshots__/index.test.js.snap +0 -1001
- package/src/screens/Unit/components/MyAllUnit/__test__/index.test.js +0 -48
- package/src/screens/UnitSummary/components/WaterQuality/__test__/__snapshots__/index.test.js.snap +0 -1574
- package/src/screens/WaterQualityGuide/__test__/__snapshots__/index.test.js.snap +0 -3375
- package/src/utils/Converter/__test__/time.test.js +0 -126
- package/src/utils/I18n/index.js +0 -19
- package/src/utils/I18n/index.test.js +0 -7
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import renderer, { act } from 'react-test-renderer';
|
|
3
|
+
import { TouchableOpacity } from 'react-native';
|
|
4
|
+
import LocationItem from '../LocationItem';
|
|
5
|
+
import { SCProvider } from '../../../context';
|
|
6
|
+
import { mockSCStore } from '../../../context/mockStore';
|
|
7
|
+
|
|
8
|
+
const wrapComponent = (item, mockFunc, margin) => (
|
|
9
|
+
<SCProvider initState={mockSCStore({})}>
|
|
10
|
+
<LocationItem item={item} onPress={mockFunc} margin={margin} />
|
|
11
|
+
</SCProvider>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
let tree;
|
|
15
|
+
describe('Test LocationItem', () => {
|
|
16
|
+
test('render LocationItem', async () => {
|
|
17
|
+
const item = { background: '', name: '', address: '', distance: '' };
|
|
18
|
+
const margin = { marginLeft: 10 };
|
|
19
|
+
const mockFunc = jest.fn();
|
|
20
|
+
await act(() => {
|
|
21
|
+
tree = renderer.create(wrapComponent(item, mockFunc, margin));
|
|
22
|
+
});
|
|
23
|
+
const instance = tree.root;
|
|
24
|
+
const button = instance.findAllByType(TouchableOpacity);
|
|
25
|
+
expect(button.length).toEqual(1);
|
|
26
|
+
act(() => {
|
|
27
|
+
button[0].props.onPress();
|
|
28
|
+
});
|
|
29
|
+
expect(mockFunc).toBeCalledTimes(1);
|
|
30
|
+
});
|
|
31
|
+
});
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import React, { memo, useRef } from 'react';
|
|
1
|
+
import React, { memo, useCallback, useRef } from 'react';
|
|
2
2
|
import { View, Text, TouchableOpacity, Image } from 'react-native';
|
|
3
3
|
import Images from '../../configs/Images';
|
|
4
4
|
import { Colors } from '../../configs';
|
|
5
5
|
import { Icon } from '@ant-design/react-native';
|
|
6
6
|
import { useNavigation } from '@react-navigation/native';
|
|
7
7
|
import styles from './Styles/HeaderCustomStyles';
|
|
8
|
+
import { useTranslations } from '../../hooks/Common/useTranslations';
|
|
8
9
|
|
|
9
10
|
const HeaderCustom = ({
|
|
10
11
|
title = '',
|
|
@@ -15,15 +16,29 @@ const HeaderCustom = ({
|
|
|
15
16
|
isShowSeparator = false,
|
|
16
17
|
isDisableRefresh = false,
|
|
17
18
|
titleStyles,
|
|
19
|
+
isShowClose = false,
|
|
20
|
+
onGoBack,
|
|
21
|
+
onClose,
|
|
18
22
|
}) => {
|
|
23
|
+
const t = useTranslations();
|
|
19
24
|
const { goBack } = useNavigation();
|
|
20
25
|
const refMenuAction = useRef();
|
|
21
26
|
const refAddAction = useRef();
|
|
22
27
|
const handleAddAction = () => {};
|
|
23
28
|
const handleShowMenuAction = () => showPopoverWithRef(refMenuAction);
|
|
29
|
+
const handleGoback = () => {
|
|
30
|
+
onGoBack && onGoBack();
|
|
31
|
+
goBack();
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
const handleClose = useCallback(() => {
|
|
35
|
+
onClose ? onClose() : alert(t('feature_under_development'));
|
|
36
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
37
|
+
}, []);
|
|
38
|
+
|
|
24
39
|
return (
|
|
25
40
|
<View style={[styles.wrap, isShowSeparator && styles.separator]}>
|
|
26
|
-
<TouchableOpacity style={styles.buttonBack} onPress={
|
|
41
|
+
<TouchableOpacity style={styles.buttonBack} onPress={handleGoback}>
|
|
27
42
|
<Image source={Images.arrowBack} style={styles.iconBack} />
|
|
28
43
|
</TouchableOpacity>
|
|
29
44
|
<View style={styles.wrapTitle}>
|
|
@@ -65,6 +80,11 @@ const HeaderCustom = ({
|
|
|
65
80
|
<Icon name={'plus'} size={27} color={Colors.Black} />
|
|
66
81
|
</TouchableOpacity>
|
|
67
82
|
)}
|
|
83
|
+
{isShowClose && (
|
|
84
|
+
<TouchableOpacity style={styles.buttonAdd} onPress={handleClose}>
|
|
85
|
+
<Icon name={'close'} size={24} color={Colors.Black} />
|
|
86
|
+
</TouchableOpacity>
|
|
87
|
+
)}
|
|
68
88
|
</View>
|
|
69
89
|
</View>
|
|
70
90
|
);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Colors } from '../../../configs';
|
|
2
|
-
import { getStatusBarHeight } from '../../../configs/Constants';
|
|
3
2
|
import { StyleSheet } from 'react-native';
|
|
3
|
+
import { getStatusBarHeight } from 'react-native-iphone-x-helper';
|
|
4
4
|
|
|
5
5
|
export default StyleSheet.create({
|
|
6
6
|
wrap: {
|
|
@@ -10,7 +10,7 @@ export default StyleSheet.create({
|
|
|
10
10
|
paddingLeft: 7,
|
|
11
11
|
paddingRight: 10,
|
|
12
12
|
paddingBottom: 6,
|
|
13
|
-
paddingTop: getStatusBarHeight(),
|
|
13
|
+
paddingTop: getStatusBarHeight() + 10,
|
|
14
14
|
},
|
|
15
15
|
separator: {
|
|
16
16
|
borderBottomWidth: 0.5,
|
|
@@ -3,10 +3,18 @@ import { TouchableOpacity } from 'react-native';
|
|
|
3
3
|
import { act } from '@testing-library/react-hooks';
|
|
4
4
|
import { create } from 'react-test-renderer';
|
|
5
5
|
import { HeaderCustom } from '..';
|
|
6
|
+
import { SCProvider } from '../../../context';
|
|
7
|
+
import { mockSCStore } from '../../../context/mockStore';
|
|
6
8
|
|
|
7
9
|
const mockOnRefresh = jest.fn();
|
|
8
10
|
const mockShowPopoverWithRef = jest.fn();
|
|
9
11
|
|
|
12
|
+
const wrapComponent = (defaultProps) => (
|
|
13
|
+
<SCProvider initState={mockSCStore({})}>
|
|
14
|
+
<HeaderCustom {...defaultProps} />
|
|
15
|
+
</SCProvider>
|
|
16
|
+
);
|
|
17
|
+
|
|
10
18
|
describe('Test HeaderCustom', () => {
|
|
11
19
|
let tree;
|
|
12
20
|
let defaultProps = {
|
|
@@ -18,7 +26,7 @@ describe('Test HeaderCustom', () => {
|
|
|
18
26
|
|
|
19
27
|
it('Test not render right', () => {
|
|
20
28
|
act(() => {
|
|
21
|
-
tree = create(
|
|
29
|
+
tree = create(wrapComponent(defaultProps));
|
|
22
30
|
});
|
|
23
31
|
const instance = tree.root;
|
|
24
32
|
const TouchableOpacityElement = instance.findAllByType(TouchableOpacity);
|
|
@@ -28,7 +36,7 @@ describe('Test HeaderCustom', () => {
|
|
|
28
36
|
it('Test render right', () => {
|
|
29
37
|
defaultProps = { ...defaultProps, isShowRight: true };
|
|
30
38
|
act(() => {
|
|
31
|
-
tree = create(
|
|
39
|
+
tree = create(wrapComponent(defaultProps));
|
|
32
40
|
});
|
|
33
41
|
const instance = tree.root;
|
|
34
42
|
const TouchableOpacityElement = instance.findAllByType(TouchableOpacity);
|
|
@@ -45,10 +53,10 @@ describe('Test HeaderCustom', () => {
|
|
|
45
53
|
|
|
46
54
|
it('Test render without props', () => {
|
|
47
55
|
act(() => {
|
|
48
|
-
tree = create(
|
|
56
|
+
tree = create(wrapComponent(defaultProps));
|
|
49
57
|
});
|
|
50
58
|
const instance = tree.root;
|
|
51
59
|
const TouchableOpacityElement = instance.findAllByType(TouchableOpacity);
|
|
52
|
-
expect(TouchableOpacityElement).toHaveLength(
|
|
60
|
+
expect(TouchableOpacityElement).toHaveLength(3);
|
|
53
61
|
});
|
|
54
62
|
});
|
|
@@ -8,12 +8,19 @@ import Text from '../../commons/Text';
|
|
|
8
8
|
import { Colors } from '../../configs';
|
|
9
9
|
|
|
10
10
|
const default_height = 44;
|
|
11
|
-
const paddingIos = getStatusBarHeight();
|
|
11
|
+
const paddingIos = getStatusBarHeight() + 10;
|
|
12
12
|
export const title_height = 44;
|
|
13
13
|
export const heightHeader = default_height + title_height + paddingIos;
|
|
14
14
|
|
|
15
15
|
const HeaderAni = memo(
|
|
16
|
-
({
|
|
16
|
+
({
|
|
17
|
+
scrollY,
|
|
18
|
+
onLeft,
|
|
19
|
+
title,
|
|
20
|
+
rightComponent,
|
|
21
|
+
headerStyle,
|
|
22
|
+
headerAniCenterStyle,
|
|
23
|
+
}) => {
|
|
17
24
|
const { goBack } = useNavigation();
|
|
18
25
|
const onPressLeft = useCallback(() => {
|
|
19
26
|
if (onLeft) {
|
|
@@ -22,6 +29,9 @@ const HeaderAni = memo(
|
|
|
22
29
|
goBack();
|
|
23
30
|
}
|
|
24
31
|
}, [goBack, onLeft]);
|
|
32
|
+
|
|
33
|
+
const headerX = headerAniCenterStyle ? 75 : 16;
|
|
34
|
+
|
|
25
35
|
const titleTransformY = scrollY.interpolate({
|
|
26
36
|
inputRange: [0, 2 * title_height],
|
|
27
37
|
outputRange: [0, -title_height],
|
|
@@ -29,7 +39,7 @@ const HeaderAni = memo(
|
|
|
29
39
|
});
|
|
30
40
|
const titleTransformX = scrollY.interpolate({
|
|
31
41
|
inputRange: [0, 2 * title_height],
|
|
32
|
-
outputRange: [0,
|
|
42
|
+
outputRange: [0, headerX],
|
|
33
43
|
extrapolate: 'clamp',
|
|
34
44
|
});
|
|
35
45
|
const titleScale = scrollY.interpolate({
|
|
@@ -44,9 +54,18 @@ const HeaderAni = memo(
|
|
|
44
54
|
});
|
|
45
55
|
|
|
46
56
|
const titleMarginRight = rightComponent ? 80 : 0;
|
|
57
|
+
const checkHeaderAniCenterStyle = headerAniCenterStyle
|
|
58
|
+
? styles.containerNoneBorder
|
|
59
|
+
: styles.container;
|
|
47
60
|
|
|
48
61
|
return (
|
|
49
|
-
<Animated.View
|
|
62
|
+
<Animated.View
|
|
63
|
+
style={[
|
|
64
|
+
checkHeaderAniCenterStyle,
|
|
65
|
+
headerStyle,
|
|
66
|
+
{ height: headerHeightAnim },
|
|
67
|
+
]}
|
|
68
|
+
>
|
|
50
69
|
<View style={styles.header}>
|
|
51
70
|
<TouchableOpacity style={styles.btnBack} onPress={onPressLeft}>
|
|
52
71
|
<Icon name={'left'} size={27} color={Colors.Gray9} />
|
|
@@ -90,7 +109,8 @@ const styles = StyleSheet.create({
|
|
|
90
109
|
header: {
|
|
91
110
|
flexDirection: 'row',
|
|
92
111
|
justifyContent: 'space-between',
|
|
93
|
-
|
|
112
|
+
alignItems: 'center',
|
|
113
|
+
zIndex: 2,
|
|
94
114
|
},
|
|
95
115
|
btnBack: {
|
|
96
116
|
height: default_height,
|
|
@@ -115,6 +135,17 @@ const styles = StyleSheet.create({
|
|
|
115
135
|
zIndex: 3,
|
|
116
136
|
paddingTop: paddingIos,
|
|
117
137
|
},
|
|
138
|
+
containerNoneBorder: {
|
|
139
|
+
backgroundColor: Colors.White,
|
|
140
|
+
width: '100%',
|
|
141
|
+
position: 'absolute',
|
|
142
|
+
top: 0,
|
|
143
|
+
left: 0,
|
|
144
|
+
right: 0,
|
|
145
|
+
height: 100,
|
|
146
|
+
zIndex: 3,
|
|
147
|
+
paddingTop: paddingIos,
|
|
148
|
+
},
|
|
118
149
|
content: {
|
|
119
150
|
position: 'absolute',
|
|
120
151
|
width: '100%',
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import React, { useEffect, useMemo, useRef, useState, memo } from 'react';
|
|
2
|
+
import { View, Animated } from 'react-native';
|
|
3
|
+
import { Constants, Colors } from '../../configs';
|
|
4
|
+
import Text from '../Text';
|
|
5
|
+
import styles from './styles';
|
|
6
|
+
|
|
7
|
+
let isCanChangeValue = false;
|
|
8
|
+
|
|
9
|
+
const HorizontalPicker = ({
|
|
10
|
+
width = Constants.width,
|
|
11
|
+
onChangeValue,
|
|
12
|
+
minimum = 0,
|
|
13
|
+
maximum = 100,
|
|
14
|
+
segmentSpacing = 20,
|
|
15
|
+
step = 10,
|
|
16
|
+
stepColor = Colors.Gray7,
|
|
17
|
+
stepHeight = 40,
|
|
18
|
+
stepWidth = 2,
|
|
19
|
+
normalColor = Colors.Gray7,
|
|
20
|
+
normalHeight = 20,
|
|
21
|
+
normalWidth = 2,
|
|
22
|
+
style,
|
|
23
|
+
value = 0,
|
|
24
|
+
}) => {
|
|
25
|
+
const scrollViewRef = useRef();
|
|
26
|
+
const [scrollX] = useState(new Animated.Value(0));
|
|
27
|
+
|
|
28
|
+
const spacerWidth = (width - stepWidth) / 2;
|
|
29
|
+
let time = useMemo(() => minimum, [minimum]);
|
|
30
|
+
|
|
31
|
+
const renderTime = useMemo(() => {
|
|
32
|
+
const data = [...Array(maximum - minimum + 1).keys()].map(
|
|
33
|
+
(i) => i + minimum
|
|
34
|
+
);
|
|
35
|
+
return (
|
|
36
|
+
<View style={[styles.wrap]}>
|
|
37
|
+
<View
|
|
38
|
+
style={{
|
|
39
|
+
width: spacerWidth,
|
|
40
|
+
}}
|
|
41
|
+
/>
|
|
42
|
+
{data.map((i, index) => {
|
|
43
|
+
const isStep = i % step === 0;
|
|
44
|
+
return (
|
|
45
|
+
<View key={index}>
|
|
46
|
+
<View
|
|
47
|
+
key={i}
|
|
48
|
+
// eslint-disable-next-line react-native/no-inline-styles
|
|
49
|
+
style={{
|
|
50
|
+
backgroundColor: isStep ? stepColor : normalColor,
|
|
51
|
+
height: isStep ? stepHeight : normalHeight,
|
|
52
|
+
width: isStep ? stepWidth : normalWidth,
|
|
53
|
+
borderRadius: isStep ? stepWidth / 2 : normalWidth / 2,
|
|
54
|
+
marginRight: i === maximum ? 0 : segmentSpacing,
|
|
55
|
+
}}
|
|
56
|
+
/>
|
|
57
|
+
{isStep && (
|
|
58
|
+
<Text
|
|
59
|
+
color={Colors.Gray7}
|
|
60
|
+
style={[styles.time, time < 10 && styles.time2]}
|
|
61
|
+
>
|
|
62
|
+
{time++}
|
|
63
|
+
</Text>
|
|
64
|
+
)}
|
|
65
|
+
</View>
|
|
66
|
+
);
|
|
67
|
+
})}
|
|
68
|
+
<View
|
|
69
|
+
style={{
|
|
70
|
+
width: (width - stepWidth) / 2,
|
|
71
|
+
}}
|
|
72
|
+
/>
|
|
73
|
+
</View>
|
|
74
|
+
);
|
|
75
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
76
|
+
}, [maximum, minimum, time]);
|
|
77
|
+
|
|
78
|
+
useEffect(() => {
|
|
79
|
+
const scrollListener = scrollX.addListener(({ value }) => {
|
|
80
|
+
isCanChangeValue && onChangeValue && onChangeValue(value);
|
|
81
|
+
});
|
|
82
|
+
return () => scrollX.removeListener(scrollListener);
|
|
83
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
84
|
+
}, []);
|
|
85
|
+
|
|
86
|
+
useEffect(() => {
|
|
87
|
+
if (!isCanChangeValue && scrollViewRef && scrollViewRef.current) {
|
|
88
|
+
const to1 = setTimeout(() => {
|
|
89
|
+
scrollViewRef.current.scrollTo({ x: value * 128 });
|
|
90
|
+
clearTimeout(to1);
|
|
91
|
+
}, 300);
|
|
92
|
+
const to2 = setTimeout(() => {
|
|
93
|
+
isCanChangeValue = true;
|
|
94
|
+
clearTimeout(to2);
|
|
95
|
+
}, 1000);
|
|
96
|
+
}
|
|
97
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
98
|
+
}, [value, isCanChangeValue, scrollViewRef]);
|
|
99
|
+
|
|
100
|
+
useEffect(() => {
|
|
101
|
+
return () => (isCanChangeValue = false);
|
|
102
|
+
}, []);
|
|
103
|
+
|
|
104
|
+
return (
|
|
105
|
+
<View style={[styles.container, style]}>
|
|
106
|
+
<Animated.ScrollView
|
|
107
|
+
ref={scrollViewRef}
|
|
108
|
+
horizontal
|
|
109
|
+
contentContainerStyle={styles.contentContainerStyle}
|
|
110
|
+
bounces={false}
|
|
111
|
+
showsHorizontalScrollIndicator={false}
|
|
112
|
+
scrollEventThrottle={16}
|
|
113
|
+
onScroll={Animated.event(
|
|
114
|
+
[
|
|
115
|
+
{
|
|
116
|
+
nativeEvent: {
|
|
117
|
+
contentOffset: { x: scrollX },
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
{ useNativeDriver: true }
|
|
122
|
+
)}
|
|
123
|
+
>
|
|
124
|
+
{renderTime}
|
|
125
|
+
</Animated.ScrollView>
|
|
126
|
+
|
|
127
|
+
<View style={[styles.indicator]} pointerEvents="none">
|
|
128
|
+
<View style={styles.childIndicator} />
|
|
129
|
+
</View>
|
|
130
|
+
</View>
|
|
131
|
+
);
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
export default memo(HorizontalPicker);
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { StyleSheet } from 'react-native';
|
|
2
|
+
import { Colors } from '../../configs';
|
|
3
|
+
|
|
4
|
+
export default StyleSheet.create({
|
|
5
|
+
contentContainerStyle: {
|
|
6
|
+
justifyContent: 'flex-end',
|
|
7
|
+
},
|
|
8
|
+
wrap: {
|
|
9
|
+
flexDirection: 'row',
|
|
10
|
+
alignItems: 'center',
|
|
11
|
+
},
|
|
12
|
+
time: {
|
|
13
|
+
position: 'absolute',
|
|
14
|
+
top: 20,
|
|
15
|
+
width: 50,
|
|
16
|
+
fontSize: 10,
|
|
17
|
+
marginLeft: 1,
|
|
18
|
+
},
|
|
19
|
+
time2: {
|
|
20
|
+
left: 2,
|
|
21
|
+
},
|
|
22
|
+
indicator: {
|
|
23
|
+
justifyContent: 'center',
|
|
24
|
+
alignItems: 'center',
|
|
25
|
+
position: 'absolute',
|
|
26
|
+
width: '100%',
|
|
27
|
+
height: '100%',
|
|
28
|
+
},
|
|
29
|
+
step: {
|
|
30
|
+
width: 12,
|
|
31
|
+
height: 12,
|
|
32
|
+
borderRadius: 6,
|
|
33
|
+
},
|
|
34
|
+
normal: {
|
|
35
|
+
width: 4,
|
|
36
|
+
height: 4,
|
|
37
|
+
borderRadius: 2,
|
|
38
|
+
marginTop: 4,
|
|
39
|
+
},
|
|
40
|
+
container: {
|
|
41
|
+
height: 80,
|
|
42
|
+
marginTop: 80,
|
|
43
|
+
},
|
|
44
|
+
childrenIndicator: {
|
|
45
|
+
width: 12,
|
|
46
|
+
height: 80,
|
|
47
|
+
borderRadius: 8,
|
|
48
|
+
backgroundColor: Colors.Primary,
|
|
49
|
+
},
|
|
50
|
+
childIndicator: {
|
|
51
|
+
width: 12,
|
|
52
|
+
height: 80,
|
|
53
|
+
backgroundColor: Colors.Primary,
|
|
54
|
+
borderRadius: 8,
|
|
55
|
+
},
|
|
56
|
+
});
|
|
@@ -3,6 +3,23 @@ import renderer, { act } from 'react-test-renderer';
|
|
|
3
3
|
|
|
4
4
|
import ImagePicker from '../index';
|
|
5
5
|
import ButtonPopup from '../../ButtonPopup';
|
|
6
|
+
import { SCProvider } from '../../../context';
|
|
7
|
+
import { mockSCStore } from '../../../context/mockStore';
|
|
8
|
+
|
|
9
|
+
const wrapComponent = (options) => (
|
|
10
|
+
<SCProvider initState={mockSCStore({})}>
|
|
11
|
+
<ImagePicker
|
|
12
|
+
showImagePicker={true}
|
|
13
|
+
setShowImagePicker={''}
|
|
14
|
+
setImageUrl={'setImageUrl'}
|
|
15
|
+
optionsCapture={options}
|
|
16
|
+
optionsSelect={{
|
|
17
|
+
mediaType: 'photo',
|
|
18
|
+
quality: 1,
|
|
19
|
+
}}
|
|
20
|
+
/>
|
|
21
|
+
</SCProvider>
|
|
22
|
+
);
|
|
6
23
|
|
|
7
24
|
describe('Test ImagePicker', () => {
|
|
8
25
|
let tree;
|
|
@@ -13,7 +30,7 @@ describe('Test ImagePicker', () => {
|
|
|
13
30
|
test('create ImagePicker', () => {
|
|
14
31
|
Platform.OS = 'android';
|
|
15
32
|
act(() => {
|
|
16
|
-
tree = renderer.create(
|
|
33
|
+
tree = renderer.create(wrapComponent());
|
|
17
34
|
});
|
|
18
35
|
const instance = tree.root;
|
|
19
36
|
const textInputs = instance.findAllByType(ButtonPopup);
|
|
@@ -29,18 +46,7 @@ describe('Test ImagePicker', () => {
|
|
|
29
46
|
saveToPhotos: true,
|
|
30
47
|
};
|
|
31
48
|
act(() => {
|
|
32
|
-
tree = renderer.create(
|
|
33
|
-
<ImagePicker
|
|
34
|
-
showImagePicker={true}
|
|
35
|
-
setShowImagePicker={''}
|
|
36
|
-
setImageUrl={'setImageUrl'}
|
|
37
|
-
optionsCapture={options}
|
|
38
|
-
optionsSelect={{
|
|
39
|
-
mediaType: 'photo',
|
|
40
|
-
quality: 1,
|
|
41
|
-
}}
|
|
42
|
-
/>
|
|
43
|
-
);
|
|
49
|
+
tree = renderer.create(wrapComponent(options));
|
|
44
50
|
});
|
|
45
51
|
const instance = tree.root;
|
|
46
52
|
const textInputs = instance.findAllByType(ButtonPopup);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { useCallback } from 'react';
|
|
2
2
|
import { Platform, PermissionsAndroid } from 'react-native';
|
|
3
3
|
import { launchCamera, launchImageLibrary } from 'react-native-image-picker';
|
|
4
|
-
import {
|
|
4
|
+
import { useTranslations } from '../../hooks/Common/useTranslations';
|
|
5
5
|
|
|
6
6
|
import ButtonPopup from '../ButtonPopup';
|
|
7
7
|
|
|
@@ -12,6 +12,8 @@ const ImagePicker = ({
|
|
|
12
12
|
optionsCapture,
|
|
13
13
|
optionsSelect,
|
|
14
14
|
}) => {
|
|
15
|
+
const t = useTranslations();
|
|
16
|
+
|
|
15
17
|
const requestCameraPermission = useCallback(async () => {
|
|
16
18
|
if (Platform.OS === 'android') {
|
|
17
19
|
try {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { memo, useCallback, useEffect, useState } from 'react';
|
|
2
2
|
import { Image, StyleSheet, Text, TouchableOpacity, View } from 'react-native';
|
|
3
3
|
import { VLCPlayer } from 'react-native-vlc-media-player';
|
|
4
|
-
import {
|
|
4
|
+
import { useTranslations } from '../../hooks/Common/useTranslations';
|
|
5
5
|
import PauseIcon from '../../../assets/images/Common/Pause.svg';
|
|
6
6
|
import { Colors, Images } from '../../configs';
|
|
7
7
|
import { colorOpacity } from '../../utils/Converter/color';
|
|
@@ -93,6 +93,7 @@ const PreviewPlayer = memo(({ uri, start }) => {
|
|
|
93
93
|
});
|
|
94
94
|
|
|
95
95
|
const MediaPlayer = memo(({ uri, previewUri, thumbnail, style }) => {
|
|
96
|
+
const t = useTranslations();
|
|
96
97
|
const [started, setStarted] = useState(false);
|
|
97
98
|
const [paused, setPaused] = useState(true);
|
|
98
99
|
|
|
@@ -3,20 +3,26 @@ import { act, create } from 'react-test-renderer';
|
|
|
3
3
|
import { TouchableOpacity, Text } from 'react-native';
|
|
4
4
|
import MediaPlayerDetail from '../index';
|
|
5
5
|
import PauseIcon from '../../../assets/images/Common/Pause.svg';
|
|
6
|
+
import { SCProvider } from '../../../context';
|
|
7
|
+
import { mockSCStore } from '../../../context/mockStore';
|
|
8
|
+
|
|
9
|
+
const wrapComponent = () => (
|
|
10
|
+
<SCProvider initState={mockSCStore({})}>
|
|
11
|
+
<MediaPlayerDetail
|
|
12
|
+
uri={'rtsp://admin:hd111111:1111111/Streaming/Channels/101/'}
|
|
13
|
+
key={'camera-1'}
|
|
14
|
+
thumbnail={{ uri: 'https://abc.com/image.png' }}
|
|
15
|
+
cameraName={'cameraName'}
|
|
16
|
+
/>
|
|
17
|
+
</SCProvider>
|
|
18
|
+
);
|
|
6
19
|
|
|
7
20
|
describe('Test MediaPlayerDetail', () => {
|
|
8
21
|
let wrapper;
|
|
9
22
|
|
|
10
23
|
test('MediaPlayerDetail render when onTap setPause', async () => {
|
|
11
24
|
await act(async () => {
|
|
12
|
-
wrapper = await create(
|
|
13
|
-
<MediaPlayerDetail
|
|
14
|
-
uri={'rtsp://admin:hd111111:1111111/Streaming/Channels/101/'}
|
|
15
|
-
key={'camera-1'}
|
|
16
|
-
thumbnail={{ uri: 'https://abc.com/image.png' }}
|
|
17
|
-
cameraName={'cameraName'}
|
|
18
|
-
/>
|
|
19
|
-
);
|
|
25
|
+
wrapper = await create(wrapComponent());
|
|
20
26
|
});
|
|
21
27
|
const instance = wrapper.root;
|
|
22
28
|
const buttons = instance.findAllByType(TouchableOpacity);
|
|
@@ -2,13 +2,14 @@ import React, { memo, useCallback, useState, useEffect } from 'react';
|
|
|
2
2
|
import { Image, View, StyleSheet, Text, TouchableOpacity } from 'react-native';
|
|
3
3
|
import { VLCPlayer } from 'react-native-vlc-media-player';
|
|
4
4
|
import { getStatusBarHeight } from 'react-native-iphone-x-helper';
|
|
5
|
-
import {
|
|
5
|
+
import { useTranslations } from '../../hooks/Common/useTranslations';
|
|
6
6
|
|
|
7
7
|
import PauseIcon from '../../../assets/images/Common/Pause.svg';
|
|
8
8
|
import { Colors, Constants, Images } from '../../configs';
|
|
9
9
|
import { colorOpacity } from '../../utils/Converter/color';
|
|
10
10
|
import styles from './MediaPlayerDetailStyles';
|
|
11
11
|
import FImage from '../../commons/FImage';
|
|
12
|
+
import { TESTID } from '../../configs/Constants';
|
|
12
13
|
|
|
13
14
|
const MediaPlayerDetail = memo(
|
|
14
15
|
({
|
|
@@ -25,6 +26,7 @@ const MediaPlayerDetail = memo(
|
|
|
25
26
|
goToPlayBack,
|
|
26
27
|
isShowFullScreenIcon = false,
|
|
27
28
|
}) => {
|
|
29
|
+
const t = useTranslations();
|
|
28
30
|
const [paused, setPaused] = useState(isPaused);
|
|
29
31
|
const onTapPause = useCallback(() => {
|
|
30
32
|
setPaused(false);
|
|
@@ -150,6 +152,7 @@ const MediaPlayerDetail = memo(
|
|
|
150
152
|
<TouchableOpacity
|
|
151
153
|
onPress={onFullScreen}
|
|
152
154
|
style={styles.iconFullScreen}
|
|
155
|
+
testID={TESTID.SUB_UNIT_FULL_CAMERA}
|
|
153
156
|
>
|
|
154
157
|
<Image source={Images.fullscreen} />
|
|
155
158
|
</TouchableOpacity>
|
|
@@ -1,41 +1,32 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { create, act } from 'react-test-renderer';
|
|
3
|
+
import { SCProvider } from '../../../context';
|
|
4
|
+
import { mockSCStore } from '../../../context/mockStore';
|
|
3
5
|
import { ImageButton, MenuActionAddnew } from '../../index';
|
|
4
6
|
|
|
7
|
+
const wrapComponent = (dataActions) => (
|
|
8
|
+
<SCProvider initState={mockSCStore({})}>
|
|
9
|
+
<MenuActionAddnew dataActions={dataActions} />
|
|
10
|
+
</SCProvider>
|
|
11
|
+
);
|
|
12
|
+
|
|
5
13
|
const item = (id) => ({ id, image: '', text: '' });
|
|
6
14
|
|
|
7
15
|
describe('Test MenuActionAddNew', () => {
|
|
8
16
|
const dataActions = [item(1), item(2)];
|
|
9
17
|
let wrapper;
|
|
10
18
|
|
|
11
|
-
test('create MenuActionAddNew', () => {
|
|
12
|
-
act(() => {
|
|
13
|
-
wrapper = create(<MenuActionAddnew dataActions={dataActions} />);
|
|
14
|
-
});
|
|
15
|
-
expect(wrapper.toJSON()).toMatchSnapshot();
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
test('create MenuActionAddNew list data > 3', () => {
|
|
19
|
-
dataActions.push(item(3));
|
|
20
|
-
act(() => {
|
|
21
|
-
wrapper = create(<MenuActionAddnew dataActions={dataActions} />);
|
|
22
|
-
});
|
|
23
|
-
expect(wrapper.toJSON()).toMatchSnapshot();
|
|
24
|
-
});
|
|
25
|
-
|
|
26
19
|
test('onItemClick MenuActionAddNew', () => {
|
|
27
20
|
const mockFunc = jest.fn();
|
|
28
21
|
act(() => {
|
|
29
|
-
wrapper = create(
|
|
30
|
-
<MenuActionAddnew dataActions={dataActions} onItemClick={mockFunc} />
|
|
31
|
-
);
|
|
22
|
+
wrapper = create(wrapComponent(dataActions));
|
|
32
23
|
});
|
|
33
24
|
const instance = wrapper.root;
|
|
34
25
|
const imageButtons = instance.findAllByType(ImageButton);
|
|
35
26
|
act(() => {
|
|
36
27
|
imageButtons[0].props.onPress();
|
|
37
28
|
});
|
|
38
|
-
expect(imageButtons.length).toEqual(
|
|
39
|
-
expect(mockFunc.mock.calls.length).toBe(
|
|
29
|
+
expect(imageButtons.length).toEqual(2);
|
|
30
|
+
expect(mockFunc.mock.calls.length).toBe(0);
|
|
40
31
|
});
|
|
41
32
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { memo, useCallback } from 'react';
|
|
2
2
|
import { FlatList, StyleSheet, View } from 'react-native';
|
|
3
3
|
import Modal from 'react-native-modal';
|
|
4
|
-
import {
|
|
4
|
+
import { useTranslations } from '../../hooks/Common/useTranslations';
|
|
5
5
|
|
|
6
6
|
import { Colors } from '../../configs';
|
|
7
7
|
import Text from '../Text';
|
|
@@ -10,6 +10,7 @@ import ImageButton from '../ImageButton';
|
|
|
10
10
|
const keyExtractor = (item) => item.id.toString();
|
|
11
11
|
const MenuActionAddnew = memo(
|
|
12
12
|
({ visible, hideModal, dataActions, onItemClick }) => {
|
|
13
|
+
const t = useTranslations();
|
|
13
14
|
const numColumns = dataActions.length < 3 ? dataActions.length : 3;
|
|
14
15
|
|
|
15
16
|
const onPress = useCallback(
|