@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.
Files changed (404) hide show
  1. package/README.md +1 -1
  2. package/assets/images/Add.svg +5 -0
  3. package/assets/images/AddLocationMaps/Point.svg +3 -0
  4. package/assets/images/CheckCircle.svg +4 -0
  5. package/assets/images/Close.svg +3 -0
  6. package/assets/images/HowToStart.svg +14 -0
  7. package/assets/images/Illustrations.svg +83 -0
  8. package/assets/images/OneTap.svg +14 -0
  9. package/assets/images/OneTap@1x.svg +14 -0
  10. package/assets/images/Rearrange.svg +3 -0
  11. package/assets/images/Schedule.svg +39 -0
  12. package/assets/images/ValueChange.svg +49 -0
  13. package/index.js +2 -0
  14. package/package.json +14 -2
  15. package/src/Images/Common/ActiveButton.png +0 -0
  16. package/src/Images/Common/ActiveButton@2x.png +0 -0
  17. package/src/Images/Common/ActiveButton@3x.png +0 -0
  18. package/src/Images/Common/arrow-back.png +0 -0
  19. package/src/Images/Common/checked@2x.png +0 -0
  20. package/src/Images/Common/checked@3x.png +0 -0
  21. package/src/Images/Common/file.png +0 -0
  22. package/src/Images/Common/fullscreen.png +0 -0
  23. package/src/Images/Common/refresh.png +0 -0
  24. package/src/commons/ActionGroup/NumberUpDownActionTemplate.js +1 -1
  25. package/src/commons/ActionGroup/OnOffTemplate/index.js +9 -4
  26. package/src/commons/ActionGroup/OptionsDropdownActionTemplate.js +4 -3
  27. package/src/commons/ActionGroup/StatesGridActionTemplate.js +2 -2
  28. package/src/commons/ActionGroup/ThreeButtonTemplate.js +13 -6
  29. package/src/commons/ActionGroup/ThreeButtonTemplateStyle.js +1 -1
  30. package/src/commons/ActionGroup/TimerActionTemplate.js +158 -33
  31. package/src/commons/ActionGroup/__test__/NumberUpDownTemplate.test.js +294 -0
  32. package/src/commons/ActionGroup/__test__/NumberUpDownTemplateWithNullConfigValue.test.js +60 -0
  33. package/src/commons/ActionGroup/__test__/OnOffButtonTemplate.test.js +8 -13
  34. package/src/commons/ActionGroup/__test__/OnOffTemplate.test.js +3 -3
  35. package/src/commons/ActionGroup/__test__/OptionsDropdownTemplate.test.js +26 -45
  36. package/src/commons/ActionGroup/__test__/ThreeButtonTemplate.test.js +11 -5
  37. package/src/commons/ActionGroup/__test__/TimerActionTemplate.test.js +14 -8
  38. package/src/commons/ActionGroup/__test__/TimerActionTemplateWithutConfigValue.test.js +17 -23
  39. package/src/commons/ActionGroup/__test__/__snapshots__/ThreeButtonTemplate.test.js.snap +241 -223
  40. package/src/commons/ActionGroup/__test__/index.test.js +39 -107
  41. package/src/commons/ActionGroup/hooks/useDropdownAction.js +2 -1
  42. package/src/commons/ActionTemplate/ActionTemplateStyles.js +14 -0
  43. package/src/commons/ActionTemplate/OnOffButtonAction.js +40 -0
  44. package/src/commons/ActionTemplate/OnOffButtonActionStyles.js +11 -0
  45. package/src/commons/ActionTemplate/OneButtonAction.js +26 -0
  46. package/src/commons/ActionTemplate/OneButtonActionStyles.js +11 -0
  47. package/src/commons/ActionTemplate/ThreeButtonAction.js +55 -0
  48. package/src/commons/ActionTemplate/ThreeButtonActionStyles.js +11 -0
  49. package/src/commons/ActionTemplate/__test__/OnOffButtonAction.test.js +34 -0
  50. package/src/commons/ActionTemplate/__test__/OneButtonAction.test.js +33 -0
  51. package/src/commons/ActionTemplate/__test__/ThreeButtonAction.test.js +35 -0
  52. package/src/commons/ActionTemplate/__test__/index.test.js +71 -0
  53. package/src/commons/ActionTemplate/index.js +69 -0
  54. package/src/commons/AlertAction/__test__/AlertAction.test.js +6 -6
  55. package/src/commons/AlertAction/index.js +2 -0
  56. package/src/commons/Automate/ItemAddNewScriptActionStyles.js +38 -0
  57. package/src/commons/Automate/ItemAutomate.js +39 -0
  58. package/src/commons/Automate/ItemAutomateStyles.js +33 -0
  59. package/src/commons/Automate/ItemScriptAction.js +45 -0
  60. package/src/commons/Automate/ItemScriptActionStyles.js +42 -0
  61. package/src/commons/Automate/__test__/ItemAutomate.test.js +16 -0
  62. package/src/commons/Automate/__test__/ItemScriptAction.test.js +16 -0
  63. package/src/commons/BackDefault/__test__/BackDefault.test.js +21 -0
  64. package/src/commons/BottomScrollPicker/index.js +62 -0
  65. package/src/commons/BottomScrollPicker/styles.js +13 -0
  66. package/src/commons/BottomSheet/index.js +41 -0
  67. package/src/commons/BottomSheet/styles.js +37 -0
  68. package/src/commons/Button/index.js +6 -1
  69. package/src/commons/ButtonPopup/__test__/__snapshots__/ButtonPopup.test.js.snap +2 -0
  70. package/src/commons/ButtonPopup/index.js +2 -0
  71. package/src/commons/Calendar/index.js +72 -0
  72. package/src/commons/Calendar/styles.js +11 -0
  73. package/src/commons/CameraDevice/index.js +2 -1
  74. package/src/commons/ChartLoading/__test__/ChartLoading.test.js +9 -7
  75. package/src/commons/ChartLoading/index.js +2 -1
  76. package/src/commons/DateTimeRangeChange/index.js +2 -1
  77. package/src/commons/Device/ConnectedViewHeader.js +3 -1
  78. package/src/commons/Device/DeviceAlertStatus.js +5 -2
  79. package/src/commons/Device/DisconnectedView.js +34 -26
  80. package/src/commons/Device/Emergency/EmergencyButton.js +2 -1
  81. package/src/commons/Device/Emergency/EmergencyDetail.js +2 -1
  82. package/src/commons/Device/Emergency/__test__/EmergencyButton.test.js +14 -6
  83. package/src/commons/Device/Emergency/__test__/EmergencyDetail.test.js +10 -2
  84. package/src/commons/Device/FlatListItems.js +3 -2
  85. package/src/commons/Device/FooterInfo.js +2 -1
  86. package/src/commons/Device/HistoryChart.js +2 -1
  87. package/src/commons/Device/ItemAddNew/index.js +8 -3
  88. package/src/commons/Device/SensorConnectedStatus.js +2 -1
  89. package/src/commons/Device/WindDirection/Compass/Compass.test.js +19 -11
  90. package/src/commons/Device/WindDirection/Compass/index.js +1 -1
  91. package/src/commons/Device/WindSpeed/LinearChart/__test__/LinearChart.test.js +9 -3
  92. package/src/commons/Device/WindSpeed/LinearChart/__test__/__snapshots__/LinearChart.test.js.snap +0 -81
  93. package/src/commons/Device/WindSpeed/LinearChart/index.js +2 -1
  94. package/src/commons/Device/__test__/ConnectedViewHeader.test.js +16 -8
  95. package/src/commons/Device/__test__/DeviceAlertStatus.test.js +13 -5
  96. package/src/commons/Device/__test__/DisconnectedView.test.js +13 -5
  97. package/src/commons/Device/__test__/FlatListItems.test.js +9 -1
  98. package/src/commons/Device/__test__/FooterInfo.test.js +13 -4
  99. package/src/commons/Device/__test__/SensorConnectedStatus.test.js +9 -1
  100. package/src/commons/Device/__test__/__snapshots__/DisconnectedView.test.js.snap +20 -20
  101. package/src/commons/DisplayChecking/__test__/DisplayChecking.test.js +28 -0
  102. package/src/commons/EmergencyButton/AlertSendConfirm.js +2 -1
  103. package/src/commons/EmergencyButton/AlertSent.js +3 -2
  104. package/src/commons/Explore/CityItem/index.js +2 -1
  105. package/src/commons/Explore/HeaderExplore/index.js +2 -1
  106. package/src/commons/Explore/HeaderLabel/index.js +2 -1
  107. package/src/commons/Explore/SearchBox/__test__/SearchBox.test.js +9 -2
  108. package/src/commons/Explore/SearchBox/index.js +2 -1
  109. package/src/commons/Explore/__test__/CityItem.test.js +13 -15
  110. package/src/commons/Explore/__test__/HeaderExplore.test.js +11 -7
  111. package/src/commons/Explore/__test__/HeaderLabel.test.js +15 -9
  112. package/src/commons/Explore/__test__/LocationItem.test.js +31 -0
  113. package/src/commons/Header/HeaderCustom.js +22 -2
  114. package/src/commons/Header/Styles/HeaderCustomStyles.js +2 -2
  115. package/src/commons/Header/__test__/HeaderCT.test.js +12 -4
  116. package/src/commons/HeaderAni/index.js +36 -5
  117. package/src/commons/HorizontalPicker/index.js +134 -0
  118. package/src/commons/HorizontalPicker/styles.js +56 -0
  119. package/src/commons/ImagePicker/__test__/ImagePicker.test.js +19 -13
  120. package/src/commons/ImagePicker/index.js +3 -1
  121. package/src/commons/MediaPlayer/index.js +2 -1
  122. package/src/commons/MediaPlayerDetail/__test__/MediaPlayerDetail.test.js +14 -8
  123. package/src/commons/MediaPlayerDetail/index.js +4 -1
  124. package/src/commons/MenuActionAddnew/__test__/MenuActionAddNew.test.js +11 -20
  125. package/src/commons/MenuActionAddnew/index.js +2 -1
  126. package/src/commons/Modal/ModalBottom.js +51 -0
  127. package/src/commons/Modal/ModalFullVideo.js +2 -1
  128. package/src/commons/Modal/Styles/ModalBottomStyles.js +35 -0
  129. package/src/commons/Modal/__test__/ModalBottom.test.js +39 -0
  130. package/src/commons/Modal/index.js +2 -1
  131. package/src/commons/NavBar/index.js +2 -2
  132. package/src/commons/RowItem/__test__/RowItem.test.js +16 -0
  133. package/src/commons/RowItem/index.js +61 -0
  134. package/src/commons/RowItem/styles.js +53 -0
  135. package/src/commons/SelectActionCard/SelectActionStyles.js +16 -0
  136. package/src/commons/SelectActionCard/index.js +30 -0
  137. package/src/commons/Sharing/DevicePermissionsCheckbox.js +2 -1
  138. package/src/commons/Sharing/MemberList.js +3 -1
  139. package/src/commons/Sharing/RowMember.js +3 -2
  140. package/src/commons/Sharing/StationDevicePermissions.js +2 -1
  141. package/src/commons/Sharing/WrapHeaderScrollable.js +78 -74
  142. package/src/commons/Sharing/__test__/DevicePermissionsCheckbox.test.js +15 -9
  143. package/src/commons/Sharing/__test__/MemberList.test.js +17 -25
  144. package/src/commons/Sharing/__test__/StationDevicePermission.test.js +17 -12
  145. package/src/commons/Sharing/__test__/WrapHeaderScrollable.test.js +0 -9
  146. package/src/commons/SubUnit/OneTap/ItemOneTap.js +101 -0
  147. package/src/commons/SubUnit/OneTap/ItemOneTapStyles.js +41 -0
  148. package/src/commons/SubUnit/OneTap/OneTapStyles.js +36 -0
  149. package/src/commons/SubUnit/OneTap/__test__/SubUnitAutomate.test.js +195 -0
  150. package/src/commons/SubUnit/OneTap/index.js +39 -0
  151. package/src/commons/SubUnit/ShortDetail.js +11 -6
  152. package/src/commons/SubUnit/__test__/ShortDetail.test.js +14 -6
  153. package/src/commons/Today/__test__/Today.test.js +9 -1
  154. package/src/commons/Today/__test__/__snapshots__/Today.test.js.snap +1 -1
  155. package/src/commons/Today/index.js +2 -1
  156. package/src/commons/Unit/SharedUnit.js +2 -1
  157. package/src/commons/Unit/__test__/SharedUnit.test.js +330 -0
  158. package/src/commons/UnitSummary/AirQuality/SegmentedRoundDisplay/index.js +1 -2
  159. package/src/commons/UnitSummary/AirQuality/__test__/index.test.js +16 -17
  160. package/src/commons/UnitSummary/AirQuality/index.js +5 -120
  161. package/src/commons/UnitSummary/AirQuality/styles.js +112 -0
  162. package/src/commons/UnitSummary/TotalPowerConsumption/index.js +2 -1
  163. package/src/commons/UnitSummary/__test__/TotalPowerConsumption.test.js +15 -9
  164. package/src/commons/WheelDateTimePicker/Picker.js +57 -0
  165. package/src/commons/WheelDateTimePicker/index.js +168 -0
  166. package/src/commons/WheelDateTimePicker/styles.js +21 -0
  167. package/src/commons/index.js +2 -0
  168. package/src/configs/API.js +29 -0
  169. package/src/configs/Colors.js +1 -0
  170. package/src/configs/Constants.js +61 -0
  171. package/src/configs/Images.js +1 -0
  172. package/src/configs/SCConfig.js +7 -0
  173. package/src/configs/Theme.js +20 -0
  174. package/src/context/SCContext.tsx +9 -39
  175. package/src/context/actionType.ts +11 -0
  176. package/src/context/mockStore.ts +51 -0
  177. package/src/context/reducer.ts +23 -0
  178. package/src/hooks/Common/__test__/useStatusbar.test.js +28 -0
  179. package/src/hooks/Common/__test__/useTranslations.test.js +23 -0
  180. package/src/hooks/Common/index.js +2 -0
  181. package/src/hooks/Common/useGetIdUser.js +9 -0
  182. package/src/hooks/Common/useTranslations.ts +34 -0
  183. package/src/iot/Monitor.js +2 -1
  184. package/src/iot/RemoteControl/Bluetooth.js +2 -6
  185. package/src/iot/RemoteControl/GoogleHome.js +1 -1
  186. package/src/iot/RemoteControl/Internet.js +1 -1
  187. package/src/iot/RemoteControl/LG.js +57 -15
  188. package/src/iot/RemoteControl/__test__/Bluetooth.test.js +3 -5
  189. package/src/iot/RemoteControl/__test__/GoogleHome.test.js +3 -3
  190. package/src/iot/RemoteControl/__test__/Internet.test.js +1 -8
  191. package/src/iot/RemoteControl/__test__/LgThinq.test.js +7 -10
  192. package/src/iot/RemoteControl/index.js +1 -1
  193. package/src/iot/states.js +1 -0
  194. package/src/navigations/AutomateStack.js +45 -0
  195. package/src/navigations/SharedStack.js +2 -1
  196. package/src/navigations/UnitStack.js +86 -6
  197. package/src/navigations/utils.js +8 -0
  198. package/src/screens/AQIGuide/__test__/AQIGuide.test.js +9 -1
  199. package/src/screens/AQIGuide/index.js +2 -2
  200. package/src/screens/ActivityLog/__test__/index.test.js +14 -39
  201. package/src/screens/ActivityLog/index.js +2 -1
  202. package/src/screens/AddCommon/SelectSubUnit.js +5 -4
  203. package/src/screens/AddCommon/SelectUnit.js +3 -2
  204. package/src/screens/AddCommon/__test__/SelectSubUnit.test.js +61 -0
  205. package/src/screens/AddCommon/__test__/SelectUnit.test.js +18 -10
  206. package/src/screens/AddLocationMaps/index.js +2 -1
  207. package/src/screens/AddNewAction/Components/LoadingSelectAction.js +40 -0
  208. package/src/screens/AddNewAction/Components/index.js +3 -0
  209. package/src/screens/AddNewAction/Device/DeviceStyles.js +43 -0
  210. package/src/screens/AddNewAction/Device/__test__/index.test.js +42 -0
  211. package/src/screens/AddNewAction/Device/index.js +33 -0
  212. package/src/screens/AddNewAction/SelectAction.js +237 -0
  213. package/src/screens/AddNewAction/SelectSensorDevices.js +150 -0
  214. package/src/screens/AddNewAction/SetupSensor.js +221 -0
  215. package/src/screens/AddNewAction/Styles/SelectActionStyles.js +62 -0
  216. package/src/screens/AddNewAction/Styles/SelectSensorDevicesStyles.js +36 -0
  217. package/src/screens/AddNewAction/Styles/SetupSensorStyles.js +76 -0
  218. package/src/screens/AddNewAction/__test__/SelectAction.test.js +153 -0
  219. package/src/screens/AddNewAction/__test__/SelectSensorDevices.test.js +191 -0
  220. package/src/screens/AddNewAction/__test__/SetupSensor.test.js +125 -0
  221. package/src/screens/AddNewAutoSmart/__test__/AddNewAutoSmart.test.js +112 -0
  222. package/src/screens/AddNewAutoSmart/index.js +113 -0
  223. package/src/screens/AddNewAutoSmart/styles/AddNewAutoSmartStyles.js +36 -0
  224. package/src/screens/AddNewDevice/ConnectDevices.js +2 -1
  225. package/src/screens/AddNewDevice/ConnectingDevices.js +2 -1
  226. package/src/screens/AddNewDevice/__test__/AddNewDevice.test.js +29 -13
  227. package/src/screens/AddNewDevice/__test__/ConnectDevices.test.js +19 -7
  228. package/src/screens/AddNewDevice/__test__/ConnectingDevices.test.js +16 -6
  229. package/src/screens/AddNewDevice/hooks/useStateAlertRename.js +2 -1
  230. package/src/screens/AddNewDevice/index.js +2 -1
  231. package/src/screens/AddNewGateway/ConnectedGateway.js +2 -1
  232. package/src/screens/AddNewGateway/ConnectingGateway.js +99 -24
  233. package/src/screens/AddNewGateway/ConnectingGatewayStyles.js +92 -0
  234. package/src/screens/AddNewGateway/SetupGatewayWifi.js +3 -2
  235. package/src/screens/AddNewGateway/__test__/AddNewGateway.test.js +35 -72
  236. package/src/screens/AddNewGateway/__test__/ConnectedGateway.test.js +14 -4
  237. package/src/screens/AddNewGateway/__test__/ConnectingGateway.test.js +20 -10
  238. package/src/screens/AddNewGateway/hooks/useStateAlertRename.js +2 -1
  239. package/src/screens/AddNewGateway/index.js +2 -1
  240. package/src/screens/AddNewOneTap/AddNewOneTapStyles.js +44 -0
  241. package/src/screens/AddNewOneTap/__test__/AddNewOneTap.test.js +130 -0
  242. package/src/screens/AddNewOneTap/index.js +83 -0
  243. package/src/screens/AllCamera/__test__/index.test.js +103 -0
  244. package/src/screens/AllCamera/index.js +2 -1
  245. package/src/screens/Automate/Components/Loading.js +64 -0
  246. package/src/screens/Automate/Styles/indexStyles.js +64 -0
  247. package/src/screens/Automate/__test__/Loading.test.js +16 -0
  248. package/src/screens/Automate/__test__/index.test.js +93 -0
  249. package/src/screens/Automate/index.js +148 -0
  250. package/src/screens/Device/HeaderDevice/styles.js +2 -2
  251. package/src/screens/Device/__test__/detail.test.js +90 -18
  252. package/src/screens/Device/detail.js +73 -35
  253. package/src/screens/Device/hooks/useCountUp.js +4 -0
  254. package/src/screens/Device/hooks/useEmergencyButton.js +3 -2
  255. package/src/screens/Device/styles.js +5 -1
  256. package/src/screens/DeviceInfo/__test__/index.test.js +12 -3
  257. package/src/screens/DeviceInfo/index.js +2 -1
  258. package/src/screens/EditActionsList/Styles/indexStyles.js +84 -0
  259. package/src/screens/EditActionsList/index.js +186 -0
  260. package/src/screens/EmergencyContacts/EmergencyContactsAddNew.js +3 -2
  261. package/src/screens/EmergencyContacts/EmergencyContactsList.js +9 -2
  262. package/src/screens/EmergencyContacts/EmergencyContactsSelectContacts.js +2 -1
  263. package/src/screens/EmergencyContacts/__test__/EmergencyContactAddNew.test.js +15 -18
  264. package/src/screens/EmergencyContacts/__test__/EmergencyContactList.test.js +19 -23
  265. package/src/screens/EmergencyContacts/__test__/EmergencyContactsSelectContacts.test.js +10 -25
  266. package/src/screens/EmergencyContacts/hook.js +3 -2
  267. package/src/screens/Explore/index.js +3 -2
  268. package/src/screens/GuestInfo/__test__/index.test.js +176 -0
  269. package/src/screens/GuestInfo/components/AccessScheduleItem.js +32 -0
  270. package/src/screens/GuestInfo/components/AccessScheduleSheet.js +204 -0
  271. package/src/screens/GuestInfo/components/HeaderGuestInfo.js +36 -0
  272. package/src/screens/GuestInfo/components/RecurringDetail.js +106 -0
  273. package/src/screens/GuestInfo/components/RowGuestInfo.js +31 -0
  274. package/src/screens/GuestInfo/components/TemporaryDetail.js +53 -0
  275. package/src/screens/GuestInfo/constant.js +59 -0
  276. package/src/screens/GuestInfo/index.js +150 -0
  277. package/src/screens/GuestInfo/styles/AccessScheduleDetailStyles.js +31 -0
  278. package/src/screens/GuestInfo/styles/AccessScheduleItemStyles.js +22 -0
  279. package/src/screens/GuestInfo/styles/HeaderGuestInfoStyles.js +31 -0
  280. package/src/screens/GuestInfo/styles/indexStyles.js +38 -0
  281. package/src/screens/ManageAccess/__test__/ManageAccess.test.js +13 -1
  282. package/src/screens/ManageAccess/hooks/index.js +4 -0
  283. package/src/screens/ManageAccess/index.js +49 -20
  284. package/src/screens/ManageAccess/styles/ManageAccessStyles.js +3 -0
  285. package/src/screens/PlayBackCamera/Timer.js +1 -1
  286. package/src/screens/PlayBackCamera/index.js +9 -5
  287. package/src/screens/ScanChipQR/__test__/ScanChipQR.test.js +2 -11
  288. package/src/screens/ScanChipQR/components/QRScan/index.js +2 -1
  289. package/src/screens/ScriptDetail/Styles/indexStyles.js +157 -0
  290. package/src/screens/ScriptDetail/__test__/index.test.js +119 -0
  291. package/src/screens/ScriptDetail/hooks/index.js +55 -0
  292. package/src/screens/ScriptDetail/index.js +344 -0
  293. package/src/screens/SelectUnit/Styles/indexStyles.js +55 -0
  294. package/src/screens/SelectUnit/__test__/index.test.js +85 -0
  295. package/src/screens/SelectUnit/index.js +100 -0
  296. package/src/screens/SetSchedule/__test__/index.test.js +97 -0
  297. package/src/screens/SetSchedule/components/RepeatOptionsPopup.js +56 -0
  298. package/src/screens/SetSchedule/components/RowItem.js +27 -0
  299. package/src/screens/SetSchedule/components/SelectWeekday.js +65 -0
  300. package/src/screens/SetSchedule/index.js +139 -0
  301. package/src/screens/SetSchedule/styles/RepeatOptionsPopupStyles.js +22 -0
  302. package/src/screens/SetSchedule/styles/RowItemStyles.js +29 -0
  303. package/src/screens/SetSchedule/styles/SelectWeekdayStyles.js +26 -0
  304. package/src/screens/SetSchedule/styles/indexStyles.js +22 -0
  305. package/src/screens/SharedUnit/TabHeader.js +2 -1
  306. package/src/screens/SharedUnit/__test__/TabHeader.test.js +40 -0
  307. package/src/screens/SharedUnit/index.js +3 -2
  308. package/src/screens/Sharing/MemberList.js +2 -1
  309. package/src/screens/Sharing/SelectPermission.js +2 -1
  310. package/src/screens/Sharing/SelectUser.js +3 -2
  311. package/src/screens/Sharing/__test__/MemberList.test.js +25 -28
  312. package/src/screens/Sharing/__test__/SelectPermission.test.js +16 -8
  313. package/src/screens/Sharing/__test__/SelectUser.test.js +33 -15
  314. package/src/screens/Sharing/hooks/index.js +22 -17
  315. package/src/screens/SubUnit/AddSubUnit.js +3 -2
  316. package/src/screens/SubUnit/Detail.js +5 -4
  317. package/src/screens/SubUnit/EditSubUnit.js +274 -0
  318. package/src/screens/SubUnit/EditSubUnitStyles.js +119 -0
  319. package/src/screens/SubUnit/ManageSubUnit.js +114 -371
  320. package/src/screens/SubUnit/ManageSubUnitStyles.js +40 -0
  321. package/src/screens/SubUnit/__test__/AddSubUnit.test.js +17 -11
  322. package/src/screens/SubUnit/__test__/Detail.test.js +11 -31
  323. package/src/screens/SubUnit/__test__/EditSubUnit.test.js +427 -0
  324. package/src/screens/SubUnit/__test__/ManageSubUnit.test.js +51 -384
  325. package/src/screens/SubUnit/hooks/__test__/useManageSubUnit.test.js +85 -0
  326. package/src/screens/SubUnit/hooks/useManageSubUnit.js +35 -0
  327. package/src/screens/SyncLGDevice/AddLGDevice.js +3 -2
  328. package/src/screens/TDSGuide/__test__/TDSGuide.test.js +9 -1
  329. package/src/screens/TDSGuide/index.js +2 -1
  330. package/src/screens/UVIndexGuide/__test__/UVIndexGuide.test.js +9 -1
  331. package/src/screens/UVIndexGuide/index.js +2 -1
  332. package/src/screens/Unit/AddMenu.js +3 -2
  333. package/src/screens/Unit/Detail.js +66 -20
  334. package/src/screens/Unit/ManageUnit/index.js +4 -3
  335. package/src/screens/Unit/ManageUnit.js +15 -4
  336. package/src/screens/Unit/MoreMenu.js +3 -2
  337. package/src/screens/Unit/SelectLocation.js +8 -2
  338. package/src/screens/Unit/SelectLocationStyles.js +11 -0
  339. package/src/screens/Unit/__test__/AddMenu.test.js +15 -15
  340. package/src/screens/Unit/__test__/CheckSendEmail.test.js +19 -10
  341. package/src/screens/Unit/__test__/Detail.test.js +92 -33
  342. package/src/screens/Unit/__test__/ManageUnit.test.js +16 -23
  343. package/src/screens/Unit/components/Header/index.js +2 -1
  344. package/src/screens/Unit/components/ListMyAllUnit/index.js +2 -1
  345. package/src/screens/Unit/components/MyUnit/index.js +2 -1
  346. package/src/screens/Unit/components/SearchLocation/__test__/RowLocation.test.js +36 -0
  347. package/src/screens/Unit/components/SearchLocation/index.js +2 -1
  348. package/src/screens/Unit/components/SharedUnit/index.js +2 -1
  349. package/src/screens/Unit/components/__test__/MyUnit.test.js +22 -72
  350. package/src/screens/Unit/components/__test__/MyUnitDevice.test.js +32 -0
  351. package/src/screens/Unit/components/__test__/SharedUnit.test.js +11 -2
  352. package/src/screens/UnitSummary/__test__/index.test.js +12 -4
  353. package/src/screens/UnitSummary/components/3PPowerConsumption/__test__/3PPowerConsumption.test.js +13 -3
  354. package/src/screens/UnitSummary/components/3PPowerConsumption/index.js +2 -1
  355. package/src/screens/UnitSummary/components/PowerConsumption/__test__/PowerConsumption.test.js +16 -12
  356. package/src/screens/UnitSummary/components/PowerConsumption/index.js +2 -1
  357. package/src/screens/UnitSummary/components/RunningDevices/__test__/index.test.js +2 -2
  358. package/src/screens/UnitSummary/components/Temperature/index.js +2 -1
  359. package/src/screens/UnitSummary/components/TotalPowerConsumption/index.js +2 -1
  360. package/src/screens/UnitSummary/components/UvIndex/__test__/__snapshots__/index.test.js.snap +37 -37
  361. package/src/screens/UnitSummary/components/UvIndex/__test__/index.test.js +14 -6
  362. package/src/screens/UnitSummary/components/UvIndex/index.js +2 -1
  363. package/src/screens/UnitSummary/components/WaterQuality/__test__/index.test.js +11 -5
  364. package/src/screens/UnitSummary/components/WaterQuality/index.js +2 -1
  365. package/src/screens/UnitSummary/components/__test__/TotalPowerConsumption.test.js +13 -7
  366. package/src/screens/UnitSummary/components/__test__/UnitSummary.test.js +67 -0
  367. package/src/screens/UnitSummary/components/__test__/index.test.js +48 -0
  368. package/src/screens/UnitSummary/components/index.js +1 -37
  369. package/src/screens/UnitSummary/components/indexstyles.js +39 -0
  370. package/src/screens/UnitSummary/index.js +2 -1
  371. package/src/screens/WaterQualityGuide/__test__/index.test.js +12 -12
  372. package/src/screens/WaterQualityGuide/index.js +2 -1
  373. package/src/utils/Apis/axios.js +0 -4
  374. package/src/utils/Converter/array.js +4 -0
  375. package/src/utils/Converter/time.js +29 -4
  376. package/src/utils/I18n/index.ts +6 -0
  377. package/src/utils/I18n/translations/en.json +77 -5
  378. package/src/utils/I18n/translations/vi.json +73 -3
  379. package/src/utils/I18n/translations.ts +45 -0
  380. package/src/utils/Route/index.js +13 -0
  381. package/src/utils/__test__/InitData.test.js +20 -0
  382. package/src/commons/ChartLoading/__test__/__snapshots__/ChartLoading.test.js.snap +0 -66
  383. package/src/commons/Device/HistoryChart/__test__/HistoryChart.test.js +0 -57
  384. package/src/commons/Device/HistoryChart/__test__/__snapshots__/HistoryChart.test.js.snap +0 -593
  385. package/src/commons/Explore/SearchBox/__test__/__snapshots__/SearchBox.test.js.snap +0 -59
  386. package/src/commons/Header/__test__/Header.test.js +0 -24
  387. package/src/commons/MenuActionAddnew/__test__/__snapshots__/MenuActionAddNew.test.js.snap +0 -788
  388. package/src/commons/Sharing/__test__/__snapshots__/WrapHeaderScrollable.test.js.snap +0 -174
  389. package/src/commons/UnitSummary/AirQuality/__test__/__snapshots__/index.test.js.snap +0 -26679
  390. package/src/iot/RemoteControl/__test__/index.test.js +0 -101
  391. package/src/iot/__test__/Monitor.test.js +0 -119
  392. package/src/screens/EmergencyContacts/__test__/__snapshots__/EmergencyContactAddNew.test.js.snap +0 -1706
  393. package/src/screens/EmergencyContacts/__test__/__snapshots__/EmergencyContactList.test.js.snap +0 -4276
  394. package/src/screens/EmergencyContacts/__test__/__snapshots__/EmergencyContactsSelectContacts.test.js.snap +0 -2240
  395. package/src/screens/SyncLGDevice/__test__/AddLGDevice.test.js +0 -358
  396. package/src/screens/Unit/MyAllUnit/__test__/__snapshots__/index.test.js.snap +0 -1001
  397. package/src/screens/Unit/MyAllUnit/__test__/index.test.js +0 -48
  398. package/src/screens/Unit/components/MyAllUnit/__test__/__snapshots__/index.test.js.snap +0 -1001
  399. package/src/screens/Unit/components/MyAllUnit/__test__/index.test.js +0 -48
  400. package/src/screens/UnitSummary/components/WaterQuality/__test__/__snapshots__/index.test.js.snap +0 -1574
  401. package/src/screens/WaterQualityGuide/__test__/__snapshots__/index.test.js.snap +0 -3375
  402. package/src/utils/Converter/__test__/time.test.js +0 -126
  403. package/src/utils/I18n/index.js +0 -19
  404. package/src/utils/I18n/index.test.js +0 -7
@@ -1,3375 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Test WaterQualityGuide render WaterQualityGuide default turbidityGuide 1`] = `
4
- <RCTSafeAreaView
5
- emulateUnlessSupported={true}
6
- style={
7
- Object {
8
- "backgroundColor": "#FFFFFF",
9
- "flex": 1,
10
- }
11
- }
12
- >
13
- <RCTScrollView
14
- style={
15
- Object {
16
- "backgroundColor": "#FFFFFF",
17
- "flex": 1,
18
- }
19
- }
20
- >
21
- <View>
22
- <View
23
- style={
24
- Object {
25
- "marginBottom": 28,
26
- }
27
- }
28
- >
29
- <View>
30
- <Text
31
- style={
32
- Array [
33
- Object {
34
- "color": "#262626",
35
- "fontFamily": "SFProDisplay-Semibold",
36
- "fontSize": 20,
37
- "lineHeight": 20,
38
- "textAlign": "left",
39
- "textDecorationLine": "none",
40
- },
41
- Object {
42
- "lineHeight": 28,
43
- "marginBottom": 8,
44
- "marginHorizontal": 16,
45
- "marginTop": 24,
46
- },
47
- ]
48
- }
49
- testID="WATER_QUALITY_GUIDE_TITLE"
50
- >
51
- Độ đục của nước là gì?
52
- </Text>
53
- <Text
54
- style={
55
- Array [
56
- Object {
57
- "color": "#595959",
58
- "fontFamily": "SFProDisplay-Regular",
59
- "fontSize": 14,
60
- "lineHeight": 14,
61
- "textAlign": "left",
62
- "textDecorationLine": "none",
63
- },
64
- Object {
65
- "lineHeight": 28,
66
- "marginHorizontal": 16,
67
- },
68
- ]
69
- }
70
- testID="WATER_QUALITY_GUIDE_DESCRIPTION"
71
- >
72
- Độ đục của nước là thước đo độ trong tương đối của nước. Độ đục là một đặc tính quang học của nước và là một biểu hiện của lượng ánh sáng được phân tán bởi vật liệu trong nước khi ánh sáng được chiếu xuyên qua mẫu nước. Cường độ ánh sáng càng cao thì độ đục càng cao. Độ đục có thể đến từ các hạt vật chất lơ lửng như bùn, đất sét, vật liêu vô cơ hoặc các chất hữu cơ như tảo, sinh vật phù du, vật liệu phân rã.
73
- </Text>
74
- </View>
75
- <View>
76
- <Text
77
- style={
78
- Array [
79
- Object {
80
- "color": "#262626",
81
- "fontFamily": "SFProDisplay-Semibold",
82
- "fontSize": 20,
83
- "lineHeight": 20,
84
- "textAlign": "left",
85
- "textDecorationLine": "none",
86
- },
87
- Object {
88
- "lineHeight": 28,
89
- "marginBottom": 8,
90
- "marginHorizontal": 16,
91
- "marginTop": 24,
92
- },
93
- ]
94
- }
95
- testID="WATER_QUALITY_GUIDE_TITLE"
96
- >
97
- Hướng dẫn về độ đục cho nước uống
98
- </Text>
99
- <Text
100
- style={
101
- Array [
102
- Object {
103
- "color": "#595959",
104
- "fontFamily": "SFProDisplay-Regular",
105
- "fontSize": 14,
106
- "lineHeight": 14,
107
- "textAlign": "left",
108
- "textDecorationLine": "none",
109
- },
110
- Object {
111
- "lineHeight": 28,
112
- "marginHorizontal": 16,
113
- },
114
- ]
115
- }
116
- testID="WATER_QUALITY_GUIDE_DESCRIPTION"
117
- >
118
- Độ đục của nước là chỉ số cảnh báo đầu tiên về chất lượng nước có thể ảnh hưởng đến sức khoẻ con người.
119
- Đối với nguồn cung cấp nước uống, độ đục được khuyến nghị phải tuân theo những yêu cầu sau để đảm bảo các an toàn về sức khoẻ:
120
- - Nước uống phải có độ đục từ 5 NTU / JTU trở xuống. Độ đục của nước lớn hơn 5 NTU / JTU sẽ được người dùng nhận thấy và bị từ chối cung cấp.
121
- - Khi nước được khử trùng bằng clo, độ đục phải nhỏ hơn 5 NTU / JTU và tốt hơn là nhỏ hơn 1 NTU / JTU.
122
- </Text>
123
- </View>
124
- <View
125
- style={
126
- Object {
127
- "flexDirection": "row",
128
- "marginHorizontal": 16,
129
- "marginTop": 16,
130
- }
131
- }
132
- >
133
- <View
134
- style={
135
- Object {
136
- "backgroundColor": "#52C41A",
137
- "borderRadius": 5,
138
- "height": 40,
139
- "width": 40,
140
- }
141
- }
142
- />
143
- <View
144
- style={
145
- Object {
146
- "flex": 1,
147
- "marginLeft": 16,
148
- }
149
- }
150
- >
151
- <Text
152
- style={
153
- Array [
154
- Object {
155
- "color": "#52C41A",
156
- "fontFamily": "SFProDisplay-Semibold",
157
- "fontSize": 16,
158
- "lineHeight": 16,
159
- "textAlign": "left",
160
- "textDecorationLine": "none",
161
- },
162
- Object {},
163
- ]
164
- }
165
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
166
- >
167
- Rất tốt
168
- </Text>
169
- <Text
170
- style={
171
- Array [
172
- Object {
173
- "color": "#595959",
174
- "fontFamily": "SFProDisplay-Regular",
175
- "fontSize": 14,
176
- "lineHeight": 14,
177
- "textAlign": "left",
178
- "textDecorationLine": "none",
179
- },
180
- Object {},
181
- ]
182
- }
183
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
184
- >
185
- 0 - 1.1 NTU
186
- </Text>
187
- </View>
188
- </View>
189
- <View
190
- style={
191
- Object {
192
- "flexDirection": "row",
193
- "marginHorizontal": 16,
194
- "marginTop": 16,
195
- }
196
- }
197
- >
198
- <View
199
- style={
200
- Object {
201
- "backgroundColor": "#FADB14",
202
- "borderRadius": 5,
203
- "height": 40,
204
- "width": 40,
205
- }
206
- }
207
- />
208
- <View
209
- style={
210
- Object {
211
- "flex": 1,
212
- "marginLeft": 16,
213
- }
214
- }
215
- >
216
- <Text
217
- style={
218
- Array [
219
- Object {
220
- "color": "#FADB14",
221
- "fontFamily": "SFProDisplay-Semibold",
222
- "fontSize": 16,
223
- "lineHeight": 16,
224
- "textAlign": "left",
225
- "textDecorationLine": "none",
226
- },
227
- Object {},
228
- ]
229
- }
230
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
231
- >
232
- Tốt
233
- </Text>
234
- <Text
235
- style={
236
- Array [
237
- Object {
238
- "color": "#595959",
239
- "fontFamily": "SFProDisplay-Regular",
240
- "fontSize": 14,
241
- "lineHeight": 14,
242
- "textAlign": "left",
243
- "textDecorationLine": "none",
244
- },
245
- Object {},
246
- ]
247
- }
248
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
249
- >
250
- 1.2 - 2.4 NTU
251
- </Text>
252
- </View>
253
- </View>
254
- <View
255
- style={
256
- Object {
257
- "flexDirection": "row",
258
- "marginHorizontal": 16,
259
- "marginTop": 16,
260
- }
261
- }
262
- >
263
- <View
264
- style={
265
- Object {
266
- "backgroundColor": "#FA8C16",
267
- "borderRadius": 5,
268
- "height": 40,
269
- "width": 40,
270
- }
271
- }
272
- />
273
- <View
274
- style={
275
- Object {
276
- "flex": 1,
277
- "marginLeft": 16,
278
- }
279
- }
280
- >
281
- <Text
282
- style={
283
- Array [
284
- Object {
285
- "color": "#FA8C16",
286
- "fontFamily": "SFProDisplay-Semibold",
287
- "fontSize": 16,
288
- "lineHeight": 16,
289
- "textAlign": "left",
290
- "textDecorationLine": "none",
291
- },
292
- Object {},
293
- ]
294
- }
295
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
296
- >
297
- Trung bình
298
- </Text>
299
- <Text
300
- style={
301
- Array [
302
- Object {
303
- "color": "#595959",
304
- "fontFamily": "SFProDisplay-Regular",
305
- "fontSize": 14,
306
- "lineHeight": 14,
307
- "textAlign": "left",
308
- "textDecorationLine": "none",
309
- },
310
- Object {},
311
- ]
312
- }
313
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
314
- >
315
- 2.5 - 3.7 NTU
316
- </Text>
317
- </View>
318
- </View>
319
- <View
320
- style={
321
- Object {
322
- "flexDirection": "row",
323
- "marginHorizontal": 16,
324
- "marginTop": 16,
325
- }
326
- }
327
- >
328
- <View
329
- style={
330
- Object {
331
- "backgroundColor": "#F5222D",
332
- "borderRadius": 5,
333
- "height": 40,
334
- "width": 40,
335
- }
336
- }
337
- />
338
- <View
339
- style={
340
- Object {
341
- "flex": 1,
342
- "marginLeft": 16,
343
- }
344
- }
345
- >
346
- <Text
347
- style={
348
- Array [
349
- Object {
350
- "color": "#F5222D",
351
- "fontFamily": "SFProDisplay-Semibold",
352
- "fontSize": 16,
353
- "lineHeight": 16,
354
- "textAlign": "left",
355
- "textDecorationLine": "none",
356
- },
357
- Object {},
358
- ]
359
- }
360
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
361
- >
362
- Kém
363
- </Text>
364
- <Text
365
- style={
366
- Array [
367
- Object {
368
- "color": "#595959",
369
- "fontFamily": "SFProDisplay-Regular",
370
- "fontSize": 14,
371
- "lineHeight": 14,
372
- "textAlign": "left",
373
- "textDecorationLine": "none",
374
- },
375
- Object {},
376
- ]
377
- }
378
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
379
- >
380
- 3.8 - 5 NTU
381
- </Text>
382
- </View>
383
- </View>
384
- <View
385
- style={
386
- Object {
387
- "flexDirection": "row",
388
- "marginHorizontal": 16,
389
- "marginTop": 16,
390
- }
391
- }
392
- >
393
- <View
394
- style={
395
- Object {
396
- "backgroundColor": "#722ED1",
397
- "borderRadius": 5,
398
- "height": 40,
399
- "width": 40,
400
- }
401
- }
402
- />
403
- <View
404
- style={
405
- Object {
406
- "flex": 1,
407
- "marginLeft": 16,
408
- }
409
- }
410
- >
411
- <Text
412
- style={
413
- Array [
414
- Object {
415
- "color": "#722ED1",
416
- "fontFamily": "SFProDisplay-Semibold",
417
- "fontSize": 16,
418
- "lineHeight": 16,
419
- "textAlign": "left",
420
- "textDecorationLine": "none",
421
- },
422
- Object {},
423
- ]
424
- }
425
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
426
- >
427
- Rất kém
428
- </Text>
429
- <Text
430
- style={
431
- Array [
432
- Object {
433
- "color": "#595959",
434
- "fontFamily": "SFProDisplay-Regular",
435
- "fontSize": 14,
436
- "lineHeight": 14,
437
- "textAlign": "left",
438
- "textDecorationLine": "none",
439
- },
440
- Object {},
441
- ]
442
- }
443
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
444
- >
445
- &gt; 5 NTU
446
- </Text>
447
- </View>
448
- </View>
449
- </View>
450
- </View>
451
- </RCTScrollView>
452
- </RCTSafeAreaView>
453
- `;
454
-
455
- exports[`Test WaterQualityGuide render WaterQualityGuide with cloGuide 1`] = `
456
- <RCTSafeAreaView
457
- emulateUnlessSupported={true}
458
- style={
459
- Object {
460
- "backgroundColor": "#FFFFFF",
461
- "flex": 1,
462
- }
463
- }
464
- >
465
- <RCTScrollView
466
- style={
467
- Object {
468
- "backgroundColor": "#FFFFFF",
469
- "flex": 1,
470
- }
471
- }
472
- >
473
- <View>
474
- <View
475
- style={
476
- Object {
477
- "marginBottom": 28,
478
- }
479
- }
480
- >
481
- <View>
482
- <Text
483
- style={
484
- Array [
485
- Object {
486
- "color": "#262626",
487
- "fontFamily": "SFProDisplay-Semibold",
488
- "fontSize": 20,
489
- "lineHeight": 20,
490
- "textAlign": "left",
491
- "textDecorationLine": "none",
492
- },
493
- Object {
494
- "lineHeight": 28,
495
- "marginBottom": 8,
496
- "marginHorizontal": 16,
497
- "marginTop": 24,
498
- },
499
- ]
500
- }
501
- testID="WATER_QUALITY_GUIDE_TITLE"
502
- >
503
- Clo dư là gì?
504
- </Text>
505
- <Text
506
- style={
507
- Array [
508
- Object {
509
- "color": "#595959",
510
- "fontFamily": "SFProDisplay-Regular",
511
- "fontSize": 14,
512
- "lineHeight": 14,
513
- "textAlign": "left",
514
- "textDecorationLine": "none",
515
- },
516
- Object {
517
- "lineHeight": 28,
518
- "marginHorizontal": 16,
519
- },
520
- ]
521
- }
522
- testID="WATER_QUALITY_GUIDE_DESCRIPTION"
523
- >
524
- Clo dư là lượng clo ở mức thấp vẫn còn trong nước sau một thời gian nhất định hoặc tiếp xúc thời gian sau khi ứng dụng ban đầu của nó. Nó tạo nên một lớp bảo vệ chống lại nguy cơ vi sinh vật tiếp theo gây ô nhiễm sau khi xử lý - một lợi ích độc đáo cho sức khỏe cộng đồng.
525
- Thử nghiệm clo dư là một trong những thử nghiệm phổ biến nhất được các nhà máy xử lý nước sử dụng. Qua thử nghiệm clo dư, lượng clo còn lại được xác định trong nước đã kết thúc thử nghiệm và sẵn sàng đưa ra hệ thống phân phối.
526
- </Text>
527
- </View>
528
- <View>
529
- <Text
530
- style={
531
- Array [
532
- Object {
533
- "color": "#262626",
534
- "fontFamily": "SFProDisplay-Semibold",
535
- "fontSize": 20,
536
- "lineHeight": 20,
537
- "textAlign": "left",
538
- "textDecorationLine": "none",
539
- },
540
- Object {
541
- "lineHeight": 28,
542
- "marginBottom": 8,
543
- "marginHorizontal": 16,
544
- "marginTop": 24,
545
- },
546
- ]
547
- }
548
- testID="WATER_QUALITY_GUIDE_TITLE"
549
- >
550
- Mức độ Clo dư khuyến nghị
551
- </Text>
552
- <Text
553
- style={
554
- Array [
555
- Object {
556
- "color": "#595959",
557
- "fontFamily": "SFProDisplay-Regular",
558
- "fontSize": 14,
559
- "lineHeight": 14,
560
- "textAlign": "left",
561
- "textDecorationLine": "none",
562
- },
563
- Object {
564
- "lineHeight": 28,
565
- "marginHorizontal": 16,
566
- },
567
- ]
568
- }
569
- testID="WATER_QUALITY_GUIDE_DESCRIPTION"
570
- >
571
- Nồng độ clo dư trong nguồn nước cung cấp càng cao thì các hóa chất sẽ có thể bảo vệ hệ thống khỏi bị nhiễm bẩn lâu và tốt hơn. Tuy nhiên, hàm lượng clo cao sẽ làm cho nước có mùi và có mùi vị khó chịu cho mọi người khi uống nó.
572
- Đối với mục đích sử dụng bình thường trong gia đình, mức độ clo dư trong nước sinh hoạt ăn uống đạt ngưỡng từ 0,3 – 0,5 mg/L mới đảm bảo độ an toàn.
573
- </Text>
574
- </View>
575
- <View
576
- style={
577
- Object {
578
- "flexDirection": "row",
579
- "marginHorizontal": 16,
580
- "marginTop": 16,
581
- }
582
- }
583
- >
584
- <View
585
- style={
586
- Object {
587
- "backgroundColor": "#FADB14",
588
- "borderRadius": 5,
589
- "height": 40,
590
- "width": 40,
591
- }
592
- }
593
- />
594
- <View
595
- style={
596
- Object {
597
- "flex": 1,
598
- "marginLeft": 16,
599
- }
600
- }
601
- >
602
- <Text
603
- style={
604
- Array [
605
- Object {
606
- "color": "#FADB14",
607
- "fontFamily": "SFProDisplay-Semibold",
608
- "fontSize": 16,
609
- "lineHeight": 16,
610
- "textAlign": "left",
611
- "textDecorationLine": "none",
612
- },
613
- Object {},
614
- ]
615
- }
616
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
617
- >
618
- Thấp
619
- </Text>
620
- <Text
621
- style={
622
- Array [
623
- Object {
624
- "color": "#595959",
625
- "fontFamily": "SFProDisplay-Regular",
626
- "fontSize": 14,
627
- "lineHeight": 14,
628
- "textAlign": "left",
629
- "textDecorationLine": "none",
630
- },
631
- Object {},
632
- ]
633
- }
634
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
635
- >
636
- &lt; 0.2 mg/l
637
- </Text>
638
- </View>
639
- </View>
640
- <View
641
- style={
642
- Object {
643
- "flexDirection": "row",
644
- "marginHorizontal": 16,
645
- "marginTop": 16,
646
- }
647
- }
648
- >
649
- <View
650
- style={
651
- Object {
652
- "backgroundColor": "#52C41A",
653
- "borderRadius": 5,
654
- "height": 40,
655
- "width": 40,
656
- }
657
- }
658
- />
659
- <View
660
- style={
661
- Object {
662
- "flex": 1,
663
- "marginLeft": 16,
664
- }
665
- }
666
- >
667
- <Text
668
- style={
669
- Array [
670
- Object {
671
- "color": "#52C41A",
672
- "fontFamily": "SFProDisplay-Semibold",
673
- "fontSize": 16,
674
- "lineHeight": 16,
675
- "textAlign": "left",
676
- "textDecorationLine": "none",
677
- },
678
- Object {},
679
- ]
680
- }
681
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
682
- >
683
- Trung bình
684
- </Text>
685
- <Text
686
- style={
687
- Array [
688
- Object {
689
- "color": "#595959",
690
- "fontFamily": "SFProDisplay-Regular",
691
- "fontSize": 14,
692
- "lineHeight": 14,
693
- "textAlign": "left",
694
- "textDecorationLine": "none",
695
- },
696
- Object {},
697
- ]
698
- }
699
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
700
- >
701
- &lt; 0.2 - 0.5 mg/l
702
- </Text>
703
- </View>
704
- </View>
705
- <View
706
- style={
707
- Object {
708
- "flexDirection": "row",
709
- "marginHorizontal": 16,
710
- "marginTop": 16,
711
- }
712
- }
713
- >
714
- <View
715
- style={
716
- Object {
717
- "backgroundColor": "#F5222D",
718
- "borderRadius": 5,
719
- "height": 40,
720
- "width": 40,
721
- }
722
- }
723
- />
724
- <View
725
- style={
726
- Object {
727
- "flex": 1,
728
- "marginLeft": 16,
729
- }
730
- }
731
- >
732
- <Text
733
- style={
734
- Array [
735
- Object {
736
- "color": "#F5222D",
737
- "fontFamily": "SFProDisplay-Semibold",
738
- "fontSize": 16,
739
- "lineHeight": 16,
740
- "textAlign": "left",
741
- "textDecorationLine": "none",
742
- },
743
- Object {},
744
- ]
745
- }
746
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
747
- >
748
- Cao
749
- </Text>
750
- <Text
751
- style={
752
- Array [
753
- Object {
754
- "color": "#595959",
755
- "fontFamily": "SFProDisplay-Regular",
756
- "fontSize": 14,
757
- "lineHeight": 14,
758
- "textAlign": "left",
759
- "textDecorationLine": "none",
760
- },
761
- Object {},
762
- ]
763
- }
764
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
765
- >
766
- &gt; 0.5 mg/l
767
- </Text>
768
- </View>
769
- </View>
770
- </View>
771
- </View>
772
- </RCTScrollView>
773
- </RCTSafeAreaView>
774
- `;
775
-
776
- exports[`Test WaterQualityGuide render WaterQualityGuide with phGuide 1`] = `
777
- <RCTSafeAreaView
778
- emulateUnlessSupported={true}
779
- style={
780
- Object {
781
- "backgroundColor": "#FFFFFF",
782
- "flex": 1,
783
- }
784
- }
785
- >
786
- <RCTScrollView
787
- style={
788
- Object {
789
- "backgroundColor": "#FFFFFF",
790
- "flex": 1,
791
- }
792
- }
793
- >
794
- <View>
795
- <View
796
- style={
797
- Object {
798
- "marginBottom": 28,
799
- }
800
- }
801
- >
802
- <View>
803
- <Text
804
- style={
805
- Array [
806
- Object {
807
- "color": "#262626",
808
- "fontFamily": "SFProDisplay-Semibold",
809
- "fontSize": 20,
810
- "lineHeight": 20,
811
- "textAlign": "left",
812
- "textDecorationLine": "none",
813
- },
814
- Object {
815
- "lineHeight": 28,
816
- "marginBottom": 8,
817
- "marginHorizontal": 16,
818
- "marginTop": 24,
819
- },
820
- ]
821
- }
822
- testID="WATER_QUALITY_GUIDE_TITLE"
823
- >
824
- Độ pH là gì?
825
- </Text>
826
- <Text
827
- style={
828
- Array [
829
- Object {
830
- "color": "#595959",
831
- "fontFamily": "SFProDisplay-Regular",
832
- "fontSize": 14,
833
- "lineHeight": 14,
834
- "textAlign": "left",
835
- "textDecorationLine": "none",
836
- },
837
- Object {
838
- "lineHeight": 28,
839
- "marginHorizontal": 16,
840
- },
841
- ]
842
- }
843
- testID="WATER_QUALITY_GUIDE_DESCRIPTION"
844
- >
845
- pH là một chỉ số xác định tính chất hoá học của nước. Nó cho biết chất đó có tính axit hoặc kiềm (bazơ) như thế nào.
846
- </Text>
847
- </View>
848
- <View>
849
- <Text
850
- style={
851
- Array [
852
- Object {
853
- "color": "#262626",
854
- "fontFamily": "SFProDisplay-Semibold",
855
- "fontSize": 20,
856
- "lineHeight": 20,
857
- "textAlign": "left",
858
- "textDecorationLine": "none",
859
- },
860
- Object {
861
- "lineHeight": 28,
862
- "marginBottom": 8,
863
- "marginHorizontal": 16,
864
- "marginTop": 24,
865
- },
866
- ]
867
- }
868
- testID="WATER_QUALITY_GUIDE_TITLE"
869
- >
870
- Hướng dẫn về độ pH cho nước uống
871
- </Text>
872
- <Text
873
- style={
874
- Array [
875
- Object {
876
- "color": "#595959",
877
- "fontFamily": "SFProDisplay-Regular",
878
- "fontSize": 14,
879
- "lineHeight": 14,
880
- "textAlign": "left",
881
- "textDecorationLine": "none",
882
- },
883
- Object {
884
- "lineHeight": 28,
885
- "marginHorizontal": 16,
886
- },
887
- ]
888
- }
889
- testID="WATER_QUALITY_GUIDE_DESCRIPTION"
890
- >
891
- Đối với nguồn cung cấp nước uống, độ pH được khuyến nghị nằm trong mức 6.5-8.5 để đảm bảo các an toàn về sức khoẻ.
892
- </Text>
893
- </View>
894
- <View
895
- style={
896
- Object {
897
- "flexDirection": "row",
898
- "marginHorizontal": 16,
899
- "marginTop": 16,
900
- }
901
- }
902
- >
903
- <View
904
- style={
905
- Object {
906
- "backgroundColor": "#52C41A",
907
- "borderRadius": 5,
908
- "height": 40,
909
- "width": 40,
910
- }
911
- }
912
- />
913
- <View
914
- style={
915
- Object {
916
- "flex": 1,
917
- "marginLeft": 16,
918
- }
919
- }
920
- >
921
- <Text
922
- style={
923
- Array [
924
- Object {
925
- "color": "#52C41A",
926
- "fontFamily": "SFProDisplay-Semibold",
927
- "fontSize": 16,
928
- "lineHeight": 16,
929
- "textAlign": "left",
930
- "textDecorationLine": "none",
931
- },
932
- Object {},
933
- ]
934
- }
935
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
936
- >
937
- Rất tốt
938
- </Text>
939
- <Text
940
- style={
941
- Array [
942
- Object {
943
- "color": "#595959",
944
- "fontFamily": "SFProDisplay-Regular",
945
- "fontSize": 14,
946
- "lineHeight": 14,
947
- "textAlign": "left",
948
- "textDecorationLine": "none",
949
- },
950
- Object {},
951
- ]
952
- }
953
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
954
- >
955
- pH 6.5 - 6.9
956
- </Text>
957
- </View>
958
- </View>
959
- <View
960
- style={
961
- Object {
962
- "flexDirection": "row",
963
- "marginHorizontal": 16,
964
- "marginTop": 16,
965
- }
966
- }
967
- >
968
- <View
969
- style={
970
- Object {
971
- "backgroundColor": "#FADB14",
972
- "borderRadius": 5,
973
- "height": 40,
974
- "width": 40,
975
- }
976
- }
977
- />
978
- <View
979
- style={
980
- Object {
981
- "flex": 1,
982
- "marginLeft": 16,
983
- }
984
- }
985
- >
986
- <Text
987
- style={
988
- Array [
989
- Object {
990
- "color": "#FADB14",
991
- "fontFamily": "SFProDisplay-Semibold",
992
- "fontSize": 16,
993
- "lineHeight": 16,
994
- "textAlign": "left",
995
- "textDecorationLine": "none",
996
- },
997
- Object {},
998
- ]
999
- }
1000
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
1001
- >
1002
- Tốt
1003
- </Text>
1004
- <Text
1005
- style={
1006
- Array [
1007
- Object {
1008
- "color": "#595959",
1009
- "fontFamily": "SFProDisplay-Regular",
1010
- "fontSize": 14,
1011
- "lineHeight": 14,
1012
- "textAlign": "left",
1013
- "textDecorationLine": "none",
1014
- },
1015
- Object {},
1016
- ]
1017
- }
1018
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
1019
- >
1020
- pH 7.0 - 7.4
1021
- </Text>
1022
- </View>
1023
- </View>
1024
- <View
1025
- style={
1026
- Object {
1027
- "flexDirection": "row",
1028
- "marginHorizontal": 16,
1029
- "marginTop": 16,
1030
- }
1031
- }
1032
- >
1033
- <View
1034
- style={
1035
- Object {
1036
- "backgroundColor": "#FA8C16",
1037
- "borderRadius": 5,
1038
- "height": 40,
1039
- "width": 40,
1040
- }
1041
- }
1042
- />
1043
- <View
1044
- style={
1045
- Object {
1046
- "flex": 1,
1047
- "marginLeft": 16,
1048
- }
1049
- }
1050
- >
1051
- <Text
1052
- style={
1053
- Array [
1054
- Object {
1055
- "color": "#FA8C16",
1056
- "fontFamily": "SFProDisplay-Semibold",
1057
- "fontSize": 16,
1058
- "lineHeight": 16,
1059
- "textAlign": "left",
1060
- "textDecorationLine": "none",
1061
- },
1062
- Object {},
1063
- ]
1064
- }
1065
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
1066
- >
1067
- Trung bình
1068
- </Text>
1069
- <Text
1070
- style={
1071
- Array [
1072
- Object {
1073
- "color": "#595959",
1074
- "fontFamily": "SFProDisplay-Regular",
1075
- "fontSize": 14,
1076
- "lineHeight": 14,
1077
- "textAlign": "left",
1078
- "textDecorationLine": "none",
1079
- },
1080
- Object {},
1081
- ]
1082
- }
1083
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
1084
- >
1085
- pH 7.5 - 7.9
1086
- </Text>
1087
- </View>
1088
- </View>
1089
- <View
1090
- style={
1091
- Object {
1092
- "flexDirection": "row",
1093
- "marginHorizontal": 16,
1094
- "marginTop": 16,
1095
- }
1096
- }
1097
- >
1098
- <View
1099
- style={
1100
- Object {
1101
- "backgroundColor": "#F5222D",
1102
- "borderRadius": 5,
1103
- "height": 40,
1104
- "width": 40,
1105
- }
1106
- }
1107
- />
1108
- <View
1109
- style={
1110
- Object {
1111
- "flex": 1,
1112
- "marginLeft": 16,
1113
- }
1114
- }
1115
- >
1116
- <Text
1117
- style={
1118
- Array [
1119
- Object {
1120
- "color": "#F5222D",
1121
- "fontFamily": "SFProDisplay-Semibold",
1122
- "fontSize": 16,
1123
- "lineHeight": 16,
1124
- "textAlign": "left",
1125
- "textDecorationLine": "none",
1126
- },
1127
- Object {},
1128
- ]
1129
- }
1130
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
1131
- >
1132
- Kém
1133
- </Text>
1134
- <Text
1135
- style={
1136
- Array [
1137
- Object {
1138
- "color": "#595959",
1139
- "fontFamily": "SFProDisplay-Regular",
1140
- "fontSize": 14,
1141
- "lineHeight": 14,
1142
- "textAlign": "left",
1143
- "textDecorationLine": "none",
1144
- },
1145
- Object {},
1146
- ]
1147
- }
1148
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
1149
- >
1150
- pH 8.0 - 8.5
1151
- </Text>
1152
- </View>
1153
- </View>
1154
- <View
1155
- style={
1156
- Object {
1157
- "flexDirection": "row",
1158
- "marginHorizontal": 16,
1159
- "marginTop": 16,
1160
- }
1161
- }
1162
- >
1163
- <View
1164
- style={
1165
- Object {
1166
- "backgroundColor": "#722ED1",
1167
- "borderRadius": 5,
1168
- "height": 40,
1169
- "width": 40,
1170
- }
1171
- }
1172
- />
1173
- <View
1174
- style={
1175
- Object {
1176
- "flex": 1,
1177
- "marginLeft": 16,
1178
- }
1179
- }
1180
- >
1181
- <Text
1182
- style={
1183
- Array [
1184
- Object {
1185
- "color": "#722ED1",
1186
- "fontFamily": "SFProDisplay-Semibold",
1187
- "fontSize": 16,
1188
- "lineHeight": 16,
1189
- "textAlign": "left",
1190
- "textDecorationLine": "none",
1191
- },
1192
- Object {},
1193
- ]
1194
- }
1195
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
1196
- >
1197
- Rất kém
1198
- </Text>
1199
- <Text
1200
- style={
1201
- Array [
1202
- Object {
1203
- "color": "#595959",
1204
- "fontFamily": "SFProDisplay-Regular",
1205
- "fontSize": 14,
1206
- "lineHeight": 14,
1207
- "textAlign": "left",
1208
- "textDecorationLine": "none",
1209
- },
1210
- Object {},
1211
- ]
1212
- }
1213
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
1214
- >
1215
- pH &gt; 8.5
1216
- pH &lt; 6.5
1217
- </Text>
1218
- </View>
1219
- </View>
1220
- <View
1221
- style={
1222
- Object {
1223
- "marginBottom": 14,
1224
- }
1225
- }
1226
- >
1227
- <Text
1228
- style={
1229
- Array [
1230
- Object {
1231
- "color": "#262626",
1232
- "fontFamily": "SFProDisplay-Semibold",
1233
- "fontSize": 20,
1234
- "lineHeight": 20,
1235
- "textAlign": "left",
1236
- "textDecorationLine": "none",
1237
- },
1238
- Object {
1239
- "lineHeight": 28,
1240
- "marginBottom": 8,
1241
- "marginHorizontal": 16,
1242
- "marginTop": 24,
1243
- },
1244
- ]
1245
- }
1246
- testID="WATER_QUALITY_GUIDE_TITLE1"
1247
- >
1248
- Thang đo pH
1249
- </Text>
1250
- <Text
1251
- style={
1252
- Array [
1253
- Object {
1254
- "color": "#595959",
1255
- "fontFamily": "SFProDisplay-Regular",
1256
- "fontSize": 14,
1257
- "lineHeight": 14,
1258
- "textAlign": "left",
1259
- "textDecorationLine": "none",
1260
- },
1261
- Object {
1262
- "lineHeight": 28,
1263
- "marginHorizontal": 16,
1264
- },
1265
- ]
1266
- }
1267
- testID="WATER_QUALITY_GUIDE_DESCRIPTION1"
1268
- >
1269
- Thang đo pH nằm trong khoảng từ 0 đến 14:
1270
- - Nước có tính axit có độ pH thấp hơn 7. Các chất có tính axit nhất có pH bằng 0. Axit acquy thuộc loại này.
1271
- - Nước kiềm có độ pH từ 8 trở lên. Các chất kiềm nhất, chẳng hạn như dung dịch kiềm, có độ pH là 14.
1272
- - Nước tinh khiết có độ pH là 7 và được coi là “trung tính” vì nó không có tính axit cũng như tính bazơ.
1273
- </Text>
1274
- </View>
1275
- <View
1276
- style={
1277
- Object {
1278
- "flex": 1,
1279
- "flexDirection": "row",
1280
- "marginHorizontal": 16,
1281
- "marginTop": 2,
1282
- }
1283
- }
1284
- >
1285
- <View
1286
- style={
1287
- Object {
1288
- "flex": 5,
1289
- }
1290
- }
1291
- >
1292
- <Text
1293
- style={
1294
- Array [
1295
- Object {
1296
- "color": "#000",
1297
- "fontFamily": "SFProDisplay-Regular",
1298
- "fontSize": undefined,
1299
- "lineHeight": undefined,
1300
- "textAlign": "left",
1301
- "textDecorationLine": "none",
1302
- },
1303
- Object {
1304
- "fontSize": 16,
1305
- "height": 40,
1306
- "marginRight": 24,
1307
- "textAlign": "right",
1308
- "textAlignVertical": "center",
1309
- },
1310
- ]
1311
- }
1312
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
1313
- >
1314
- Pin Acid
1315
- </Text>
1316
- </View>
1317
- <View
1318
- style={
1319
- Object {
1320
- "flex": 5,
1321
- "flexDirection": "row",
1322
- }
1323
- }
1324
- >
1325
- <View
1326
- style={
1327
- Object {
1328
- "backgroundColor": "#F5222D",
1329
- "borderRadius": 1,
1330
- "height": 40,
1331
- "width": 127,
1332
- }
1333
- }
1334
- >
1335
- <Text
1336
- style={
1337
- Array [
1338
- Object {
1339
- "color": "#000",
1340
- "fontFamily": "SFProDisplay-Regular",
1341
- "fontSize": undefined,
1342
- "lineHeight": undefined,
1343
- "textAlign": "left",
1344
- "textDecorationLine": "none",
1345
- },
1346
- Object {
1347
- "fontSize": 16,
1348
- "height": 40,
1349
- "textAlign": "center",
1350
- "textAlignVertical": "center",
1351
- },
1352
- ]
1353
- }
1354
- >
1355
- 1
1356
- </Text>
1357
- </View>
1358
- <View>
1359
- <Text
1360
- style={
1361
- Array [
1362
- Object {
1363
- "color": "#000",
1364
- "fontFamily": "SFProDisplay-Regular",
1365
- "fontSize": undefined,
1366
- "lineHeight": undefined,
1367
- "textAlign": "left",
1368
- "textDecorationLine": "none",
1369
- },
1370
- Object {
1371
- "bottom": 8,
1372
- "color": "#000000",
1373
- "fontSize": 20,
1374
- "height": 28,
1375
- "left": -28,
1376
- "position": "absolute",
1377
- "textAlign": "center",
1378
- "transform": Array [
1379
- Object {
1380
- "rotate": "90deg",
1381
- },
1382
- ],
1383
- "width": 115,
1384
- },
1385
- ]
1386
- }
1387
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
1388
- />
1389
- </View>
1390
- </View>
1391
- </View>
1392
- <View
1393
- style={
1394
- Object {
1395
- "flex": 1,
1396
- "flexDirection": "row",
1397
- "marginHorizontal": 16,
1398
- "marginTop": 2,
1399
- }
1400
- }
1401
- >
1402
- <View
1403
- style={
1404
- Object {
1405
- "flex": 5,
1406
- }
1407
- }
1408
- >
1409
- <Text
1410
- style={
1411
- Array [
1412
- Object {
1413
- "color": "#000",
1414
- "fontFamily": "SFProDisplay-Regular",
1415
- "fontSize": undefined,
1416
- "lineHeight": undefined,
1417
- "textAlign": "left",
1418
- "textDecorationLine": "none",
1419
- },
1420
- Object {
1421
- "fontSize": 16,
1422
- "height": 40,
1423
- "marginRight": 24,
1424
- "textAlign": "right",
1425
- "textAlignVertical": "center",
1426
- },
1427
- ]
1428
- }
1429
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
1430
- >
1431
- Dạ dày Acid
1432
- </Text>
1433
- </View>
1434
- <View
1435
- style={
1436
- Object {
1437
- "flex": 5,
1438
- "flexDirection": "row",
1439
- }
1440
- }
1441
- >
1442
- <View
1443
- style={
1444
- Object {
1445
- "backgroundColor": "#FF4D4F",
1446
- "borderRadius": 1,
1447
- "height": 40,
1448
- "width": 127,
1449
- }
1450
- }
1451
- >
1452
- <Text
1453
- style={
1454
- Array [
1455
- Object {
1456
- "color": "#000",
1457
- "fontFamily": "SFProDisplay-Regular",
1458
- "fontSize": undefined,
1459
- "lineHeight": undefined,
1460
- "textAlign": "left",
1461
- "textDecorationLine": "none",
1462
- },
1463
- Object {
1464
- "fontSize": 16,
1465
- "height": 40,
1466
- "textAlign": "center",
1467
- "textAlignVertical": "center",
1468
- },
1469
- ]
1470
- }
1471
- >
1472
- 2
1473
- </Text>
1474
- </View>
1475
- <View>
1476
- <Text
1477
- style={
1478
- Array [
1479
- Object {
1480
- "color": "#000",
1481
- "fontFamily": "SFProDisplay-Regular",
1482
- "fontSize": undefined,
1483
- "lineHeight": undefined,
1484
- "textAlign": "left",
1485
- "textDecorationLine": "none",
1486
- },
1487
- Object {
1488
- "bottom": 8,
1489
- "color": "#000000",
1490
- "fontSize": 20,
1491
- "height": 28,
1492
- "left": -28,
1493
- "position": "absolute",
1494
- "textAlign": "center",
1495
- "transform": Array [
1496
- Object {
1497
- "rotate": "90deg",
1498
- },
1499
- ],
1500
- "width": 115,
1501
- },
1502
- ]
1503
- }
1504
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
1505
- />
1506
- </View>
1507
- </View>
1508
- </View>
1509
- <View
1510
- style={
1511
- Object {
1512
- "flex": 1,
1513
- "flexDirection": "row",
1514
- "marginHorizontal": 16,
1515
- "marginTop": 2,
1516
- }
1517
- }
1518
- >
1519
- <View
1520
- style={
1521
- Object {
1522
- "flex": 5,
1523
- }
1524
- }
1525
- >
1526
- <Text
1527
- style={
1528
- Array [
1529
- Object {
1530
- "color": "#000",
1531
- "fontFamily": "SFProDisplay-Regular",
1532
- "fontSize": undefined,
1533
- "lineHeight": undefined,
1534
- "textAlign": "left",
1535
- "textDecorationLine": "none",
1536
- },
1537
- Object {
1538
- "fontSize": 16,
1539
- "height": 40,
1540
- "marginRight": 24,
1541
- "textAlign": "right",
1542
- "textAlignVertical": "center",
1543
- },
1544
- ]
1545
- }
1546
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
1547
- >
1548
- Hydrochloric Acid
1549
- </Text>
1550
- </View>
1551
- <View
1552
- style={
1553
- Object {
1554
- "flex": 5,
1555
- "flexDirection": "row",
1556
- }
1557
- }
1558
- >
1559
- <View
1560
- style={
1561
- Object {
1562
- "backgroundColor": "#FF7875",
1563
- "borderRadius": 1,
1564
- "height": 40,
1565
- "width": 127,
1566
- }
1567
- }
1568
- >
1569
- <Text
1570
- style={
1571
- Array [
1572
- Object {
1573
- "color": "#000",
1574
- "fontFamily": "SFProDisplay-Regular",
1575
- "fontSize": undefined,
1576
- "lineHeight": undefined,
1577
- "textAlign": "left",
1578
- "textDecorationLine": "none",
1579
- },
1580
- Object {
1581
- "fontSize": 16,
1582
- "height": 40,
1583
- "textAlign": "center",
1584
- "textAlignVertical": "center",
1585
- },
1586
- ]
1587
- }
1588
- >
1589
- 3
1590
- </Text>
1591
- </View>
1592
- <View>
1593
- <Text
1594
- style={
1595
- Array [
1596
- Object {
1597
- "color": "#000",
1598
- "fontFamily": "SFProDisplay-Regular",
1599
- "fontSize": undefined,
1600
- "lineHeight": undefined,
1601
- "textAlign": "left",
1602
- "textDecorationLine": "none",
1603
- },
1604
- Object {
1605
- "bottom": 8,
1606
- "color": "#F5222D",
1607
- "fontSize": 20,
1608
- "height": 28,
1609
- "left": -28,
1610
- "position": "absolute",
1611
- "textAlign": "center",
1612
- "transform": Array [
1613
- Object {
1614
- "rotate": "90deg",
1615
- },
1616
- ],
1617
- "width": 115,
1618
- },
1619
- ]
1620
- }
1621
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
1622
- >
1623
- AXÍT
1624
- </Text>
1625
- </View>
1626
- </View>
1627
- </View>
1628
- <View
1629
- style={
1630
- Object {
1631
- "flex": 1,
1632
- "flexDirection": "row",
1633
- "marginHorizontal": 16,
1634
- "marginTop": 2,
1635
- }
1636
- }
1637
- >
1638
- <View
1639
- style={
1640
- Object {
1641
- "flex": 5,
1642
- }
1643
- }
1644
- >
1645
- <Text
1646
- style={
1647
- Array [
1648
- Object {
1649
- "color": "#000",
1650
- "fontFamily": "SFProDisplay-Regular",
1651
- "fontSize": undefined,
1652
- "lineHeight": undefined,
1653
- "textAlign": "left",
1654
- "textDecorationLine": "none",
1655
- },
1656
- Object {
1657
- "fontSize": 16,
1658
- "height": 40,
1659
- "marginRight": 24,
1660
- "textAlign": "right",
1661
- "textAlignVertical": "center",
1662
- },
1663
- ]
1664
- }
1665
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
1666
- >
1667
- Mưa Acid
1668
- </Text>
1669
- </View>
1670
- <View
1671
- style={
1672
- Object {
1673
- "flex": 5,
1674
- "flexDirection": "row",
1675
- }
1676
- }
1677
- >
1678
- <View
1679
- style={
1680
- Object {
1681
- "backgroundColor": "#FFA39E",
1682
- "borderRadius": 1,
1683
- "height": 40,
1684
- "width": 127,
1685
- }
1686
- }
1687
- >
1688
- <Text
1689
- style={
1690
- Array [
1691
- Object {
1692
- "color": "#000",
1693
- "fontFamily": "SFProDisplay-Regular",
1694
- "fontSize": undefined,
1695
- "lineHeight": undefined,
1696
- "textAlign": "left",
1697
- "textDecorationLine": "none",
1698
- },
1699
- Object {
1700
- "fontSize": 16,
1701
- "height": 40,
1702
- "textAlign": "center",
1703
- "textAlignVertical": "center",
1704
- },
1705
- ]
1706
- }
1707
- >
1708
- 4
1709
- </Text>
1710
- </View>
1711
- <View>
1712
- <Text
1713
- style={
1714
- Array [
1715
- Object {
1716
- "color": "#000",
1717
- "fontFamily": "SFProDisplay-Regular",
1718
- "fontSize": undefined,
1719
- "lineHeight": undefined,
1720
- "textAlign": "left",
1721
- "textDecorationLine": "none",
1722
- },
1723
- Object {
1724
- "bottom": 8,
1725
- "color": "#000000",
1726
- "fontSize": 20,
1727
- "height": 28,
1728
- "left": -28,
1729
- "position": "absolute",
1730
- "textAlign": "center",
1731
- "transform": Array [
1732
- Object {
1733
- "rotate": "90deg",
1734
- },
1735
- ],
1736
- "width": 115,
1737
- },
1738
- ]
1739
- }
1740
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
1741
- />
1742
- </View>
1743
- </View>
1744
- </View>
1745
- <View
1746
- style={
1747
- Object {
1748
- "flex": 1,
1749
- "flexDirection": "row",
1750
- "marginHorizontal": 16,
1751
- "marginTop": 2,
1752
- }
1753
- }
1754
- >
1755
- <View
1756
- style={
1757
- Object {
1758
- "flex": 5,
1759
- }
1760
- }
1761
- >
1762
- <Text
1763
- style={
1764
- Array [
1765
- Object {
1766
- "color": "#000",
1767
- "fontFamily": "SFProDisplay-Regular",
1768
- "fontSize": undefined,
1769
- "lineHeight": undefined,
1770
- "textAlign": "left",
1771
- "textDecorationLine": "none",
1772
- },
1773
- Object {
1774
- "fontSize": 16,
1775
- "height": 40,
1776
- "marginRight": 24,
1777
- "textAlign": "right",
1778
- "textAlignVertical": "center",
1779
- },
1780
- ]
1781
- }
1782
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
1783
- >
1784
- Cà phê đen
1785
- </Text>
1786
- </View>
1787
- <View
1788
- style={
1789
- Object {
1790
- "flex": 5,
1791
- "flexDirection": "row",
1792
- }
1793
- }
1794
- >
1795
- <View
1796
- style={
1797
- Object {
1798
- "backgroundColor": "#FFCCC7",
1799
- "borderRadius": 1,
1800
- "height": 40,
1801
- "width": 127,
1802
- }
1803
- }
1804
- >
1805
- <Text
1806
- style={
1807
- Array [
1808
- Object {
1809
- "color": "#000",
1810
- "fontFamily": "SFProDisplay-Regular",
1811
- "fontSize": undefined,
1812
- "lineHeight": undefined,
1813
- "textAlign": "left",
1814
- "textDecorationLine": "none",
1815
- },
1816
- Object {
1817
- "fontSize": 16,
1818
- "height": 40,
1819
- "textAlign": "center",
1820
- "textAlignVertical": "center",
1821
- },
1822
- ]
1823
- }
1824
- >
1825
- 5
1826
- </Text>
1827
- </View>
1828
- <View>
1829
- <Text
1830
- style={
1831
- Array [
1832
- Object {
1833
- "color": "#000",
1834
- "fontFamily": "SFProDisplay-Regular",
1835
- "fontSize": undefined,
1836
- "lineHeight": undefined,
1837
- "textAlign": "left",
1838
- "textDecorationLine": "none",
1839
- },
1840
- Object {
1841
- "bottom": 8,
1842
- "color": "#000000",
1843
- "fontSize": 20,
1844
- "height": 28,
1845
- "left": -28,
1846
- "position": "absolute",
1847
- "textAlign": "center",
1848
- "transform": Array [
1849
- Object {
1850
- "rotate": "90deg",
1851
- },
1852
- ],
1853
- "width": 115,
1854
- },
1855
- ]
1856
- }
1857
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
1858
- />
1859
- </View>
1860
- </View>
1861
- </View>
1862
- <View
1863
- style={
1864
- Object {
1865
- "flex": 1,
1866
- "flexDirection": "row",
1867
- "marginHorizontal": 16,
1868
- "marginTop": 2,
1869
- }
1870
- }
1871
- >
1872
- <View
1873
- style={
1874
- Object {
1875
- "flex": 5,
1876
- }
1877
- }
1878
- >
1879
- <Text
1880
- style={
1881
- Array [
1882
- Object {
1883
- "color": "#000",
1884
- "fontFamily": "SFProDisplay-Regular",
1885
- "fontSize": undefined,
1886
- "lineHeight": undefined,
1887
- "textAlign": "left",
1888
- "textDecorationLine": "none",
1889
- },
1890
- Object {
1891
- "fontSize": 16,
1892
- "height": 40,
1893
- "marginRight": 24,
1894
- "textAlign": "right",
1895
- "textAlignVertical": "center",
1896
- },
1897
- ]
1898
- }
1899
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
1900
- >
1901
- Nước tiểu / nước bọt
1902
- </Text>
1903
- </View>
1904
- <View
1905
- style={
1906
- Object {
1907
- "flex": 5,
1908
- "flexDirection": "row",
1909
- }
1910
- }
1911
- >
1912
- <View
1913
- style={
1914
- Object {
1915
- "backgroundColor": "#FFF1F0",
1916
- "borderRadius": 1,
1917
- "height": 40,
1918
- "width": 127,
1919
- }
1920
- }
1921
- >
1922
- <Text
1923
- style={
1924
- Array [
1925
- Object {
1926
- "color": "#000",
1927
- "fontFamily": "SFProDisplay-Regular",
1928
- "fontSize": undefined,
1929
- "lineHeight": undefined,
1930
- "textAlign": "left",
1931
- "textDecorationLine": "none",
1932
- },
1933
- Object {
1934
- "fontSize": 16,
1935
- "height": 40,
1936
- "textAlign": "center",
1937
- "textAlignVertical": "center",
1938
- },
1939
- ]
1940
- }
1941
- >
1942
- 6
1943
- </Text>
1944
- </View>
1945
- <View>
1946
- <Text
1947
- style={
1948
- Array [
1949
- Object {
1950
- "color": "#000",
1951
- "fontFamily": "SFProDisplay-Regular",
1952
- "fontSize": undefined,
1953
- "lineHeight": undefined,
1954
- "textAlign": "left",
1955
- "textDecorationLine": "none",
1956
- },
1957
- Object {
1958
- "bottom": 8,
1959
- "color": "#000000",
1960
- "fontSize": 20,
1961
- "height": 28,
1962
- "left": -28,
1963
- "position": "absolute",
1964
- "textAlign": "center",
1965
- "transform": Array [
1966
- Object {
1967
- "rotate": "90deg",
1968
- },
1969
- ],
1970
- "width": 115,
1971
- },
1972
- ]
1973
- }
1974
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
1975
- />
1976
- </View>
1977
- </View>
1978
- </View>
1979
- <View
1980
- style={
1981
- Object {
1982
- "flex": 1,
1983
- "flexDirection": "row",
1984
- "marginHorizontal": 16,
1985
- "marginTop": 2,
1986
- }
1987
- }
1988
- >
1989
- <View
1990
- style={
1991
- Object {
1992
- "flex": 5,
1993
- }
1994
- }
1995
- >
1996
- <Text
1997
- style={
1998
- Array [
1999
- Object {
2000
- "color": "#000",
2001
- "fontFamily": "SFProDisplay-Regular",
2002
- "fontSize": undefined,
2003
- "lineHeight": undefined,
2004
- "textAlign": "left",
2005
- "textDecorationLine": "none",
2006
- },
2007
- Object {
2008
- "fontSize": 16,
2009
- "height": 40,
2010
- "marginRight": 24,
2011
- "textAlign": "right",
2012
- "textAlignVertical": "center",
2013
- },
2014
- ]
2015
- }
2016
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
2017
- >
2018
- Nước tinh khiết
2019
- </Text>
2020
- </View>
2021
- <View
2022
- style={
2023
- Object {
2024
- "flex": 5,
2025
- "flexDirection": "row",
2026
- }
2027
- }
2028
- >
2029
- <View
2030
- style={
2031
- Object {
2032
- "backgroundColor": "#FAFAFA",
2033
- "borderRadius": 1,
2034
- "height": 40,
2035
- "width": 127,
2036
- }
2037
- }
2038
- >
2039
- <Text
2040
- style={
2041
- Array [
2042
- Object {
2043
- "color": "#000",
2044
- "fontFamily": "SFProDisplay-Regular",
2045
- "fontSize": undefined,
2046
- "lineHeight": undefined,
2047
- "textAlign": "left",
2048
- "textDecorationLine": "none",
2049
- },
2050
- Object {
2051
- "fontSize": 16,
2052
- "height": 40,
2053
- "textAlign": "center",
2054
- "textAlignVertical": "center",
2055
- },
2056
- ]
2057
- }
2058
- >
2059
- 7
2060
- </Text>
2061
- </View>
2062
- <View>
2063
- <Text
2064
- style={
2065
- Array [
2066
- Object {
2067
- "color": "#000",
2068
- "fontFamily": "SFProDisplay-Regular",
2069
- "fontSize": undefined,
2070
- "lineHeight": undefined,
2071
- "textAlign": "left",
2072
- "textDecorationLine": "none",
2073
- },
2074
- Object {
2075
- "bottom": 8,
2076
- "color": "#BFBFBF",
2077
- "fontSize": 20,
2078
- "height": 28,
2079
- "left": -28,
2080
- "position": "absolute",
2081
- "textAlign": "center",
2082
- "transform": Array [
2083
- Object {
2084
- "rotate": "90deg",
2085
- },
2086
- ],
2087
- "width": 115,
2088
- },
2089
- ]
2090
- }
2091
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
2092
- >
2093
- TRUNG TÍNH
2094
- </Text>
2095
- </View>
2096
- </View>
2097
- </View>
2098
- <View
2099
- style={
2100
- Object {
2101
- "flex": 1,
2102
- "flexDirection": "row",
2103
- "marginHorizontal": 16,
2104
- "marginTop": 2,
2105
- }
2106
- }
2107
- >
2108
- <View
2109
- style={
2110
- Object {
2111
- "flex": 5,
2112
- }
2113
- }
2114
- >
2115
- <Text
2116
- style={
2117
- Array [
2118
- Object {
2119
- "color": "#000",
2120
- "fontFamily": "SFProDisplay-Regular",
2121
- "fontSize": undefined,
2122
- "lineHeight": undefined,
2123
- "textAlign": "left",
2124
- "textDecorationLine": "none",
2125
- },
2126
- Object {
2127
- "fontSize": 16,
2128
- "height": 40,
2129
- "marginRight": 24,
2130
- "textAlign": "right",
2131
- "textAlignVertical": "center",
2132
- },
2133
- ]
2134
- }
2135
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
2136
- >
2137
- Nước biển
2138
- </Text>
2139
- </View>
2140
- <View
2141
- style={
2142
- Object {
2143
- "flex": 5,
2144
- "flexDirection": "row",
2145
- }
2146
- }
2147
- >
2148
- <View
2149
- style={
2150
- Object {
2151
- "backgroundColor": "#F0F5FF",
2152
- "borderRadius": 1,
2153
- "height": 40,
2154
- "width": 127,
2155
- }
2156
- }
2157
- >
2158
- <Text
2159
- style={
2160
- Array [
2161
- Object {
2162
- "color": "#000",
2163
- "fontFamily": "SFProDisplay-Regular",
2164
- "fontSize": undefined,
2165
- "lineHeight": undefined,
2166
- "textAlign": "left",
2167
- "textDecorationLine": "none",
2168
- },
2169
- Object {
2170
- "fontSize": 16,
2171
- "height": 40,
2172
- "textAlign": "center",
2173
- "textAlignVertical": "center",
2174
- },
2175
- ]
2176
- }
2177
- >
2178
- 8
2179
- </Text>
2180
- </View>
2181
- <View>
2182
- <Text
2183
- style={
2184
- Array [
2185
- Object {
2186
- "color": "#000",
2187
- "fontFamily": "SFProDisplay-Regular",
2188
- "fontSize": undefined,
2189
- "lineHeight": undefined,
2190
- "textAlign": "left",
2191
- "textDecorationLine": "none",
2192
- },
2193
- Object {
2194
- "bottom": 8,
2195
- "color": "#000000",
2196
- "fontSize": 20,
2197
- "height": 28,
2198
- "left": -28,
2199
- "position": "absolute",
2200
- "textAlign": "center",
2201
- "transform": Array [
2202
- Object {
2203
- "rotate": "90deg",
2204
- },
2205
- ],
2206
- "width": 115,
2207
- },
2208
- ]
2209
- }
2210
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
2211
- />
2212
- </View>
2213
- </View>
2214
- </View>
2215
- <View
2216
- style={
2217
- Object {
2218
- "flex": 1,
2219
- "flexDirection": "row",
2220
- "marginHorizontal": 16,
2221
- "marginTop": 2,
2222
- }
2223
- }
2224
- >
2225
- <View
2226
- style={
2227
- Object {
2228
- "flex": 5,
2229
- }
2230
- }
2231
- >
2232
- <Text
2233
- style={
2234
- Array [
2235
- Object {
2236
- "color": "#000",
2237
- "fontFamily": "SFProDisplay-Regular",
2238
- "fontSize": undefined,
2239
- "lineHeight": undefined,
2240
- "textAlign": "left",
2241
- "textDecorationLine": "none",
2242
- },
2243
- Object {
2244
- "fontSize": 16,
2245
- "height": 40,
2246
- "marginRight": 24,
2247
- "textAlign": "right",
2248
- "textAlignVertical": "center",
2249
- },
2250
- ]
2251
- }
2252
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
2253
- >
2254
- Baking Soda
2255
- </Text>
2256
- </View>
2257
- <View
2258
- style={
2259
- Object {
2260
- "flex": 5,
2261
- "flexDirection": "row",
2262
- }
2263
- }
2264
- >
2265
- <View
2266
- style={
2267
- Object {
2268
- "backgroundColor": "#D6E4FF",
2269
- "borderRadius": 1,
2270
- "height": 40,
2271
- "width": 127,
2272
- }
2273
- }
2274
- >
2275
- <Text
2276
- style={
2277
- Array [
2278
- Object {
2279
- "color": "#000",
2280
- "fontFamily": "SFProDisplay-Regular",
2281
- "fontSize": undefined,
2282
- "lineHeight": undefined,
2283
- "textAlign": "left",
2284
- "textDecorationLine": "none",
2285
- },
2286
- Object {
2287
- "fontSize": 16,
2288
- "height": 40,
2289
- "textAlign": "center",
2290
- "textAlignVertical": "center",
2291
- },
2292
- ]
2293
- }
2294
- >
2295
- 9
2296
- </Text>
2297
- </View>
2298
- <View>
2299
- <Text
2300
- style={
2301
- Array [
2302
- Object {
2303
- "color": "#000",
2304
- "fontFamily": "SFProDisplay-Regular",
2305
- "fontSize": undefined,
2306
- "lineHeight": undefined,
2307
- "textAlign": "left",
2308
- "textDecorationLine": "none",
2309
- },
2310
- Object {
2311
- "bottom": 8,
2312
- "color": "#000000",
2313
- "fontSize": 20,
2314
- "height": 28,
2315
- "left": -28,
2316
- "position": "absolute",
2317
- "textAlign": "center",
2318
- "transform": Array [
2319
- Object {
2320
- "rotate": "90deg",
2321
- },
2322
- ],
2323
- "width": 115,
2324
- },
2325
- ]
2326
- }
2327
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
2328
- />
2329
- </View>
2330
- </View>
2331
- </View>
2332
- <View
2333
- style={
2334
- Object {
2335
- "flex": 1,
2336
- "flexDirection": "row",
2337
- "marginHorizontal": 16,
2338
- "marginTop": 2,
2339
- }
2340
- }
2341
- >
2342
- <View
2343
- style={
2344
- Object {
2345
- "flex": 5,
2346
- }
2347
- }
2348
- >
2349
- <Text
2350
- style={
2351
- Array [
2352
- Object {
2353
- "color": "#000",
2354
- "fontFamily": "SFProDisplay-Regular",
2355
- "fontSize": undefined,
2356
- "lineHeight": undefined,
2357
- "textAlign": "left",
2358
- "textDecorationLine": "none",
2359
- },
2360
- Object {
2361
- "fontSize": 16,
2362
- "height": 40,
2363
- "marginRight": 24,
2364
- "textAlign": "right",
2365
- "textAlignVertical": "center",
2366
- },
2367
- ]
2368
- }
2369
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
2370
- >
2371
- Sữa Magnesia
2372
- </Text>
2373
- </View>
2374
- <View
2375
- style={
2376
- Object {
2377
- "flex": 5,
2378
- "flexDirection": "row",
2379
- }
2380
- }
2381
- >
2382
- <View
2383
- style={
2384
- Object {
2385
- "backgroundColor": "#ADC6FF",
2386
- "borderRadius": 1,
2387
- "height": 40,
2388
- "width": 127,
2389
- }
2390
- }
2391
- >
2392
- <Text
2393
- style={
2394
- Array [
2395
- Object {
2396
- "color": "#000",
2397
- "fontFamily": "SFProDisplay-Regular",
2398
- "fontSize": undefined,
2399
- "lineHeight": undefined,
2400
- "textAlign": "left",
2401
- "textDecorationLine": "none",
2402
- },
2403
- Object {
2404
- "fontSize": 16,
2405
- "height": 40,
2406
- "textAlign": "center",
2407
- "textAlignVertical": "center",
2408
- },
2409
- ]
2410
- }
2411
- >
2412
- 10
2413
- </Text>
2414
- </View>
2415
- <View>
2416
- <Text
2417
- style={
2418
- Array [
2419
- Object {
2420
- "color": "#000",
2421
- "fontFamily": "SFProDisplay-Regular",
2422
- "fontSize": undefined,
2423
- "lineHeight": undefined,
2424
- "textAlign": "left",
2425
- "textDecorationLine": "none",
2426
- },
2427
- Object {
2428
- "bottom": 8,
2429
- "color": "#000000",
2430
- "fontSize": 20,
2431
- "height": 28,
2432
- "left": -28,
2433
- "position": "absolute",
2434
- "textAlign": "center",
2435
- "transform": Array [
2436
- Object {
2437
- "rotate": "90deg",
2438
- },
2439
- ],
2440
- "width": 115,
2441
- },
2442
- ]
2443
- }
2444
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
2445
- />
2446
- </View>
2447
- </View>
2448
- </View>
2449
- <View
2450
- style={
2451
- Object {
2452
- "flex": 1,
2453
- "flexDirection": "row",
2454
- "marginHorizontal": 16,
2455
- "marginTop": 2,
2456
- }
2457
- }
2458
- >
2459
- <View
2460
- style={
2461
- Object {
2462
- "flex": 5,
2463
- }
2464
- }
2465
- >
2466
- <Text
2467
- style={
2468
- Array [
2469
- Object {
2470
- "color": "#000",
2471
- "fontFamily": "SFProDisplay-Regular",
2472
- "fontSize": undefined,
2473
- "lineHeight": undefined,
2474
- "textAlign": "left",
2475
- "textDecorationLine": "none",
2476
- },
2477
- Object {
2478
- "fontSize": 16,
2479
- "height": 40,
2480
- "marginRight": 24,
2481
- "textAlign": "right",
2482
- "textAlignVertical": "center",
2483
- },
2484
- ]
2485
- }
2486
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
2487
- >
2488
- A-mô-ni-ắc
2489
- </Text>
2490
- </View>
2491
- <View
2492
- style={
2493
- Object {
2494
- "flex": 5,
2495
- "flexDirection": "row",
2496
- }
2497
- }
2498
- >
2499
- <View
2500
- style={
2501
- Object {
2502
- "backgroundColor": "#85A5FF",
2503
- "borderRadius": 1,
2504
- "height": 40,
2505
- "width": 127,
2506
- }
2507
- }
2508
- >
2509
- <Text
2510
- style={
2511
- Array [
2512
- Object {
2513
- "color": "#000",
2514
- "fontFamily": "SFProDisplay-Regular",
2515
- "fontSize": undefined,
2516
- "lineHeight": undefined,
2517
- "textAlign": "left",
2518
- "textDecorationLine": "none",
2519
- },
2520
- Object {
2521
- "fontSize": 16,
2522
- "height": 40,
2523
- "textAlign": "center",
2524
- "textAlignVertical": "center",
2525
- },
2526
- ]
2527
- }
2528
- >
2529
- 11
2530
- </Text>
2531
- </View>
2532
- <View>
2533
- <Text
2534
- style={
2535
- Array [
2536
- Object {
2537
- "color": "#000",
2538
- "fontFamily": "SFProDisplay-Regular",
2539
- "fontSize": undefined,
2540
- "lineHeight": undefined,
2541
- "textAlign": "left",
2542
- "textDecorationLine": "none",
2543
- },
2544
- Object {
2545
- "bottom": 8,
2546
- "color": "#000000",
2547
- "fontSize": 20,
2548
- "height": 28,
2549
- "left": -28,
2550
- "position": "absolute",
2551
- "textAlign": "center",
2552
- "transform": Array [
2553
- Object {
2554
- "rotate": "90deg",
2555
- },
2556
- ],
2557
- "width": 115,
2558
- },
2559
- ]
2560
- }
2561
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
2562
- />
2563
- </View>
2564
- </View>
2565
- </View>
2566
- <View
2567
- style={
2568
- Object {
2569
- "flex": 1,
2570
- "flexDirection": "row",
2571
- "marginHorizontal": 16,
2572
- "marginTop": 2,
2573
- }
2574
- }
2575
- >
2576
- <View
2577
- style={
2578
- Object {
2579
- "flex": 5,
2580
- }
2581
- }
2582
- >
2583
- <Text
2584
- style={
2585
- Array [
2586
- Object {
2587
- "color": "#000",
2588
- "fontFamily": "SFProDisplay-Regular",
2589
- "fontSize": undefined,
2590
- "lineHeight": undefined,
2591
- "textAlign": "left",
2592
- "textDecorationLine": "none",
2593
- },
2594
- Object {
2595
- "fontSize": 16,
2596
- "height": 40,
2597
- "marginRight": 24,
2598
- "textAlign": "right",
2599
- "textAlignVertical": "center",
2600
- },
2601
- ]
2602
- }
2603
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
2604
- >
2605
- Nước xà phòng
2606
- </Text>
2607
- </View>
2608
- <View
2609
- style={
2610
- Object {
2611
- "flex": 5,
2612
- "flexDirection": "row",
2613
- }
2614
- }
2615
- >
2616
- <View
2617
- style={
2618
- Object {
2619
- "backgroundColor": "#597EF7",
2620
- "borderRadius": 1,
2621
- "height": 40,
2622
- "width": 127,
2623
- }
2624
- }
2625
- >
2626
- <Text
2627
- style={
2628
- Array [
2629
- Object {
2630
- "color": "#000",
2631
- "fontFamily": "SFProDisplay-Regular",
2632
- "fontSize": undefined,
2633
- "lineHeight": undefined,
2634
- "textAlign": "left",
2635
- "textDecorationLine": "none",
2636
- },
2637
- Object {
2638
- "fontSize": 16,
2639
- "height": 40,
2640
- "textAlign": "center",
2641
- "textAlignVertical": "center",
2642
- },
2643
- ]
2644
- }
2645
- >
2646
- 12
2647
- </Text>
2648
- </View>
2649
- <View>
2650
- <Text
2651
- style={
2652
- Array [
2653
- Object {
2654
- "color": "#000",
2655
- "fontFamily": "SFProDisplay-Regular",
2656
- "fontSize": undefined,
2657
- "lineHeight": undefined,
2658
- "textAlign": "left",
2659
- "textDecorationLine": "none",
2660
- },
2661
- Object {
2662
- "bottom": 8,
2663
- "color": "#2F54EB",
2664
- "fontSize": 20,
2665
- "height": 28,
2666
- "left": -28,
2667
- "position": "absolute",
2668
- "textAlign": "center",
2669
- "transform": Array [
2670
- Object {
2671
- "rotate": "90deg",
2672
- },
2673
- ],
2674
- "width": 115,
2675
- },
2676
- ]
2677
- }
2678
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
2679
- >
2680
- KIỀM
2681
- </Text>
2682
- </View>
2683
- </View>
2684
- </View>
2685
- <View
2686
- style={
2687
- Object {
2688
- "flex": 1,
2689
- "flexDirection": "row",
2690
- "marginHorizontal": 16,
2691
- "marginTop": 2,
2692
- }
2693
- }
2694
- >
2695
- <View
2696
- style={
2697
- Object {
2698
- "flex": 5,
2699
- }
2700
- }
2701
- >
2702
- <Text
2703
- style={
2704
- Array [
2705
- Object {
2706
- "color": "#000",
2707
- "fontFamily": "SFProDisplay-Regular",
2708
- "fontSize": undefined,
2709
- "lineHeight": undefined,
2710
- "textAlign": "left",
2711
- "textDecorationLine": "none",
2712
- },
2713
- Object {
2714
- "fontSize": 16,
2715
- "height": 40,
2716
- "marginRight": 24,
2717
- "textAlign": "right",
2718
- "textAlignVertical": "center",
2719
- },
2720
- ]
2721
- }
2722
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
2723
- >
2724
- Chất tẩy trắng
2725
- </Text>
2726
- </View>
2727
- <View
2728
- style={
2729
- Object {
2730
- "flex": 5,
2731
- "flexDirection": "row",
2732
- }
2733
- }
2734
- >
2735
- <View
2736
- style={
2737
- Object {
2738
- "backgroundColor": "#2F54EB",
2739
- "borderRadius": 1,
2740
- "height": 40,
2741
- "width": 127,
2742
- }
2743
- }
2744
- >
2745
- <Text
2746
- style={
2747
- Array [
2748
- Object {
2749
- "color": "#000",
2750
- "fontFamily": "SFProDisplay-Regular",
2751
- "fontSize": undefined,
2752
- "lineHeight": undefined,
2753
- "textAlign": "left",
2754
- "textDecorationLine": "none",
2755
- },
2756
- Object {
2757
- "fontSize": 16,
2758
- "height": 40,
2759
- "textAlign": "center",
2760
- "textAlignVertical": "center",
2761
- },
2762
- ]
2763
- }
2764
- >
2765
- 13
2766
- </Text>
2767
- </View>
2768
- <View>
2769
- <Text
2770
- style={
2771
- Array [
2772
- Object {
2773
- "color": "#000",
2774
- "fontFamily": "SFProDisplay-Regular",
2775
- "fontSize": undefined,
2776
- "lineHeight": undefined,
2777
- "textAlign": "left",
2778
- "textDecorationLine": "none",
2779
- },
2780
- Object {
2781
- "bottom": 8,
2782
- "color": "#000000",
2783
- "fontSize": 20,
2784
- "height": 28,
2785
- "left": -28,
2786
- "position": "absolute",
2787
- "textAlign": "center",
2788
- "transform": Array [
2789
- Object {
2790
- "rotate": "90deg",
2791
- },
2792
- ],
2793
- "width": 115,
2794
- },
2795
- ]
2796
- }
2797
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
2798
- />
2799
- </View>
2800
- </View>
2801
- </View>
2802
- <View
2803
- style={
2804
- Object {
2805
- "flex": 1,
2806
- "flexDirection": "row",
2807
- "marginHorizontal": 16,
2808
- "marginTop": 2,
2809
- }
2810
- }
2811
- >
2812
- <View
2813
- style={
2814
- Object {
2815
- "flex": 5,
2816
- }
2817
- }
2818
- >
2819
- <Text
2820
- style={
2821
- Array [
2822
- Object {
2823
- "color": "#000",
2824
- "fontFamily": "SFProDisplay-Regular",
2825
- "fontSize": undefined,
2826
- "lineHeight": undefined,
2827
- "textAlign": "left",
2828
- "textDecorationLine": "none",
2829
- },
2830
- Object {
2831
- "fontSize": 16,
2832
- "height": 40,
2833
- "marginRight": 24,
2834
- "textAlign": "right",
2835
- "textAlignVertical": "center",
2836
- },
2837
- ]
2838
- }
2839
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL1"
2840
- >
2841
- Chất làm sạch cống
2842
- </Text>
2843
- </View>
2844
- <View
2845
- style={
2846
- Object {
2847
- "flex": 5,
2848
- "flexDirection": "row",
2849
- }
2850
- }
2851
- >
2852
- <View
2853
- style={
2854
- Object {
2855
- "backgroundColor": "#1D39C4",
2856
- "borderRadius": 1,
2857
- "height": 40,
2858
- "width": 127,
2859
- }
2860
- }
2861
- >
2862
- <Text
2863
- style={
2864
- Array [
2865
- Object {
2866
- "color": "#000",
2867
- "fontFamily": "SFProDisplay-Regular",
2868
- "fontSize": undefined,
2869
- "lineHeight": undefined,
2870
- "textAlign": "left",
2871
- "textDecorationLine": "none",
2872
- },
2873
- Object {
2874
- "fontSize": 16,
2875
- "height": 40,
2876
- "textAlign": "center",
2877
- "textAlignVertical": "center",
2878
- },
2879
- ]
2880
- }
2881
- >
2882
- 14
2883
- </Text>
2884
- </View>
2885
- <View>
2886
- <Text
2887
- style={
2888
- Array [
2889
- Object {
2890
- "color": "#000",
2891
- "fontFamily": "SFProDisplay-Regular",
2892
- "fontSize": undefined,
2893
- "lineHeight": undefined,
2894
- "textAlign": "left",
2895
- "textDecorationLine": "none",
2896
- },
2897
- Object {
2898
- "bottom": 8,
2899
- "color": "#000000",
2900
- "fontSize": 20,
2901
- "height": 28,
2902
- "left": -28,
2903
- "position": "absolute",
2904
- "textAlign": "center",
2905
- "transform": Array [
2906
- Object {
2907
- "rotate": "90deg",
2908
- },
2909
- ],
2910
- "width": 115,
2911
- },
2912
- ]
2913
- }
2914
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL1"
2915
- />
2916
- </View>
2917
- </View>
2918
- </View>
2919
- </View>
2920
- </View>
2921
- </RCTScrollView>
2922
- </RCTSafeAreaView>
2923
- `;
2924
-
2925
- exports[`Test WaterQualityGuide render WaterQualityGuide with turbidityGuide 1`] = `
2926
- <RCTSafeAreaView
2927
- emulateUnlessSupported={true}
2928
- style={
2929
- Object {
2930
- "backgroundColor": "#FFFFFF",
2931
- "flex": 1,
2932
- }
2933
- }
2934
- >
2935
- <RCTScrollView
2936
- style={
2937
- Object {
2938
- "backgroundColor": "#FFFFFF",
2939
- "flex": 1,
2940
- }
2941
- }
2942
- >
2943
- <View>
2944
- <View
2945
- style={
2946
- Object {
2947
- "marginBottom": 28,
2948
- }
2949
- }
2950
- >
2951
- <View>
2952
- <Text
2953
- style={
2954
- Array [
2955
- Object {
2956
- "color": "#262626",
2957
- "fontFamily": "SFProDisplay-Semibold",
2958
- "fontSize": 20,
2959
- "lineHeight": 20,
2960
- "textAlign": "left",
2961
- "textDecorationLine": "none",
2962
- },
2963
- Object {
2964
- "lineHeight": 28,
2965
- "marginBottom": 8,
2966
- "marginHorizontal": 16,
2967
- "marginTop": 24,
2968
- },
2969
- ]
2970
- }
2971
- testID="WATER_QUALITY_GUIDE_TITLE"
2972
- >
2973
- Độ đục của nước là gì?
2974
- </Text>
2975
- <Text
2976
- style={
2977
- Array [
2978
- Object {
2979
- "color": "#595959",
2980
- "fontFamily": "SFProDisplay-Regular",
2981
- "fontSize": 14,
2982
- "lineHeight": 14,
2983
- "textAlign": "left",
2984
- "textDecorationLine": "none",
2985
- },
2986
- Object {
2987
- "lineHeight": 28,
2988
- "marginHorizontal": 16,
2989
- },
2990
- ]
2991
- }
2992
- testID="WATER_QUALITY_GUIDE_DESCRIPTION"
2993
- >
2994
- Độ đục của nước là thước đo độ trong tương đối của nước. Độ đục là một đặc tính quang học của nước và là một biểu hiện của lượng ánh sáng được phân tán bởi vật liệu trong nước khi ánh sáng được chiếu xuyên qua mẫu nước. Cường độ ánh sáng càng cao thì độ đục càng cao. Độ đục có thể đến từ các hạt vật chất lơ lửng như bùn, đất sét, vật liêu vô cơ hoặc các chất hữu cơ như tảo, sinh vật phù du, vật liệu phân rã.
2995
- </Text>
2996
- </View>
2997
- <View>
2998
- <Text
2999
- style={
3000
- Array [
3001
- Object {
3002
- "color": "#262626",
3003
- "fontFamily": "SFProDisplay-Semibold",
3004
- "fontSize": 20,
3005
- "lineHeight": 20,
3006
- "textAlign": "left",
3007
- "textDecorationLine": "none",
3008
- },
3009
- Object {
3010
- "lineHeight": 28,
3011
- "marginBottom": 8,
3012
- "marginHorizontal": 16,
3013
- "marginTop": 24,
3014
- },
3015
- ]
3016
- }
3017
- testID="WATER_QUALITY_GUIDE_TITLE"
3018
- >
3019
- Hướng dẫn về độ đục cho nước uống
3020
- </Text>
3021
- <Text
3022
- style={
3023
- Array [
3024
- Object {
3025
- "color": "#595959",
3026
- "fontFamily": "SFProDisplay-Regular",
3027
- "fontSize": 14,
3028
- "lineHeight": 14,
3029
- "textAlign": "left",
3030
- "textDecorationLine": "none",
3031
- },
3032
- Object {
3033
- "lineHeight": 28,
3034
- "marginHorizontal": 16,
3035
- },
3036
- ]
3037
- }
3038
- testID="WATER_QUALITY_GUIDE_DESCRIPTION"
3039
- >
3040
- Độ đục của nước là chỉ số cảnh báo đầu tiên về chất lượng nước có thể ảnh hưởng đến sức khoẻ con người.
3041
- Đối với nguồn cung cấp nước uống, độ đục được khuyến nghị phải tuân theo những yêu cầu sau để đảm bảo các an toàn về sức khoẻ:
3042
- - Nước uống phải có độ đục từ 5 NTU / JTU trở xuống. Độ đục của nước lớn hơn 5 NTU / JTU sẽ được người dùng nhận thấy và bị từ chối cung cấp.
3043
- - Khi nước được khử trùng bằng clo, độ đục phải nhỏ hơn 5 NTU / JTU và tốt hơn là nhỏ hơn 1 NTU / JTU.
3044
- </Text>
3045
- </View>
3046
- <View
3047
- style={
3048
- Object {
3049
- "flexDirection": "row",
3050
- "marginHorizontal": 16,
3051
- "marginTop": 16,
3052
- }
3053
- }
3054
- >
3055
- <View
3056
- style={
3057
- Object {
3058
- "backgroundColor": "#52C41A",
3059
- "borderRadius": 5,
3060
- "height": 40,
3061
- "width": 40,
3062
- }
3063
- }
3064
- />
3065
- <View
3066
- style={
3067
- Object {
3068
- "flex": 1,
3069
- "marginLeft": 16,
3070
- }
3071
- }
3072
- >
3073
- <Text
3074
- style={
3075
- Array [
3076
- Object {
3077
- "color": "#52C41A",
3078
- "fontFamily": "SFProDisplay-Semibold",
3079
- "fontSize": 16,
3080
- "lineHeight": 16,
3081
- "textAlign": "left",
3082
- "textDecorationLine": "none",
3083
- },
3084
- Object {},
3085
- ]
3086
- }
3087
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
3088
- >
3089
- Rất tốt
3090
- </Text>
3091
- <Text
3092
- style={
3093
- Array [
3094
- Object {
3095
- "color": "#595959",
3096
- "fontFamily": "SFProDisplay-Regular",
3097
- "fontSize": 14,
3098
- "lineHeight": 14,
3099
- "textAlign": "left",
3100
- "textDecorationLine": "none",
3101
- },
3102
- Object {},
3103
- ]
3104
- }
3105
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
3106
- >
3107
- 0 - 1.1 NTU
3108
- </Text>
3109
- </View>
3110
- </View>
3111
- <View
3112
- style={
3113
- Object {
3114
- "flexDirection": "row",
3115
- "marginHorizontal": 16,
3116
- "marginTop": 16,
3117
- }
3118
- }
3119
- >
3120
- <View
3121
- style={
3122
- Object {
3123
- "backgroundColor": "#FADB14",
3124
- "borderRadius": 5,
3125
- "height": 40,
3126
- "width": 40,
3127
- }
3128
- }
3129
- />
3130
- <View
3131
- style={
3132
- Object {
3133
- "flex": 1,
3134
- "marginLeft": 16,
3135
- }
3136
- }
3137
- >
3138
- <Text
3139
- style={
3140
- Array [
3141
- Object {
3142
- "color": "#FADB14",
3143
- "fontFamily": "SFProDisplay-Semibold",
3144
- "fontSize": 16,
3145
- "lineHeight": 16,
3146
- "textAlign": "left",
3147
- "textDecorationLine": "none",
3148
- },
3149
- Object {},
3150
- ]
3151
- }
3152
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
3153
- >
3154
- Tốt
3155
- </Text>
3156
- <Text
3157
- style={
3158
- Array [
3159
- Object {
3160
- "color": "#595959",
3161
- "fontFamily": "SFProDisplay-Regular",
3162
- "fontSize": 14,
3163
- "lineHeight": 14,
3164
- "textAlign": "left",
3165
- "textDecorationLine": "none",
3166
- },
3167
- Object {},
3168
- ]
3169
- }
3170
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
3171
- >
3172
- 1.2 - 2.4 NTU
3173
- </Text>
3174
- </View>
3175
- </View>
3176
- <View
3177
- style={
3178
- Object {
3179
- "flexDirection": "row",
3180
- "marginHorizontal": 16,
3181
- "marginTop": 16,
3182
- }
3183
- }
3184
- >
3185
- <View
3186
- style={
3187
- Object {
3188
- "backgroundColor": "#FA8C16",
3189
- "borderRadius": 5,
3190
- "height": 40,
3191
- "width": 40,
3192
- }
3193
- }
3194
- />
3195
- <View
3196
- style={
3197
- Object {
3198
- "flex": 1,
3199
- "marginLeft": 16,
3200
- }
3201
- }
3202
- >
3203
- <Text
3204
- style={
3205
- Array [
3206
- Object {
3207
- "color": "#FA8C16",
3208
- "fontFamily": "SFProDisplay-Semibold",
3209
- "fontSize": 16,
3210
- "lineHeight": 16,
3211
- "textAlign": "left",
3212
- "textDecorationLine": "none",
3213
- },
3214
- Object {},
3215
- ]
3216
- }
3217
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
3218
- >
3219
- Trung bình
3220
- </Text>
3221
- <Text
3222
- style={
3223
- Array [
3224
- Object {
3225
- "color": "#595959",
3226
- "fontFamily": "SFProDisplay-Regular",
3227
- "fontSize": 14,
3228
- "lineHeight": 14,
3229
- "textAlign": "left",
3230
- "textDecorationLine": "none",
3231
- },
3232
- Object {},
3233
- ]
3234
- }
3235
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
3236
- >
3237
- 2.5 - 3.7 NTU
3238
- </Text>
3239
- </View>
3240
- </View>
3241
- <View
3242
- style={
3243
- Object {
3244
- "flexDirection": "row",
3245
- "marginHorizontal": 16,
3246
- "marginTop": 16,
3247
- }
3248
- }
3249
- >
3250
- <View
3251
- style={
3252
- Object {
3253
- "backgroundColor": "#F5222D",
3254
- "borderRadius": 5,
3255
- "height": 40,
3256
- "width": 40,
3257
- }
3258
- }
3259
- />
3260
- <View
3261
- style={
3262
- Object {
3263
- "flex": 1,
3264
- "marginLeft": 16,
3265
- }
3266
- }
3267
- >
3268
- <Text
3269
- style={
3270
- Array [
3271
- Object {
3272
- "color": "#F5222D",
3273
- "fontFamily": "SFProDisplay-Semibold",
3274
- "fontSize": 16,
3275
- "lineHeight": 16,
3276
- "textAlign": "left",
3277
- "textDecorationLine": "none",
3278
- },
3279
- Object {},
3280
- ]
3281
- }
3282
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
3283
- >
3284
- Kém
3285
- </Text>
3286
- <Text
3287
- style={
3288
- Array [
3289
- Object {
3290
- "color": "#595959",
3291
- "fontFamily": "SFProDisplay-Regular",
3292
- "fontSize": 14,
3293
- "lineHeight": 14,
3294
- "textAlign": "left",
3295
- "textDecorationLine": "none",
3296
- },
3297
- Object {},
3298
- ]
3299
- }
3300
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
3301
- >
3302
- 3.8 - 5 NTU
3303
- </Text>
3304
- </View>
3305
- </View>
3306
- <View
3307
- style={
3308
- Object {
3309
- "flexDirection": "row",
3310
- "marginHorizontal": 16,
3311
- "marginTop": 16,
3312
- }
3313
- }
3314
- >
3315
- <View
3316
- style={
3317
- Object {
3318
- "backgroundColor": "#722ED1",
3319
- "borderRadius": 5,
3320
- "height": 40,
3321
- "width": 40,
3322
- }
3323
- }
3324
- />
3325
- <View
3326
- style={
3327
- Object {
3328
- "flex": 1,
3329
- "marginLeft": 16,
3330
- }
3331
- }
3332
- >
3333
- <Text
3334
- style={
3335
- Array [
3336
- Object {
3337
- "color": "#722ED1",
3338
- "fontFamily": "SFProDisplay-Semibold",
3339
- "fontSize": 16,
3340
- "lineHeight": 16,
3341
- "textAlign": "left",
3342
- "textDecorationLine": "none",
3343
- },
3344
- Object {},
3345
- ]
3346
- }
3347
- testID="WATER_QUALITY_GUIDE_TITLE_LEVEL"
3348
- >
3349
- Rất kém
3350
- </Text>
3351
- <Text
3352
- style={
3353
- Array [
3354
- Object {
3355
- "color": "#595959",
3356
- "fontFamily": "SFProDisplay-Regular",
3357
- "fontSize": 14,
3358
- "lineHeight": 14,
3359
- "textAlign": "left",
3360
- "textDecorationLine": "none",
3361
- },
3362
- Object {},
3363
- ]
3364
- }
3365
- testID="WATER_QUALITY_GUIDE_DESCRIPTION_LEVEL"
3366
- >
3367
- &gt; 5 NTU
3368
- </Text>
3369
- </View>
3370
- </View>
3371
- </View>
3372
- </View>
3373
- </RCTScrollView>
3374
- </RCTSafeAreaView>
3375
- `;