react-native-xenon 0.2.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -3
- package/lib/commonjs/assets/icons/bug.png +0 -0
- package/lib/commonjs/contexts/MainContext.js.map +1 -1
- package/lib/commonjs/contexts/index.js +1 -1
- package/lib/commonjs/core/constants.js.map +1 -0
- package/lib/commonjs/core/data.js +10 -0
- package/lib/commonjs/core/data.js.map +1 -0
- package/lib/commonjs/core/global.d.js.map +1 -0
- package/lib/commonjs/{utils.js → core/utils.js} +24 -1
- package/lib/commonjs/core/utils.js.map +1 -0
- package/lib/commonjs/hooks/index.js +2 -9
- package/lib/commonjs/hooks/index.js.map +1 -1
- package/lib/commonjs/hooks/useConsoleInterceptor.js +9 -6
- package/lib/commonjs/hooks/useConsoleInterceptor.js.map +1 -1
- package/lib/commonjs/hooks/useNetworkInterceptor.js +21 -16
- package/lib/commonjs/hooks/useNetworkInterceptor.js.map +1 -1
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/interceptors/ConsoleInterceptor.js +12 -17
- package/lib/commonjs/interceptors/ConsoleInterceptor.js.map +1 -1
- package/lib/commonjs/interceptors/FetchInterceptor.js +15 -20
- package/lib/commonjs/interceptors/FetchInterceptor.js.map +1 -1
- package/lib/commonjs/interceptors/HttpInterceptor.js +8 -47
- package/lib/commonjs/interceptors/HttpInterceptor.js.map +1 -1
- package/lib/commonjs/interceptors/Interceptor.js +9 -3
- package/lib/commonjs/interceptors/Interceptor.js.map +1 -1
- package/lib/commonjs/interceptors/NetworkInterceptor.js +15 -2
- package/lib/commonjs/interceptors/NetworkInterceptor.js.map +1 -1
- package/lib/commonjs/interceptors/WebSocketInterceptor.js +28 -77
- package/lib/commonjs/interceptors/WebSocketInterceptor.js.map +1 -1
- package/lib/commonjs/interceptors/XHRInterceptor.js +13 -18
- package/lib/commonjs/interceptors/XHRInterceptor.js.map +1 -1
- package/lib/commonjs/interceptors/index.js +4 -4
- package/lib/commonjs/theme/colors.js.map +1 -0
- package/lib/commonjs/theme/icons.js +15 -0
- package/lib/commonjs/theme/icons.js.map +1 -0
- package/lib/commonjs/types/common.js.map +1 -1
- package/lib/commonjs/types/index.js +4 -4
- package/lib/commonjs/ui/Xenon.js +78 -64
- package/lib/commonjs/ui/Xenon.js.map +1 -1
- package/lib/commonjs/ui/components/bubble/Bubble.js +89 -57
- package/lib/commonjs/ui/components/bubble/Bubble.js.map +1 -1
- package/lib/commonjs/ui/components/details/DetailsViewer.js +9 -14
- package/lib/commonjs/ui/components/details/DetailsViewer.js.map +1 -1
- package/lib/commonjs/ui/components/details/LogMessageDetails.js +2 -2
- package/lib/commonjs/ui/components/details/LogMessageDetails.js.map +1 -1
- package/lib/commonjs/ui/components/details/NetworkRequestDetails.js +26 -11
- package/lib/commonjs/ui/components/details/NetworkRequestDetails.js.map +1 -1
- package/lib/commonjs/ui/components/headers/DebuggerHeader.js +42 -22
- package/lib/commonjs/ui/components/headers/DebuggerHeader.js.map +1 -1
- package/lib/commonjs/ui/components/headers/NetworkPanelHeader.js +2 -2
- package/lib/commonjs/ui/components/headers/NetworkPanelHeader.js.map +1 -1
- package/lib/commonjs/ui/components/headers/NetworkRequestDetailsHeader.js +1 -2
- package/lib/commonjs/ui/components/headers/NetworkRequestDetailsHeader.js.map +1 -1
- package/lib/commonjs/ui/components/index.js +5 -5
- package/lib/commonjs/ui/components/items/ConsolePanelItem.js +2 -2
- package/lib/commonjs/ui/components/items/ConsolePanelItem.js.map +1 -1
- package/lib/commonjs/ui/components/items/DebuggerHeaderItem.js +4 -2
- package/lib/commonjs/ui/components/items/DebuggerHeaderItem.js.map +1 -1
- package/lib/commonjs/ui/components/items/NetworkPanelItem.js +2 -2
- package/lib/commonjs/ui/components/items/NetworkPanelItem.js.map +1 -1
- package/lib/commonjs/ui/components/items/NetworkRequestDetailsHeaderItem.js +2 -3
- package/lib/commonjs/ui/components/items/NetworkRequestDetailsHeaderItem.js.map +1 -1
- package/lib/commonjs/ui/components/items/NetworkRequestDetailsItem.js +7 -6
- package/lib/commonjs/ui/components/items/NetworkRequestDetailsItem.js.map +1 -1
- package/lib/commonjs/ui/components/panels/ConsolePanel.js +21 -23
- package/lib/commonjs/ui/components/panels/ConsolePanel.js.map +1 -1
- package/lib/commonjs/ui/components/panels/NetworkPanel.js +30 -33
- package/lib/commonjs/ui/components/panels/NetworkPanel.js.map +1 -1
- package/lib/module/assets/icons/bug.png +0 -0
- package/lib/module/contexts/MainContext.js +7 -3
- package/lib/module/contexts/MainContext.js.map +1 -1
- package/lib/module/contexts/index.js +11 -1
- package/lib/module/contexts/index.js.map +1 -1
- package/lib/module/core/constants.js +8 -0
- package/lib/module/core/constants.js.map +1 -0
- package/lib/module/core/data.js +10 -0
- package/lib/module/core/data.js.map +1 -0
- package/lib/module/core/global.d.js.map +1 -0
- package/lib/module/core/utils.js +71 -0
- package/lib/module/core/utils.js.map +1 -0
- package/lib/module/hooks/index.js +18 -3
- package/lib/module/hooks/index.js.map +1 -1
- package/lib/module/hooks/useConsoleInterceptor.js +21 -14
- package/lib/module/hooks/useConsoleInterceptor.js.map +1 -1
- package/lib/module/hooks/useNetworkInterceptor.js +38 -29
- package/lib/module/hooks/useNetworkInterceptor.js.map +1 -1
- package/lib/module/index.js +11 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/interceptors/ConsoleInterceptor.js +16 -14
- package/lib/module/interceptors/ConsoleInterceptor.js.map +1 -1
- package/lib/module/interceptors/FetchInterceptor.js +23 -22
- package/lib/module/interceptors/FetchInterceptor.js.map +1 -1
- package/lib/module/interceptors/HttpInterceptor.js +14 -48
- package/lib/module/interceptors/HttpInterceptor.js.map +1 -1
- package/lib/module/interceptors/Interceptor.js +13 -2
- package/lib/module/interceptors/Interceptor.js.map +1 -1
- package/lib/module/interceptors/NetworkInterceptor.js +21 -2
- package/lib/module/interceptors/NetworkInterceptor.js.map +1 -1
- package/lib/module/interceptors/WebSocketInterceptor.js +48 -91
- package/lib/module/interceptors/WebSocketInterceptor.js.map +1 -1
- package/lib/module/interceptors/XHRInterceptor.js +19 -18
- package/lib/module/interceptors/XHRInterceptor.js.map +1 -1
- package/lib/module/interceptors/index.js +32 -4
- package/lib/module/interceptors/index.js.map +1 -1
- package/lib/module/theme/colors.js +14 -0
- package/lib/module/theme/colors.js.map +1 -0
- package/lib/module/theme/icons.js +15 -0
- package/lib/module/theme/icons.js.map +1 -0
- package/lib/module/types/common.js +6 -2
- package/lib/module/types/common.js.map +1 -1
- package/lib/module/types/http.js +3 -1
- package/lib/module/types/index.js +47 -4
- package/lib/module/types/index.js.map +1 -1
- package/lib/module/types/websocket.js +3 -1
- package/lib/module/ui/Xenon.js +97 -78
- package/lib/module/ui/Xenon.js.map +1 -1
- package/lib/module/ui/components/bubble/Bubble.js +100 -63
- package/lib/module/ui/components/bubble/Bubble.js.map +1 -1
- package/lib/module/ui/components/details/DetailsViewer.js +18 -18
- package/lib/module/ui/components/details/DetailsViewer.js.map +1 -1
- package/lib/module/ui/components/details/LogMessageDetails.js +15 -10
- package/lib/module/ui/components/details/LogMessageDetails.js.map +1 -1
- package/lib/module/ui/components/details/NetworkRequestDetails.js +66 -46
- package/lib/module/ui/components/details/NetworkRequestDetails.js.map +1 -1
- package/lib/module/ui/components/headers/DebuggerHeader.js +68 -43
- package/lib/module/ui/components/headers/DebuggerHeader.js.map +1 -1
- package/lib/module/ui/components/headers/NetworkPanelHeader.js +26 -21
- package/lib/module/ui/components/headers/NetworkPanelHeader.js.map +1 -1
- package/lib/module/ui/components/headers/NetworkRequestDetailsHeader.js +14 -10
- package/lib/module/ui/components/headers/NetworkRequestDetailsHeader.js.map +1 -1
- package/lib/module/ui/components/index.js +39 -5
- package/lib/module/ui/components/index.js.map +1 -1
- package/lib/module/ui/components/items/ConsolePanelItem.js +15 -10
- package/lib/module/ui/components/items/ConsolePanelItem.js.map +1 -1
- package/lib/module/ui/components/items/DebuggerHeaderItem.js +20 -13
- package/lib/module/ui/components/items/DebuggerHeaderItem.js.map +1 -1
- package/lib/module/ui/components/items/NetworkPanelItem.js +28 -23
- package/lib/module/ui/components/items/NetworkPanelItem.js.map +1 -1
- package/lib/module/ui/components/items/NetworkRequestDetailsHeaderItem.js +15 -11
- package/lib/module/ui/components/items/NetworkRequestDetailsHeaderItem.js.map +1 -1
- package/lib/module/ui/components/items/NetworkRequestDetailsItem.js +21 -15
- package/lib/module/ui/components/items/NetworkRequestDetailsItem.js.map +1 -1
- package/lib/module/ui/components/panels/ConsolePanel.js +35 -32
- package/lib/module/ui/components/panels/ConsolePanel.js.map +1 -1
- package/lib/module/ui/components/panels/NetworkPanel.js +43 -41
- package/lib/module/ui/components/panels/NetworkPanel.js.map +1 -1
- package/lib/typescript/commonjs/src/contexts/MainContext.d.ts +5 -17
- package/lib/typescript/commonjs/src/contexts/MainContext.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/core/constants.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/core/data.d.ts +10 -0
- package/lib/typescript/commonjs/src/core/data.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/{utils.d.ts → core/utils.d.ts} +10 -1
- package/lib/typescript/commonjs/src/core/utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/index.d.ts +0 -1
- package/lib/typescript/commonjs/src/hooks/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/hooks/useConsoleInterceptor.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/hooks/useNetworkInterceptor.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/interceptors/ConsoleInterceptor.d.ts +3 -5
- package/lib/typescript/commonjs/src/interceptors/ConsoleInterceptor.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/interceptors/FetchInterceptor.d.ts +0 -2
- package/lib/typescript/commonjs/src/interceptors/FetchInterceptor.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/interceptors/HttpInterceptor.d.ts +3 -20
- package/lib/typescript/commonjs/src/interceptors/HttpInterceptor.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/interceptors/Interceptor.d.ts +3 -1
- package/lib/typescript/commonjs/src/interceptors/Interceptor.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/interceptors/NetworkInterceptor.d.ts +7 -3
- package/lib/typescript/commonjs/src/interceptors/NetworkInterceptor.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/interceptors/WebSocketInterceptor.d.ts +4 -25
- package/lib/typescript/commonjs/src/interceptors/WebSocketInterceptor.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/interceptors/XHRInterceptor.d.ts +0 -2
- package/lib/typescript/commonjs/src/interceptors/XHRInterceptor.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/colors.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs/src/theme}/icons.d.ts +1 -1
- package/lib/typescript/commonjs/src/theme/icons.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/common.d.ts +6 -4
- package/lib/typescript/commonjs/src/types/common.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/types/console.d.ts +3 -0
- package/lib/typescript/commonjs/src/types/console.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/types/http.d.ts +7 -5
- package/lib/typescript/commonjs/src/types/http.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/types/websocket.d.ts +9 -7
- package/lib/typescript/commonjs/src/types/websocket.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/ui/Xenon.d.ts +2 -0
- package/lib/typescript/commonjs/src/ui/Xenon.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/ui/components/bubble/Bubble.d.ts +4 -1
- package/lib/typescript/commonjs/src/ui/components/bubble/Bubble.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/ui/components/details/DetailsViewer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/ui/components/details/NetworkRequestDetails.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/ui/components/headers/DebuggerHeader.d.ts +5 -1
- package/lib/typescript/commonjs/src/ui/components/headers/DebuggerHeader.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/ui/components/headers/NetworkRequestDetailsHeader.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/ui/components/items/NetworkRequestDetailsHeaderItem.d.ts +1 -3
- package/lib/typescript/commonjs/src/ui/components/items/NetworkRequestDetailsHeaderItem.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/ui/components/items/NetworkRequestDetailsItem.d.ts +3 -3
- package/lib/typescript/commonjs/src/ui/components/items/NetworkRequestDetailsItem.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/ui/components/panels/ConsolePanel.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/ui/components/panels/NetworkPanel.d.ts.map +1 -1
- package/lib/typescript/module/src/contexts/MainContext.d.ts +5 -17
- package/lib/typescript/module/src/contexts/MainContext.d.ts.map +1 -1
- package/lib/typescript/module/src/core/constants.d.ts.map +1 -0
- package/lib/typescript/module/src/core/data.d.ts +10 -0
- package/lib/typescript/module/src/core/data.d.ts.map +1 -0
- package/lib/typescript/module/src/{utils.d.ts → core/utils.d.ts} +10 -1
- package/lib/typescript/module/src/core/utils.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/index.d.ts +0 -1
- package/lib/typescript/module/src/hooks/index.d.ts.map +1 -1
- package/lib/typescript/module/src/hooks/useConsoleInterceptor.d.ts.map +1 -1
- package/lib/typescript/module/src/hooks/useNetworkInterceptor.d.ts.map +1 -1
- package/lib/typescript/module/src/interceptors/ConsoleInterceptor.d.ts +3 -5
- package/lib/typescript/module/src/interceptors/ConsoleInterceptor.d.ts.map +1 -1
- package/lib/typescript/module/src/interceptors/FetchInterceptor.d.ts +0 -2
- package/lib/typescript/module/src/interceptors/FetchInterceptor.d.ts.map +1 -1
- package/lib/typescript/module/src/interceptors/HttpInterceptor.d.ts +3 -20
- package/lib/typescript/module/src/interceptors/HttpInterceptor.d.ts.map +1 -1
- package/lib/typescript/module/src/interceptors/Interceptor.d.ts +3 -1
- package/lib/typescript/module/src/interceptors/Interceptor.d.ts.map +1 -1
- package/lib/typescript/module/src/interceptors/NetworkInterceptor.d.ts +7 -3
- package/lib/typescript/module/src/interceptors/NetworkInterceptor.d.ts.map +1 -1
- package/lib/typescript/module/src/interceptors/WebSocketInterceptor.d.ts +4 -25
- package/lib/typescript/module/src/interceptors/WebSocketInterceptor.d.ts.map +1 -1
- package/lib/typescript/module/src/interceptors/XHRInterceptor.d.ts +0 -2
- package/lib/typescript/module/src/interceptors/XHRInterceptor.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/colors.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module/src/theme}/icons.d.ts +1 -1
- package/lib/typescript/module/src/theme/icons.d.ts.map +1 -0
- package/lib/typescript/module/src/types/common.d.ts +6 -4
- package/lib/typescript/module/src/types/common.d.ts.map +1 -1
- package/lib/typescript/module/src/types/console.d.ts +3 -0
- package/lib/typescript/module/src/types/console.d.ts.map +1 -1
- package/lib/typescript/module/src/types/http.d.ts +7 -5
- package/lib/typescript/module/src/types/http.d.ts.map +1 -1
- package/lib/typescript/module/src/types/websocket.d.ts +9 -7
- package/lib/typescript/module/src/types/websocket.d.ts.map +1 -1
- package/lib/typescript/module/src/ui/Xenon.d.ts +2 -0
- package/lib/typescript/module/src/ui/Xenon.d.ts.map +1 -1
- package/lib/typescript/module/src/ui/components/bubble/Bubble.d.ts +4 -1
- package/lib/typescript/module/src/ui/components/bubble/Bubble.d.ts.map +1 -1
- package/lib/typescript/module/src/ui/components/details/DetailsViewer.d.ts.map +1 -1
- package/lib/typescript/module/src/ui/components/details/NetworkRequestDetails.d.ts.map +1 -1
- package/lib/typescript/module/src/ui/components/headers/DebuggerHeader.d.ts +5 -1
- package/lib/typescript/module/src/ui/components/headers/DebuggerHeader.d.ts.map +1 -1
- package/lib/typescript/module/src/ui/components/headers/NetworkRequestDetailsHeader.d.ts.map +1 -1
- package/lib/typescript/module/src/ui/components/items/NetworkRequestDetailsHeaderItem.d.ts +1 -3
- package/lib/typescript/module/src/ui/components/items/NetworkRequestDetailsHeaderItem.d.ts.map +1 -1
- package/lib/typescript/module/src/ui/components/items/NetworkRequestDetailsItem.d.ts +3 -3
- package/lib/typescript/module/src/ui/components/items/NetworkRequestDetailsItem.d.ts.map +1 -1
- package/lib/typescript/module/src/ui/components/panels/ConsolePanel.d.ts.map +1 -1
- package/lib/typescript/module/src/ui/components/panels/NetworkPanel.d.ts.map +1 -1
- package/package.json +12 -6
- package/src/assets/icons/bug.png +0 -0
- package/src/contexts/MainContext.ts +6 -25
- package/src/core/data.ts +12 -0
- package/src/{utils.ts → core/utils.ts} +27 -1
- package/src/hooks/index.ts +0 -1
- package/src/hooks/useConsoleInterceptor.ts +10 -7
- package/src/hooks/useNetworkInterceptor.ts +52 -55
- package/src/interceptors/ConsoleInterceptor.ts +11 -15
- package/src/interceptors/FetchInterceptor.ts +17 -18
- package/src/interceptors/HttpInterceptor.ts +9 -62
- package/src/interceptors/Interceptor.ts +11 -1
- package/src/interceptors/NetworkInterceptor.ts +18 -3
- package/src/interceptors/WebSocketInterceptor.ts +28 -95
- package/src/interceptors/XHRInterceptor.ts +11 -15
- package/src/theme/icons.ts +9 -0
- package/src/types/common.ts +8 -8
- package/src/types/console.ts +4 -0
- package/src/types/http.ts +24 -28
- package/src/types/websocket.ts +16 -26
- package/src/ui/Xenon.tsx +89 -78
- package/src/ui/components/bubble/Bubble.tsx +98 -62
- package/src/ui/components/details/DetailsViewer.tsx +6 -9
- package/src/ui/components/details/LogMessageDetails.tsx +2 -2
- package/src/ui/components/details/NetworkRequestDetails.tsx +26 -9
- package/src/ui/components/headers/DebuggerHeader.tsx +46 -24
- package/src/ui/components/headers/NetworkPanelHeader.tsx +2 -2
- package/src/ui/components/headers/NetworkRequestDetailsHeader.tsx +0 -1
- package/src/ui/components/items/ConsolePanelItem.tsx +2 -2
- package/src/ui/components/items/DebuggerHeaderItem.tsx +3 -1
- package/src/ui/components/items/NetworkPanelItem.tsx +2 -2
- package/src/ui/components/items/NetworkRequestDetailsHeaderItem.tsx +1 -5
- package/src/ui/components/items/NetworkRequestDetailsItem.tsx +7 -7
- package/src/ui/components/panels/ConsolePanel.tsx +19 -22
- package/src/ui/components/panels/NetworkPanel.tsx +31 -35
- package/lib/commonjs/assets/icons/code.png +0 -0
- package/lib/commonjs/colors.js.map +0 -1
- package/lib/commonjs/constants.js.map +0 -1
- package/lib/commonjs/global.d.js.map +0 -1
- package/lib/commonjs/hooks/useScrollToBottom.js +0 -23
- package/lib/commonjs/hooks/useScrollToBottom.js.map +0 -1
- package/lib/commonjs/icons.js +0 -15
- package/lib/commonjs/icons.js.map +0 -1
- package/lib/commonjs/utils.js.map +0 -1
- package/lib/module/assets/icons/code.png +0 -0
- package/lib/module/colors.js +0 -10
- package/lib/module/colors.js.map +0 -1
- package/lib/module/constants.js +0 -4
- package/lib/module/constants.js.map +0 -1
- package/lib/module/global.d.js.map +0 -1
- package/lib/module/hooks/useScrollToBottom.js +0 -19
- package/lib/module/hooks/useScrollToBottom.js.map +0 -1
- package/lib/module/icons.js +0 -11
- package/lib/module/icons.js.map +0 -1
- package/lib/module/utils.js +0 -36
- package/lib/module/utils.js.map +0 -1
- package/lib/typescript/commonjs/src/colors.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/hooks/useScrollToBottom.d.ts +0 -3
- package/lib/typescript/commonjs/src/hooks/useScrollToBottom.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/icons.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils.d.ts.map +0 -1
- package/lib/typescript/module/src/colors.d.ts.map +0 -1
- package/lib/typescript/module/src/constants.d.ts.map +0 -1
- package/lib/typescript/module/src/hooks/useScrollToBottom.d.ts +0 -3
- package/lib/typescript/module/src/hooks/useScrollToBottom.d.ts.map +0 -1
- package/lib/typescript/module/src/icons.d.ts.map +0 -1
- package/lib/typescript/module/src/utils.d.ts.map +0 -1
- package/src/assets/icons/code.png +0 -0
- package/src/hooks/useScrollToBottom.ts +0 -23
- package/src/icons.ts +0 -9
- /package/lib/commonjs/{constants.js → core/constants.js} +0 -0
- /package/lib/commonjs/{global.d.js → core/global.d.js} +0 -0
- /package/lib/commonjs/{colors.js → theme/colors.js} +0 -0
- /package/lib/module/{global.d.js → core/global.d.js} +0 -0
- /package/lib/typescript/commonjs/src/{constants.d.ts → core/constants.d.ts} +0 -0
- /package/lib/typescript/commonjs/src/{colors.d.ts → theme/colors.d.ts} +0 -0
- /package/lib/typescript/module/src/{constants.d.ts → core/constants.d.ts} +0 -0
- /package/lib/typescript/module/src/{colors.d.ts → theme/colors.d.ts} +0 -0
- /package/src/{constants.ts → core/constants.ts} +0 -0
- /package/src/{global.d.ts → core/global.d.ts} +0 -0
- /package/src/{colors.ts → theme/colors.ts} +0 -0
@@ -1,22 +1,27 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = NetworkPanelItem;
|
7
|
+
var _react = require("react");
|
8
|
+
var _reactNative = require("react-native");
|
9
|
+
var _reactNativeUrlPolyfill = require("react-native-url-polyfill");
|
10
|
+
var _utils = require("../../../core/utils");
|
11
|
+
var _colors = _interopRequireDefault(require("../../../theme/colors"));
|
12
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
13
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
14
|
+
function NetworkPanelItem({
|
10
15
|
method,
|
11
16
|
name,
|
12
17
|
duration,
|
13
18
|
status,
|
14
19
|
onPress
|
15
20
|
}) {
|
16
|
-
const requestName = useMemo(() => {
|
21
|
+
const requestName = (0, _react.useMemo)(() => {
|
17
22
|
if (!name) return '[failed]';
|
18
23
|
try {
|
19
|
-
const url = new URL(name);
|
24
|
+
const url = new _reactNativeUrlPolyfill.URL(name);
|
20
25
|
const suffixUrl = url.pathname + url.search;
|
21
26
|
if (suffixUrl === '/') return url.host;
|
22
27
|
return suffixUrl;
|
@@ -24,41 +29,41 @@ export default function NetworkPanelItem({
|
|
24
29
|
return name;
|
25
30
|
}
|
26
31
|
}, [name]);
|
27
|
-
return /*#__PURE__*/
|
32
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.TouchableOpacity, {
|
28
33
|
onPress: onPress,
|
29
34
|
style: styles.container,
|
30
|
-
children: [/*#__PURE__*/
|
35
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
31
36
|
style: styles.column,
|
32
|
-
children: /*#__PURE__*/
|
37
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
33
38
|
numberOfLines: 1,
|
34
39
|
style: styles.text,
|
35
|
-
children: formatRequestMethod(method)
|
40
|
+
children: (0, _utils.formatRequestMethod)(method)
|
36
41
|
})
|
37
|
-
}), /*#__PURE__*/
|
42
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
38
43
|
style: [styles.column, styles.nameColumn],
|
39
|
-
children: /*#__PURE__*/
|
44
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
40
45
|
numberOfLines: 1,
|
41
46
|
style: styles.text,
|
42
47
|
children: requestName
|
43
48
|
})
|
44
|
-
}), /*#__PURE__*/
|
49
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
45
50
|
style: [styles.column, styles.durationColumn],
|
46
|
-
children: /*#__PURE__*/
|
51
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
47
52
|
numberOfLines: 1,
|
48
53
|
style: styles.text,
|
49
|
-
children: formatRequestDuration(duration)
|
54
|
+
children: (0, _utils.formatRequestDuration)(duration)
|
50
55
|
})
|
51
|
-
}), /*#__PURE__*/
|
56
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
52
57
|
style: styles.column,
|
53
|
-
children: /*#__PURE__*/
|
58
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
54
59
|
numberOfLines: 1,
|
55
60
|
style: styles.text,
|
56
|
-
children: formatRequestStatusCode(status)
|
61
|
+
children: (0, _utils.formatRequestStatusCode)(status)
|
57
62
|
})
|
58
63
|
})]
|
59
64
|
});
|
60
65
|
}
|
61
|
-
const styles = StyleSheet.create({
|
66
|
+
const styles = _reactNative.StyleSheet.create({
|
62
67
|
container: {
|
63
68
|
flex: 1,
|
64
69
|
flexDirection: 'row'
|
@@ -76,7 +81,7 @@ const styles = StyleSheet.create({
|
|
76
81
|
paddingRight: 0
|
77
82
|
},
|
78
83
|
text: {
|
79
|
-
color:
|
84
|
+
color: _colors.default.black,
|
80
85
|
fontSize: 14
|
81
86
|
}
|
82
87
|
});
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_reactNativeUrlPolyfill","_utils","_colors","_interopRequireDefault","_jsxRuntime","e","__esModule","default","NetworkPanelItem","method","name","duration","status","onPress","requestName","useMemo","url","URL","suffixUrl","pathname","search","host","error","jsxs","TouchableOpacity","style","styles","container","children","jsx","View","column","Text","numberOfLines","text","formatRequestMethod","nameColumn","durationColumn","formatRequestDuration","formatRequestStatusCode","StyleSheet","create","flex","flexDirection","flexShrink","padding","paddingRight","color","colors","black","fontSize"],"sourceRoot":"../../../../../src","sources":["ui/components/items/NetworkPanelItem.tsx"],"mappings":"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","ignoreList":[]}
|
@@ -1,27 +1,31 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = NetworkRequestDetailsHeaderItem;
|
7
|
+
var _reactNative = require("react-native");
|
8
|
+
var _colors = _interopRequireDefault(require("../../../theme/colors"));
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
10
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
11
|
+
function NetworkRequestDetailsHeaderItem({
|
7
12
|
visible,
|
8
|
-
name,
|
9
13
|
isSelected,
|
10
14
|
label,
|
11
15
|
onPress
|
12
16
|
}) {
|
13
17
|
if (!visible) return null;
|
14
|
-
return /*#__PURE__*/
|
18
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
15
19
|
activeOpacity: 0.8,
|
16
20
|
onPress: onPress,
|
17
21
|
style: [styles.item, isSelected && styles.activeItem],
|
18
|
-
children: /*#__PURE__*/
|
22
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
19
23
|
style: styles.itemText,
|
20
24
|
children: label
|
21
25
|
})
|
22
|
-
}
|
26
|
+
});
|
23
27
|
}
|
24
|
-
const styles = StyleSheet.create({
|
28
|
+
const styles = _reactNative.StyleSheet.create({
|
25
29
|
item: {
|
26
30
|
flex: 1,
|
27
31
|
paddingHorizontal: 8,
|
@@ -34,11 +38,11 @@ const styles = StyleSheet.create({
|
|
34
38
|
activeItem: {
|
35
39
|
backgroundColor: 'transparent',
|
36
40
|
borderWidth: 1,
|
37
|
-
borderColor:
|
41
|
+
borderColor: _colors.default.black
|
38
42
|
},
|
39
43
|
itemText: {
|
40
44
|
fontSize: 14,
|
41
|
-
color:
|
45
|
+
color: _colors.default.black
|
42
46
|
}
|
43
47
|
});
|
44
48
|
//# sourceMappingURL=NetworkRequestDetailsHeaderItem.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["
|
1
|
+
{"version":3,"names":["_reactNative","require","_colors","_interopRequireDefault","_jsxRuntime","e","__esModule","default","NetworkRequestDetailsHeaderItem","visible","isSelected","label","onPress","jsx","TouchableOpacity","activeOpacity","style","styles","item","activeItem","children","Text","itemText","StyleSheet","create","flex","paddingHorizontal","paddingVertical","borderRadius","backgroundColor","borderWidth","borderColor","colors","black","fontSize","color"],"sourceRoot":"../../../../../src","sources":["ui/components/items/NetworkRequestDetailsHeaderItem.tsx"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AACA,IAAAC,OAAA,GAAAC,sBAAA,CAAAF,OAAA;AAA2C,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAE,uBAAAE,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAS5B,SAASG,+BAA+BA,CAAC;EACtDC,OAAO;EACPC,UAAU;EACVC,KAAK;EACLC;AACoC,CAAC,EAAE;EACvC,IAAI,CAACH,OAAO,EAAE,OAAO,IAAI;EAEzB,oBACE,IAAAL,WAAA,CAAAS,GAAA,EAACb,YAAA,CAAAc,gBAAgB;IACfC,aAAa,EAAE,GAAI;IACnBH,OAAO,EAAEA,OAAQ;IACjBI,KAAK,EAAE,CAACC,MAAM,CAACC,IAAI,EAAER,UAAU,IAAIO,MAAM,CAACE,UAAU,CAAE;IAAAC,QAAA,eAEtD,IAAAhB,WAAA,CAAAS,GAAA,EAACb,YAAA,CAAAqB,IAAI;MAACL,KAAK,EAAEC,MAAM,CAACK,QAAS;MAAAF,QAAA,EAAET;IAAK,CAAO;EAAC,CAC5B,CAAC;AAEvB;AAEA,MAAMM,MAAM,GAAGM,uBAAU,CAACC,MAAM,CAAC;EAC/BN,IAAI,EAAE;IACJO,IAAI,EAAE,CAAC;IACPC,iBAAiB,EAAE,CAAC;IACpBC,eAAe,EAAE,CAAC;IAClBC,YAAY,EAAE,CAAC;IACfC,eAAe,EAAE,aAAa;IAC9BC,WAAW,EAAE,CAAC;IACdC,WAAW,EAAE;EACf,CAAC;EACDZ,UAAU,EAAE;IACVU,eAAe,EAAE,aAAa;IAC9BC,WAAW,EAAE,CAAC;IACdC,WAAW,EAAEC,eAAM,CAACC;EACtB,CAAC;EACDX,QAAQ,EAAE;IACRY,QAAQ,EAAE,EAAE;IACZC,KAAK,EAAEH,eAAM,CAACC;EAChB;AACF,CAAC,CAAC","ignoreList":[]}
|
@@ -1,38 +1,44 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = NetworkRequestDetailsItem;
|
7
|
+
var _reactNative = require("react-native");
|
8
|
+
var _colors = _interopRequireDefault(require("../../../theme/colors"));
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
10
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
11
|
+
function NetworkRequestDetailsItem({
|
7
12
|
label,
|
8
13
|
content,
|
9
|
-
|
14
|
+
style,
|
15
|
+
...props
|
10
16
|
}) {
|
11
17
|
if (label) {
|
12
|
-
return /*#__PURE__*/
|
13
|
-
|
14
|
-
|
15
|
-
children: [/*#__PURE__*/
|
18
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Text, {
|
19
|
+
...props,
|
20
|
+
style: [styles.text, style],
|
21
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Text, {
|
16
22
|
style: styles.label,
|
17
23
|
children: [label, ': ']
|
18
24
|
}), content]
|
19
25
|
});
|
20
26
|
}
|
21
|
-
return /*#__PURE__*/
|
22
|
-
|
23
|
-
|
27
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
28
|
+
...props,
|
29
|
+
style: [styles.text, style],
|
24
30
|
children: content
|
25
31
|
});
|
26
32
|
}
|
27
|
-
const styles = StyleSheet.create({
|
33
|
+
const styles = _reactNative.StyleSheet.create({
|
28
34
|
text: {
|
29
35
|
fontSize: 14,
|
30
|
-
color:
|
36
|
+
color: _colors.default.black
|
31
37
|
},
|
32
38
|
label: {
|
33
39
|
fontSize: 14,
|
34
40
|
fontWeight: 'bold',
|
35
|
-
color:
|
41
|
+
color: _colors.default.black
|
36
42
|
}
|
37
43
|
});
|
38
44
|
//# sourceMappingURL=NetworkRequestDetailsItem.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["
|
1
|
+
{"version":3,"names":["_reactNative","require","_colors","_interopRequireDefault","_jsxRuntime","e","__esModule","default","NetworkRequestDetailsItem","label","content","style","props","jsxs","Text","styles","text","children","jsx","StyleSheet","create","fontSize","color","colors","black","fontWeight"],"sourceRoot":"../../../../../src","sources":["ui/components/items/NetworkRequestDetailsItem.tsx"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AACA,IAAAC,OAAA,GAAAC,sBAAA,CAAAF,OAAA;AAA2C,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAE,uBAAAE,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAO5B,SAASG,yBAAyBA,CAAC;EAChDC,KAAK;EACLC,OAAO;EACPC,KAAK;EACL,GAAGC;AAC2B,CAAC,EAAE;EACjC,IAAIH,KAAK,EAAE;IACT,oBACE,IAAAL,WAAA,CAAAS,IAAA,EAACb,YAAA,CAAAc,IAAI;MAAA,GAAKF,KAAK;MAAED,KAAK,EAAE,CAACI,MAAM,CAACC,IAAI,EAAEL,KAAK,CAAE;MAAAM,QAAA,gBAC3C,IAAAb,WAAA,CAAAS,IAAA,EAACb,YAAA,CAAAc,IAAI;QAACH,KAAK,EAAEI,MAAM,CAACN,KAAM;QAAAQ,QAAA,GACvBR,KAAK,EACL,IAAI;MAAA,CACD,CAAC,EACNC,OAAO;IAAA,CACJ,CAAC;EAEX;EAEA,oBACE,IAAAN,WAAA,CAAAc,GAAA,EAAClB,YAAA,CAAAc,IAAI;IAAA,GAAKF,KAAK;IAAED,KAAK,EAAE,CAACI,MAAM,CAACC,IAAI,EAAEL,KAAK,CAAE;IAAAM,QAAA,EAC1CP;EAAO,CACJ,CAAC;AAEX;AAEA,MAAMK,MAAM,GAAGI,uBAAU,CAACC,MAAM,CAAC;EAC/BJ,IAAI,EAAE;IACJK,QAAQ,EAAE,EAAE;IACZC,KAAK,EAAEC,eAAM,CAACC;EAChB,CAAC;EACDf,KAAK,EAAE;IACLY,QAAQ,EAAE,EAAE;IACZI,UAAU,EAAE,MAAM;IAClBH,KAAK,EAAEC,eAAM,CAACC;EAChB;AACF,CAAC,CAAC","ignoreList":[]}
|
@@ -1,54 +1,57 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = ConsolePanel;
|
7
|
+
var _react = require("react");
|
8
|
+
var _reactNative = require("react-native");
|
9
|
+
var _colors = _interopRequireDefault(require("../../../theme/colors"));
|
10
|
+
var _contexts = require("../../../contexts");
|
11
|
+
var _ConsolePanelItem = _interopRequireDefault(require("../items/ConsolePanelItem"));
|
12
|
+
var _data = require("../../../core/data");
|
13
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
14
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
15
|
+
const Separator = () => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
11
16
|
style: styles.divider
|
12
17
|
});
|
13
|
-
|
18
|
+
function ConsolePanel() {
|
14
19
|
const {
|
15
20
|
logInterceptor: {
|
16
21
|
logMessages
|
17
22
|
},
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
const listRef = useScrollToBottom(logMessages.length);
|
22
|
-
const renderItem = useCallback(({
|
23
|
+
setDebuggerState
|
24
|
+
} = (0, _react.useContext)(_contexts.MainContext);
|
25
|
+
const renderItem = (0, _react.useCallback)(({
|
23
26
|
item
|
24
|
-
}) => {
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
}
|
33
|
-
}
|
34
|
-
}, [
|
35
|
-
return /*#__PURE__*/
|
36
|
-
|
37
|
-
|
38
|
-
data: logMessages,
|
27
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_ConsolePanelItem.default, {
|
28
|
+
...item,
|
29
|
+
onPress: () => {
|
30
|
+
_data.detailsData.value = {
|
31
|
+
console: item
|
32
|
+
};
|
33
|
+
setDebuggerState(draft => {
|
34
|
+
draft.selectedPanel = null;
|
35
|
+
});
|
36
|
+
}
|
37
|
+
}), [setDebuggerState]);
|
38
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.FlatList, {
|
39
|
+
inverted: true,
|
40
|
+
data: logMessages.toReversed(),
|
39
41
|
renderItem: renderItem,
|
42
|
+
keyExtractor: (_, index) => index.toString(),
|
40
43
|
ItemSeparatorComponent: Separator,
|
41
|
-
|
44
|
+
style: styles.container
|
42
45
|
});
|
43
46
|
}
|
44
|
-
const styles = StyleSheet.create({
|
47
|
+
const styles = _reactNative.StyleSheet.create({
|
45
48
|
container: {
|
46
49
|
flex: 1,
|
47
50
|
paddingHorizontal: 8
|
48
51
|
},
|
49
52
|
divider: {
|
50
53
|
height: 1,
|
51
|
-
backgroundColor:
|
54
|
+
backgroundColor: _colors.default.gray
|
52
55
|
}
|
53
56
|
});
|
54
57
|
//# sourceMappingURL=ConsolePanel.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_colors","_interopRequireDefault","_contexts","_ConsolePanelItem","_data","_jsxRuntime","e","__esModule","default","Separator","jsx","View","style","styles","divider","ConsolePanel","logInterceptor","logMessages","setDebuggerState","useContext","MainContext","renderItem","useCallback","item","onPress","detailsData","value","console","draft","selectedPanel","FlatList","inverted","data","toReversed","keyExtractor","_","index","toString","ItemSeparatorComponent","container","StyleSheet","create","flex","paddingHorizontal","height","backgroundColor","colors","gray"],"sourceRoot":"../../../../../src","sources":["ui/components/panels/ConsolePanel.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,OAAA,GAAAC,sBAAA,CAAAH,OAAA;AACA,IAAAI,SAAA,GAAAJ,OAAA;AAEA,IAAAK,iBAAA,GAAAF,sBAAA,CAAAH,OAAA;AACA,IAAAM,KAAA,GAAAN,OAAA;AAAiD,IAAAO,WAAA,GAAAP,OAAA;AAAA,SAAAG,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAEjD,MAAMG,SAAS,GAAGA,CAAA,kBAAM,IAAAJ,WAAA,CAAAK,GAAA,EAACX,YAAA,CAAAY,IAAI;EAACC,KAAK,EAAEC,MAAM,CAACC;AAAQ,CAAE,CAAC;AAExC,SAASC,YAAYA,CAAA,EAAG;EACrC,MAAM;IACJC,cAAc,EAAE;MAAEC;IAAY,CAAC;IAC/BC;EACF,CAAC,GAAG,IAAAC,iBAAU,EAACC,qBAAW,CAAE;EAE5B,MAAMC,UAAU,GAAG,IAAAC,kBAAW,EAC5B,CAAC;IAAEC;EAAK,CAAC,kBACP,IAAAlB,WAAA,CAAAK,GAAA,EAACP,iBAAA,CAAAK,OAAgB;IAAA,GACXe,IAAI;IACRC,OAAO,EAAEA,CAAA,KAAM;MACbC,iBAAW,CAACC,KAAK,GAAG;QAAEC,OAAO,EAAEJ;MAAK,CAAC;MACrCL,gBAAgB,CAACU,KAAK,IAAI;QACxBA,KAAK,CAACC,aAAa,GAAG,IAAI;MAC5B,CAAC,CAAC;IACJ;EAAE,CACH,CACF,EACD,CAACX,gBAAgB,CACnB,CAAC;EAED,oBACE,IAAAb,WAAA,CAAAK,GAAA,EAACX,YAAA,CAAA+B,QAAQ;IACPC,QAAQ;IACRC,IAAI,EAAEf,WAAW,CAACgB,UAAU,CAAC,CAAE;IAC/BZ,UAAU,EAAEA,UAAW;IACvBa,YAAY,EAAEA,CAACC,CAAC,EAAEC,KAAK,KAAKA,KAAK,CAACC,QAAQ,CAAC,CAAE;IAC7CC,sBAAsB,EAAE7B,SAAU;IAClCG,KAAK,EAAEC,MAAM,CAAC0B;EAAU,CACzB,CAAC;AAEN;AAEA,MAAM1B,MAAM,GAAG2B,uBAAU,CAACC,MAAM,CAAC;EAC/BF,SAAS,EAAE;IACTG,IAAI,EAAE,CAAC;IACPC,iBAAiB,EAAE;EACrB,CAAC;EACD7B,OAAO,EAAE;IACP8B,MAAM,EAAE,CAAC;IACTC,eAAe,EAAEC,eAAM,CAACC;EAC1B;AACF,CAAC,CAAC","ignoreList":[]}
|
@@ -1,63 +1,65 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = NetworkPanel;
|
7
|
+
var _react = require("react");
|
8
|
+
var _reactNative = require("react-native");
|
9
|
+
var _colors = _interopRequireDefault(require("../../../theme/colors"));
|
10
|
+
var _contexts = require("../../../contexts");
|
11
|
+
var _types = require("../../../types");
|
12
|
+
var _NetworkPanelHeader = _interopRequireDefault(require("../headers/NetworkPanelHeader"));
|
13
|
+
var _NetworkPanelItem = _interopRequireDefault(require("../items/NetworkPanelItem"));
|
14
|
+
var _data = require("../../../core/data");
|
15
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
16
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
17
|
+
const Separator = () => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
13
18
|
style: styles.divider
|
14
19
|
});
|
15
|
-
|
20
|
+
function NetworkPanel() {
|
16
21
|
const {
|
17
22
|
networkInterceptor: {
|
18
23
|
networkRequests
|
19
24
|
},
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
const
|
24
|
-
const renderItem = useCallback(({
|
25
|
+
setDebuggerState
|
26
|
+
} = (0, _react.useContext)(_contexts.MainContext);
|
27
|
+
const data = (0, _react.useMemo)(() => Array.from(networkRequests).reverse(), [networkRequests]);
|
28
|
+
const renderItem = (0, _react.useCallback)(({
|
25
29
|
item: [_, item]
|
26
|
-
}) => {
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_NetworkPanelItem.default, {
|
31
|
+
method: item.type === _types.NetworkType.WS ? undefined : item.method,
|
32
|
+
name: item.url,
|
33
|
+
duration: item.duration,
|
34
|
+
status: item.status,
|
35
|
+
onPress: () => {
|
36
|
+
_data.detailsData.value = {
|
30
37
|
network: item
|
31
38
|
};
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
ListHeaderComponent: NetworkPanelHeader,
|
47
|
-
stickyHeaderIndices: [0],
|
48
|
-
ItemSeparatorComponent: Separator,
|
49
|
-
keyExtractor: ([key]) => key,
|
50
|
-
renderItem: renderItem
|
39
|
+
setDebuggerState(draft => {
|
40
|
+
draft.selectedPanel = null;
|
41
|
+
});
|
42
|
+
}
|
43
|
+
}), [setDebuggerState]);
|
44
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
45
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_NetworkPanelHeader.default, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.FlatList, {
|
46
|
+
inverted: true,
|
47
|
+
data: data,
|
48
|
+
renderItem: renderItem,
|
49
|
+
keyExtractor: ([key]) => key,
|
50
|
+
ItemSeparatorComponent: Separator,
|
51
|
+
style: styles.container
|
52
|
+
})]
|
51
53
|
});
|
52
54
|
}
|
53
|
-
const styles = StyleSheet.create({
|
55
|
+
const styles = _reactNative.StyleSheet.create({
|
54
56
|
container: {
|
55
57
|
flex: 1,
|
56
58
|
paddingHorizontal: 8
|
57
59
|
},
|
58
60
|
divider: {
|
59
61
|
height: 1,
|
60
|
-
backgroundColor:
|
62
|
+
backgroundColor: _colors.default.gray
|
61
63
|
}
|
62
64
|
});
|
63
65
|
//# sourceMappingURL=NetworkPanel.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_colors","_interopRequireDefault","_contexts","_types","_NetworkPanelHeader","_NetworkPanelItem","_data","_jsxRuntime","e","__esModule","default","Separator","jsx","View","style","styles","divider","NetworkPanel","networkInterceptor","networkRequests","setDebuggerState","useContext","MainContext","data","useMemo","Array","from","reverse","renderItem","useCallback","item","_","method","type","NetworkType","WS","undefined","name","url","duration","status","onPress","detailsData","value","network","draft","selectedPanel","jsxs","Fragment","children","FlatList","inverted","keyExtractor","key","ItemSeparatorComponent","container","StyleSheet","create","flex","paddingHorizontal","height","backgroundColor","colors","gray"],"sourceRoot":"../../../../../src","sources":["ui/components/panels/NetworkPanel.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,OAAA,GAAAC,sBAAA,CAAAH,OAAA;AACA,IAAAI,SAAA,GAAAJ,OAAA;AACA,IAAAK,MAAA,GAAAL,OAAA;AACA,IAAAM,mBAAA,GAAAH,sBAAA,CAAAH,OAAA;AACA,IAAAO,iBAAA,GAAAJ,sBAAA,CAAAH,OAAA;AACA,IAAAQ,KAAA,GAAAR,OAAA;AAAiD,IAAAS,WAAA,GAAAT,OAAA;AAAA,SAAAG,uBAAAO,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAEjD,MAAMG,SAAS,GAAGA,CAAA,kBAAM,IAAAJ,WAAA,CAAAK,GAAA,EAACb,YAAA,CAAAc,IAAI;EAACC,KAAK,EAAEC,MAAM,CAACC;AAAQ,CAAE,CAAC;AAExC,SAASC,YAAYA,CAAA,EAAG;EACrC,MAAM;IACJC,kBAAkB,EAAE;MAAEC;IAAgB,CAAC;IACvCC;EACF,CAAC,GAAG,IAAAC,iBAAU,EAACC,qBAAW,CAAE;EAE5B,MAAMC,IAAI,GAAG,IAAAC,cAAO,EAAC,MAAMC,KAAK,CAACC,IAAI,CAACP,eAAe,CAAC,CAACQ,OAAO,CAAC,CAAC,EAAE,CAACR,eAAe,CAAC,CAAC;EAEpF,MAAMS,UAAU,GAAG,IAAAC,kBAAW,EAC5B,CAAC;IAAEC,IAAI,EAAE,CAACC,CAAC,EAAED,IAAI;EAAE,CAAC,kBAClB,IAAAvB,WAAA,CAAAK,GAAA,EAACP,iBAAA,CAAAK,OAAgB;IACfsB,MAAM,EAAEF,IAAI,CAACG,IAAI,KAAKC,kBAAW,CAACC,EAAE,GAAGC,SAAS,GAAGN,IAAI,CAACE,MAAO;IAC/DK,IAAI,EAAEP,IAAI,CAACQ,GAAI;IACfC,QAAQ,EAAET,IAAI,CAACS,QAAS;IACxBC,MAAM,EAAEV,IAAI,CAACU,MAAO;IACpBC,OAAO,EAAEA,CAAA,KAAM;MACbC,iBAAW,CAACC,KAAK,GAAG;QAAEC,OAAO,EAAEd;MAAK,CAAC;MACrCV,gBAAgB,CAACyB,KAAK,IAAI;QACxBA,KAAK,CAACC,aAAa,GAAG,IAAI;MAC5B,CAAC,CAAC;IACJ;EAAE,CACH,CACF,EACD,CAAC1B,gBAAgB,CACnB,CAAC;EAED,oBACE,IAAAb,WAAA,CAAAwC,IAAA,EAAAxC,WAAA,CAAAyC,QAAA;IAAAC,QAAA,gBACE,IAAA1C,WAAA,CAAAK,GAAA,EAACR,mBAAA,CAAAM,OAAkB,IAAE,CAAC,eACtB,IAAAH,WAAA,CAAAK,GAAA,EAACb,YAAA,CAAAmD,QAAQ;MACPC,QAAQ;MACR5B,IAAI,EAAEA,IAAK;MACXK,UAAU,EAAEA,UAAW;MACvBwB,YAAY,EAAEA,CAAC,CAACC,GAAG,CAAC,KAAKA,GAAI;MAC7BC,sBAAsB,EAAE3C,SAAU;MAClCG,KAAK,EAAEC,MAAM,CAACwC;IAAU,CACzB,CAAC;EAAA,CACF,CAAC;AAEP;AAEA,MAAMxC,MAAM,GAAGyC,uBAAU,CAACC,MAAM,CAAC;EAC/BF,SAAS,EAAE;IACTG,IAAI,EAAE,CAAC;IACPC,iBAAiB,EAAE;EACrB,CAAC;EACD3C,OAAO,EAAE;IACP4C,MAAM,EAAE,CAAC;IACTC,eAAe,EAAEC,eAAM,CAACC;EAC1B;AACF,CAAC,CAAC","ignoreList":[]}
|
@@ -1,23 +1,11 @@
|
|
1
|
-
import {
|
1
|
+
import type { Updater } from 'use-immer';
|
2
2
|
import type { useConsoleInterceptor, useNetworkInterceptor } from '../hooks';
|
3
|
-
import type {
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
debuggerPosition: DebuggerPosition;
|
8
|
-
setDebuggerPosition: SetState<DebuggerPosition>;
|
9
|
-
panelSelected: DebuggerPanel | null;
|
10
|
-
setPanelSelected: SetState<DebuggerPanel | null>;
|
3
|
+
import type { DebuggerState } from '../types';
|
4
|
+
interface MainContextValue {
|
5
|
+
debuggerState: DebuggerState;
|
6
|
+
setDebuggerState: Updater<DebuggerState>;
|
11
7
|
networkInterceptor: ReturnType<typeof useNetworkInterceptor>;
|
12
8
|
logInterceptor: ReturnType<typeof useConsoleInterceptor>;
|
13
|
-
detailsData: MutableRefObject<{
|
14
|
-
[DebuggerPanel.Console]: LogMessage;
|
15
|
-
} | {
|
16
|
-
[DebuggerPanel.Network]: HttpRequest | WebSocketRequest;
|
17
|
-
} | null>;
|
18
|
-
screenWidth: number;
|
19
|
-
screenHeight: number;
|
20
|
-
verticalSafeMargin: number;
|
21
9
|
}
|
22
10
|
declare const MainContext: import("react").Context<MainContextValue | null>;
|
23
11
|
export default MainContext;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"MainContext.d.ts","sourceRoot":"","sources":["../../../../../src/contexts/MainContext.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"MainContext.d.ts","sourceRoot":"","sources":["../../../../../src/contexts/MainContext.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,KAAK,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAC7E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE9C,UAAU,gBAAgB;IACxB,aAAa,EAAE,aAAa,CAAC;IAC7B,gBAAgB,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;IACzC,kBAAkB,EAAE,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;IAC7D,cAAc,EAAE,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;CAC1D;AAED,QAAA,MAAM,WAAW,kDAA+C,CAAC;AAEjE,eAAe,WAAW,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../src/core/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,yBAAyB,CAAC"}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import type { DebuggerPanel, LogMessage, HttpRequest, WebSocketRequest } from '../types';
|
2
|
+
declare const detailsData: {
|
3
|
+
value: {
|
4
|
+
[DebuggerPanel.Console]: LogMessage;
|
5
|
+
} | {
|
6
|
+
[DebuggerPanel.Network]: HttpRequest | WebSocketRequest;
|
7
|
+
} | null;
|
8
|
+
};
|
9
|
+
export { detailsData };
|
10
|
+
//# sourceMappingURL=data.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"data.d.ts","sourceRoot":"","sources":["../../../../../src/core/data.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,UAAU,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEzF,QAAA,MAAM,WAAW,EAAE;IACjB,KAAK,EACD;QAAE,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,UAAU,CAAA;KAAE,GACvC;QAAE,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,WAAW,GAAG,gBAAgB,CAAA;KAAE,GAC3D,IAAI,CAAC;CAGV,CAAC;AAEF,OAAO,EAAE,WAAW,EAAE,CAAC"}
|
@@ -1,10 +1,19 @@
|
|
1
|
-
import type { HttpRequest } from '
|
1
|
+
import type { HttpRequest } from '../types';
|
2
|
+
export declare const getVerticalSafeMargin: (screenHeight: number) => number;
|
2
3
|
export declare const limitChar: (value: any, limit?: number) => string;
|
3
4
|
export declare const getHttpInterceptorId: () => string;
|
5
|
+
export declare const clamp: (value: number, min: number, max: number) => number;
|
4
6
|
export declare const keyValueToString: (key: string, value: any) => string;
|
5
7
|
export declare const formatRequestMethod: (method?: string) => string;
|
6
8
|
export declare const formatRequestDuration: (duration?: number) => string;
|
7
9
|
export declare const formatRequestStatusCode: (statusCode?: number) => string;
|
8
10
|
export declare const formatLogMessage: (type: string, values: any[]) => string;
|
9
11
|
export declare const convertToCurl: (method: HttpRequest["method"], url: HttpRequest["url"], headers: HttpRequest["requestHeaders"], body: HttpRequest["body"]) => string;
|
12
|
+
export declare function frozen(_target: Object): void;
|
13
|
+
export declare function singleton<T extends {
|
14
|
+
new (...args: any[]): {};
|
15
|
+
}>(constructor: T): {
|
16
|
+
new (...args: any[]): {};
|
17
|
+
"__#1@#instance": {};
|
18
|
+
} & T;
|
10
19
|
//# sourceMappingURL=utils.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/core/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAE5C,eAAO,MAAM,qBAAqB,iBAAkB,MAAM,WAAqB,CAAC;AAEhF,eAAO,MAAM,SAAS,UAAW,GAAG,2BAMnC,CAAC;AAEF,eAAO,MAAM,oBAAoB,cAIhC,CAAC;AAEF,eAAO,MAAM,KAAK,UAAW,MAAM,OAAO,MAAM,OAAO,MAAM,WACxB,CAAC;AAEtC,eAAO,MAAM,gBAAgB,QAAS,MAAM,SAAS,GAAG,KAAG,MAC1B,CAAC;AAElC,eAAO,MAAM,mBAAmB,YAAa,MAAM,WAAoB,CAAC;AAExE,eAAO,MAAM,qBAAqB,cAAe,MAAM,WACf,CAAC;AAEzC,eAAO,MAAM,uBAAuB,gBAAiB,MAAM,WAAiC,CAAC;AAE7F,eAAO,MAAM,gBAAgB,SAAU,MAAM,UAAU,GAAG,EAAE,WAQ3D,CAAC;AAEF,eAAO,MAAM,aAAa,WAChB,WAAW,CAAC,QAAQ,CAAC,OACxB,WAAW,CAAC,KAAK,CAAC,WACd,WAAW,CAAC,gBAAgB,CAAC,QAChC,WAAW,CAAC,MAAM,CAAC,WAgB1B,CAAC;AAEF,wBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,QAIrC;AAED,wBAAgB,SAAS,CAAC,CAAC,SAAS;IAAE,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAA;CAAE,EAAE,WAAW,EAAE,CAAC;kBAIvD,GAAG,EAAE;;MAS7B"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"useConsoleInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/useConsoleInterceptor.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE3C,UAAU,wBAAwB;IAChC,WAAW,EAAE,OAAO,CAAC;CACtB;
|
1
|
+
{"version":3,"file":"useConsoleInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/useConsoleInterceptor.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE3C,UAAU,wBAAwB;IAChC,WAAW,EAAE,OAAO,CAAC;CACtB;AAID,MAAM,CAAC,OAAO,UAAU,qBAAqB,CAAC,EAAE,WAAW,EAAE,EAAE,wBAAwB;;;;;;EA+CtF"}
|