@parca/profile 0.19.139 → 0.19.142
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/CHANGELOG.md +8 -0
- package/dist/GraphTooltipArrow/Content.js +224 -30
- package/dist/GraphTooltipArrow/DockedGraphTooltip/index.js +192 -33
- package/dist/GraphTooltipArrow/ExpandOnHoverValue.js +53 -3
- package/dist/GraphTooltipArrow/index.d.ts.map +1 -1
- package/dist/GraphTooltipArrow/index.js +86 -56
- package/dist/GraphTooltipArrow/useGraphTooltip/index.js +37 -37
- package/dist/GraphTooltipArrow/useGraphTooltipMetaInfo/index.js +103 -73
- package/dist/MatchersInput/SuggestionItem.js +91 -12
- package/dist/MatchersInput/SuggestionsList.d.ts +2 -1
- package/dist/MatchersInput/SuggestionsList.d.ts.map +1 -1
- package/dist/MatchersInput/SuggestionsList.js +371 -157
- package/dist/MatchersInput/SuggestionsList.test.d.ts +2 -0
- package/dist/MatchersInput/SuggestionsList.test.d.ts.map +1 -0
- package/dist/MatchersInput/index.js +308 -115
- package/dist/MetricsCircle/index.js +39 -3
- package/dist/MetricsGraph/MetricsContextMenu/index.js +119 -19
- package/dist/MetricsGraph/MetricsInfoPanel/index.js +81 -20
- package/dist/MetricsGraph/MetricsTooltip/index.d.ts.map +1 -1
- package/dist/MetricsGraph/MetricsTooltip/index.js +107 -74
- package/dist/MetricsGraph/index.js +552 -203
- package/dist/MetricsGraph/useMetricsGraphDimensions.js +46 -25
- package/dist/MetricsGraph/utils/colorMapping.js +24 -17
- package/dist/MetricsSeries/index.js +70 -7
- package/dist/PreSelectedMatchers/index.d.ts.map +1 -1
- package/dist/PreSelectedMatchers/index.js +249 -102
- package/dist/ProfileExplorer/ProfileExplorerCompare.js +240 -49
- package/dist/ProfileExplorer/ProfileExplorerSingle.js +98 -11
- package/dist/ProfileExplorer/index.js +183 -32
- package/dist/ProfileFlameChart/SamplesStrips/SamplesGraph/index.js +333 -148
- package/dist/ProfileFlameChart/SamplesStrips/SamplesStrips.stories.js +69 -35
- package/dist/ProfileFlameChart/SamplesStrips/index.js +645 -134
- package/dist/ProfileFlameChart/SamplesStrips/labelSetUtils.js +114 -55
- package/dist/ProfileFlameChart/index.js +266 -134
- package/dist/ProfileFlameGraph/FlameGraphArrow/ContextMenu.js +287 -88
- package/dist/ProfileFlameGraph/FlameGraphArrow/ContextMenuWrapper.js +56 -20
- package/dist/ProfileFlameGraph/FlameGraphArrow/FlameGraphNodes.js +211 -140
- package/dist/ProfileFlameGraph/FlameGraphArrow/MemoizedTooltip.js +133 -38
- package/dist/ProfileFlameGraph/FlameGraphArrow/MiniMap.js +261 -216
- package/dist/ProfileFlameGraph/FlameGraphArrow/TextWithEllipsis.d.ts.map +1 -1
- package/dist/ProfileFlameGraph/FlameGraphArrow/TextWithEllipsis.js +71 -45
- package/dist/ProfileFlameGraph/FlameGraphArrow/TooltipContext.d.ts.map +1 -1
- package/dist/ProfileFlameGraph/FlameGraphArrow/TooltipContext.js +58 -28
- package/dist/ProfileFlameGraph/FlameGraphArrow/ZoomControls.d.ts.map +1 -1
- package/dist/ProfileFlameGraph/FlameGraphArrow/ZoomControls.js +59 -8
- package/dist/ProfileFlameGraph/FlameGraphArrow/index.js +396 -179
- package/dist/ProfileFlameGraph/FlameGraphArrow/useBatchedRendering.d.ts.map +1 -1
- package/dist/ProfileFlameGraph/FlameGraphArrow/useBatchedRendering.js +68 -50
- package/dist/ProfileFlameGraph/FlameGraphArrow/useMappingList.js +62 -38
- package/dist/ProfileFlameGraph/FlameGraphArrow/useNodeColor.js +14 -6
- package/dist/ProfileFlameGraph/FlameGraphArrow/useScrollViewport.js +124 -82
- package/dist/ProfileFlameGraph/FlameGraphArrow/useVisibleNodes.js +160 -98
- package/dist/ProfileFlameGraph/FlameGraphArrow/useZoom.js +232 -112
- package/dist/ProfileFlameGraph/FlameGraphArrow/utils.js +137 -114
- package/dist/ProfileFlameGraph/benchmarks/benchdata/populateData.js +85 -0
- package/dist/ProfileFlameGraph/index.js +324 -148
- package/dist/ProfileMetricsGraph/hooks/useQueryRange.js +140 -32
- package/dist/ProfileMetricsGraph/index.js +518 -259
- package/dist/ProfileSelector/CompareButton.js +132 -12
- package/dist/ProfileSelector/MetricsGraphSection.js +234 -67
- package/dist/ProfileSelector/index.d.ts.map +1 -1
- package/dist/ProfileSelector/index.js +730 -142
- package/dist/ProfileSelector/useAutoQuerySelector.js +249 -130
- package/dist/ProfileSource.js +230 -163
- package/dist/ProfileTypeSelector/index.js +214 -125
- package/dist/ProfileView/components/ActionButtons/GroupByDropdown.js +50 -4
- package/dist/ProfileView/components/ActionButtons/SortByDropdown.js +139 -33
- package/dist/ProfileView/components/ColorStackLegend.js +184 -55
- package/dist/ProfileView/components/DashboardItems/index.js +87 -28
- package/dist/ProfileView/components/DashboardLayout/index.js +108 -16
- package/dist/ProfileView/components/DiffLegend.js +172 -29
- package/dist/ProfileView/components/GroupByLabelsDropdown/index.js +199 -55
- package/dist/ProfileView/components/InvertCallStack/index.js +99 -10
- package/dist/ProfileView/components/ProfileFilters/filterPresets.js +260 -315
- package/dist/ProfileView/components/ProfileFilters/index.js +518 -215
- package/dist/ProfileView/components/ProfileFilters/useProfileFilters.js +370 -306
- package/dist/ProfileView/components/ProfileFilters/useProfileFiltersUrlState.js +188 -120
- package/dist/ProfileView/components/ProfileHeader/index.js +105 -11
- package/dist/ProfileView/components/ShareButton/ResultBox.js +119 -16
- package/dist/ProfileView/components/ShareButton/index.js +352 -62
- package/dist/ProfileView/components/Toolbars/MultiLevelDropdown.d.ts.map +1 -1
- package/dist/ProfileView/components/Toolbars/MultiLevelDropdown.js +675 -195
- package/dist/ProfileView/components/Toolbars/SwitchMenuItem.js +94 -7
- package/dist/ProfileView/components/Toolbars/TableColumnsDropdown.js +198 -157
- package/dist/ProfileView/components/Toolbars/index.js +441 -21
- package/dist/ProfileView/components/ViewSelector/Dropdown.js +233 -22
- package/dist/ProfileView/components/ViewSelector/index.js +211 -91
- package/dist/ProfileView/components/VisualizationContainer/index.d.ts.map +1 -1
- package/dist/ProfileView/components/VisualizationContainer/index.js +52 -7
- package/dist/ProfileView/components/VisualizationPanel.js +185 -8
- package/dist/ProfileView/context/DashboardContext.js +84 -28
- package/dist/ProfileView/context/ProfileViewContext.js +56 -15
- package/dist/ProfileView/hooks/useAutoSelectDimension.js +71 -41
- package/dist/ProfileView/hooks/useProfileMetadata.js +50 -18
- package/dist/ProfileView/hooks/useResetFlameGraphState.js +31 -10
- package/dist/ProfileView/hooks/useResetStateOnProfileTypeChange.js +72 -29
- package/dist/ProfileView/hooks/useResetStateOnSeriesChange.js +39 -13
- package/dist/ProfileView/hooks/useVisualizationState.js +262 -87
- package/dist/ProfileView/index.js +383 -45
- package/dist/ProfileView/types/visualization.js +1 -13
- package/dist/ProfileView/utils/colorUtils.js +8 -7
- package/dist/ProfileViewWithData.js +332 -237
- package/dist/QueryControls/index.js +418 -47
- package/dist/Sandwich/components/CalleesSection.js +54 -4
- package/dist/Sandwich/components/CallersSection.js +97 -27
- package/dist/Sandwich/components/TableSection.js +77 -4
- package/dist/Sandwich/index.js +125 -12
- package/dist/Sandwich/utils/processRowData.js +48 -39
- package/dist/SelectWithRefresh/index.js +102 -28
- package/dist/SimpleMatchers/Select.js +520 -187
- package/dist/SimpleMatchers/index.js +590 -288
- package/dist/SourceView/Highlighter.js +230 -70
- package/dist/SourceView/LineNo.js +72 -17
- package/dist/SourceView/index.js +177 -101
- package/dist/SourceView/lang-detector/ext-to-lang.json +798 -798
- package/dist/SourceView/lang-detector/index.js +28 -14
- package/dist/SourceView/useSelectedLineRange.js +97 -16
- package/dist/Table/ColorCell.js +42 -1
- package/dist/Table/ColumnsVisibility.js +114 -6
- package/dist/Table/MoreDropdown.js +121 -27
- package/dist/Table/TableContextMenu.js +150 -139
- package/dist/Table/TableContextMenuWrapper.js +59 -14
- package/dist/Table/hooks/useColorManagement.js +58 -16
- package/dist/Table/hooks/useTableConfiguration.d.ts.map +1 -1
- package/dist/Table/hooks/useTableConfiguration.js +331 -168
- package/dist/Table/index.js +222 -126
- package/dist/Table/utils/functions.js +169 -144
- package/dist/Table/utils/topAndBottomExpandedRowModel.js +69 -52
- package/dist/TimelineGuide/index.js +209 -16
- package/dist/TopTable/benchmarks/benchdata/populateData.js +91 -0
- package/dist/TopTable/index.js +340 -122
- package/dist/contexts/LabelsQueryProvider.js +94 -32
- package/dist/contexts/UnifiedLabelsContext.js +114 -49
- package/dist/contexts/utils.js +37 -15
- package/dist/hooks/useCompareModeMeta.js +157 -94
- package/dist/hooks/useLabels.js +295 -52
- package/dist/hooks/useQueryState.js +371 -330
- package/dist/index.js +21 -16
- package/dist/testdata/fg-diff.json +3750 -0
- package/dist/testdata/fg-simple.json +1879 -0
- package/dist/testdata/link_data.json +56 -0
- package/dist/testdata/tabular.json +30 -0
- package/dist/testdata/test_flamegraph.json +26846 -0
- package/dist/testdata/test_graph.json +53 -0
- package/dist/useDelayedLoader.js +32 -18
- package/dist/useGrpcQuery/index.js +71 -11
- package/dist/useHasProfileData.js +90 -12
- package/dist/useQuery.js +205 -64
- package/dist/useSumBy.d.ts.map +1 -1
- package/dist/useSumBy.js +294 -138
- package/dist/utils.js +62 -30
- package/package.json +9 -9
- package/src/GraphTooltipArrow/index.tsx +3 -0
- package/src/MatchersInput/SuggestionsList.test.tsx +70 -0
- package/src/MatchersInput/SuggestionsList.tsx +11 -10
- package/src/MatchersInput/index.tsx +1 -1
- package/src/MetricsGraph/MetricsTooltip/index.tsx +22 -34
- package/src/PreSelectedMatchers/index.tsx +3 -0
- package/src/ProfileFlameGraph/FlameGraphArrow/TextWithEllipsis.tsx +3 -0
- package/src/ProfileFlameGraph/FlameGraphArrow/TooltipContext.tsx +3 -0
- package/src/ProfileFlameGraph/FlameGraphArrow/ZoomControls.tsx +3 -0
- package/src/ProfileFlameGraph/FlameGraphArrow/useBatchedRendering.ts +3 -0
- package/src/ProfileSelector/index.tsx +30 -7
- package/src/ProfileView/components/Toolbars/MultiLevelDropdown.tsx +3 -0
- package/src/ProfileView/components/VisualizationContainer/index.tsx +3 -0
- package/src/Table/hooks/useTableConfiguration.tsx +7 -13
- package/src/useDelayedLoader.ts +10 -10
- package/src/useSumBy.ts +12 -18
- package/dist/ProfileView/components/ProfileFilters/useProfileFiltersUrlState.test.js +0 -541
- package/dist/hooks/useQueryState.test.js +0 -984
|
@@ -1,4 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
3
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
5
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
6
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
7
|
+
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
|
|
8
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
9
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
10
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
11
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
12
|
+
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
|
|
13
|
+
import { c as _c } from "react-compiler-runtime";
|
|
2
14
|
// Copyright 2022 The Parca Authors
|
|
3
15
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
16
|
// you may not use this file except in compliance with the License.
|
|
@@ -11,6 +23,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
11
23
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
24
|
// See the License for the specific language governing permissions and
|
|
13
25
|
// limitations under the License.
|
|
26
|
+
|
|
14
27
|
import { useCallback, useEffect, useMemo, useState } from 'react';
|
|
15
28
|
import { useURLStateBatch } from '@parca/components';
|
|
16
29
|
import { Query } from '@parca/parser';
|
|
@@ -19,54 +32,232 @@ import { ProfileDiffSource, ProfileViewWithData } from '..';
|
|
|
19
32
|
import ProfileSelector from '../ProfileSelector';
|
|
20
33
|
import { useCompareModeMeta } from '../hooks/useCompareModeMeta';
|
|
21
34
|
import { useQueryState } from '../hooks/useQueryState';
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
35
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
36
|
+
var ProfileExplorerCompare = function ProfileExplorerCompare(t0) {
|
|
37
|
+
var $ = _c(45);
|
|
38
|
+
var queryClient = t0.queryClient,
|
|
39
|
+
navigateTo = t0.navigateTo;
|
|
40
|
+
var _useState = useState(true),
|
|
41
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
42
|
+
showMetricsGraph = _useState2[0],
|
|
43
|
+
setShowMetricsGraph = _useState2[1];
|
|
44
|
+
var batchUpdates = useURLStateBatch();
|
|
45
|
+
var _useCompareModeMeta = useCompareModeMeta(),
|
|
46
|
+
closeCompareMode = _useCompareModeMeta.closeCompareMode,
|
|
47
|
+
isCompareMode = _useCompareModeMeta.isCompareMode,
|
|
48
|
+
isCompareAbsolute = _useCompareModeMeta.isCompareAbsolute;
|
|
49
|
+
var t1;
|
|
50
|
+
if ($[0] === Symbol["for"]("react.memo_cache_sentinel")) {
|
|
51
|
+
t1 = {
|
|
52
|
+
suffix: "_a",
|
|
53
|
+
comparing: true
|
|
54
|
+
};
|
|
55
|
+
$[0] = t1;
|
|
56
|
+
} else {
|
|
57
|
+
t1 = $[0];
|
|
58
|
+
}
|
|
59
|
+
var _useQueryState = useQueryState(t1),
|
|
60
|
+
profileSourceA = _useQueryState.profileSource,
|
|
61
|
+
querySelectionA = _useQueryState.querySelection;
|
|
62
|
+
var t2;
|
|
63
|
+
if ($[1] === Symbol["for"]("react.memo_cache_sentinel")) {
|
|
64
|
+
t2 = {
|
|
65
|
+
suffix: "_b",
|
|
66
|
+
comparing: true
|
|
67
|
+
};
|
|
68
|
+
$[1] = t2;
|
|
69
|
+
} else {
|
|
70
|
+
t2 = $[1];
|
|
71
|
+
}
|
|
72
|
+
var _useQueryState2 = useQueryState(t2),
|
|
73
|
+
profileSourceB = _useQueryState2.profileSource,
|
|
74
|
+
querySelectionB = _useQueryState2.querySelection,
|
|
75
|
+
commitDraftB = _useQueryState2.commitDraft,
|
|
76
|
+
setDraftExpressionB = _useQueryState2.setDraftExpression,
|
|
77
|
+
setDraftTimeRangeB = _useQueryState2.setDraftTimeRange;
|
|
78
|
+
var t3;
|
|
79
|
+
if ($[2] !== querySelectionA.expression) {
|
|
80
|
+
t3 = querySelectionA.expression !== "" ? Query.parse(querySelectionA.expression).profileName() : "";
|
|
81
|
+
$[2] = querySelectionA.expression;
|
|
82
|
+
$[3] = t3;
|
|
83
|
+
} else {
|
|
84
|
+
t3 = $[3];
|
|
85
|
+
}
|
|
86
|
+
var enforcedProfileNameA = t3;
|
|
87
|
+
var t4;
|
|
88
|
+
var t5;
|
|
89
|
+
if ($[4] !== batchUpdates || $[5] !== commitDraftB || $[6] !== isCompareMode || $[7] !== querySelectionA.expression || $[8] !== querySelectionA.from || $[9] !== querySelectionA.timeSelection || $[10] !== querySelectionA.to || $[11] !== querySelectionB.expression || $[12] !== setDraftExpressionB || $[13] !== setDraftTimeRangeB) {
|
|
90
|
+
t4 = function t4() {
|
|
91
|
+
if (!isCompareMode) {
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
if (querySelectionB.expression === "" && querySelectionA.expression !== "") {
|
|
95
|
+
batchUpdates(function () {
|
|
96
|
+
setDraftExpressionB(querySelectionA.expression);
|
|
97
|
+
setDraftTimeRangeB(querySelectionA.from, querySelectionA.to, querySelectionA.timeSelection);
|
|
98
|
+
commitDraftB();
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
};
|
|
102
|
+
t5 = [isCompareMode, querySelectionA.expression, querySelectionA.from, querySelectionA.to, querySelectionA.timeSelection, querySelectionB.expression, setDraftExpressionB, setDraftTimeRangeB, commitDraftB, batchUpdates];
|
|
103
|
+
$[4] = batchUpdates;
|
|
104
|
+
$[5] = commitDraftB;
|
|
105
|
+
$[6] = isCompareMode;
|
|
106
|
+
$[7] = querySelectionA.expression;
|
|
107
|
+
$[8] = querySelectionA.from;
|
|
108
|
+
$[9] = querySelectionA.timeSelection;
|
|
109
|
+
$[10] = querySelectionA.to;
|
|
110
|
+
$[11] = querySelectionB.expression;
|
|
111
|
+
$[12] = setDraftExpressionB;
|
|
112
|
+
$[13] = setDraftTimeRangeB;
|
|
113
|
+
$[14] = t4;
|
|
114
|
+
$[15] = t5;
|
|
115
|
+
} else {
|
|
116
|
+
t4 = $[14];
|
|
117
|
+
t5 = $[15];
|
|
118
|
+
}
|
|
119
|
+
useEffect(t4, t5);
|
|
120
|
+
var t6;
|
|
121
|
+
if ($[16] !== closeCompareMode) {
|
|
122
|
+
t6 = function t6() {
|
|
123
|
+
closeCompareMode("A");
|
|
124
|
+
};
|
|
125
|
+
$[16] = closeCompareMode;
|
|
126
|
+
$[17] = t6;
|
|
127
|
+
} else {
|
|
128
|
+
t6 = $[17];
|
|
129
|
+
}
|
|
130
|
+
var closeProfileA = t6;
|
|
131
|
+
var t7;
|
|
132
|
+
if ($[18] !== closeCompareMode) {
|
|
133
|
+
t7 = function t7() {
|
|
134
|
+
closeCompareMode("B");
|
|
135
|
+
};
|
|
136
|
+
$[18] = closeCompareMode;
|
|
137
|
+
$[19] = t7;
|
|
138
|
+
} else {
|
|
139
|
+
t7 = $[19];
|
|
140
|
+
}
|
|
141
|
+
var closeProfileB = t7;
|
|
142
|
+
var t8;
|
|
143
|
+
if ($[20] === Symbol["for"]("react.memo_cache_sentinel")) {
|
|
144
|
+
t8 = testId(TEST_IDS.COMPARE_CONTAINER);
|
|
145
|
+
$[20] = t8;
|
|
146
|
+
} else {
|
|
147
|
+
t8 = $[20];
|
|
148
|
+
}
|
|
149
|
+
var t9;
|
|
150
|
+
if ($[21] === Symbol["for"]("react.memo_cache_sentinel")) {
|
|
151
|
+
t9 = testId(TEST_IDS.COMPARE_SIDE_A);
|
|
152
|
+
$[21] = t9;
|
|
153
|
+
} else {
|
|
154
|
+
t9 = $[21];
|
|
155
|
+
}
|
|
156
|
+
var t10;
|
|
157
|
+
if ($[22] !== closeProfileA || $[23] !== navigateTo || $[24] !== queryClient || $[25] !== showMetricsGraph) {
|
|
158
|
+
t10 = /*#__PURE__*/_jsx("div", _objectSpread(_objectSpread({
|
|
159
|
+
className: "flex-column flex-1 p-2 shadow-md rounded-md"
|
|
160
|
+
}, t9), {}, {
|
|
161
|
+
children: /*#__PURE__*/_jsx(ProfileSelector, {
|
|
162
|
+
queryClient: queryClient,
|
|
163
|
+
closeProfile: closeProfileA,
|
|
164
|
+
enforcedProfileName: "",
|
|
29
165
|
comparing: true,
|
|
166
|
+
navigateTo: navigateTo,
|
|
167
|
+
suffix: "_a",
|
|
168
|
+
showMetricsGraph: showMetricsGraph,
|
|
169
|
+
setDisplayHideMetricsGraphButton: setShowMetricsGraph
|
|
170
|
+
})
|
|
171
|
+
}));
|
|
172
|
+
$[22] = closeProfileA;
|
|
173
|
+
$[23] = navigateTo;
|
|
174
|
+
$[24] = queryClient;
|
|
175
|
+
$[25] = showMetricsGraph;
|
|
176
|
+
$[26] = t10;
|
|
177
|
+
} else {
|
|
178
|
+
t10 = $[26];
|
|
179
|
+
}
|
|
180
|
+
var t11;
|
|
181
|
+
if ($[27] === Symbol["for"]("react.memo_cache_sentinel")) {
|
|
182
|
+
t11 = testId(TEST_IDS.COMPARE_SIDE_B);
|
|
183
|
+
$[27] = t11;
|
|
184
|
+
} else {
|
|
185
|
+
t11 = $[27];
|
|
186
|
+
}
|
|
187
|
+
var t12;
|
|
188
|
+
if ($[28] !== closeProfileB || $[29] !== enforcedProfileNameA || $[30] !== navigateTo || $[31] !== queryClient || $[32] !== showMetricsGraph) {
|
|
189
|
+
t12 = /*#__PURE__*/_jsx("div", _objectSpread(_objectSpread({
|
|
190
|
+
className: "flex-column flex-1 p-2 shadow-md rounded-md"
|
|
191
|
+
}, t11), {}, {
|
|
192
|
+
children: /*#__PURE__*/_jsx(ProfileSelector, {
|
|
193
|
+
queryClient: queryClient,
|
|
194
|
+
closeProfile: closeProfileB,
|
|
195
|
+
enforcedProfileName: enforcedProfileNameA,
|
|
196
|
+
comparing: true,
|
|
197
|
+
navigateTo: navigateTo,
|
|
198
|
+
suffix: "_b",
|
|
199
|
+
showMetricsGraph: showMetricsGraph,
|
|
200
|
+
setDisplayHideMetricsGraphButton: setShowMetricsGraph
|
|
201
|
+
})
|
|
202
|
+
}));
|
|
203
|
+
$[28] = closeProfileB;
|
|
204
|
+
$[29] = enforcedProfileNameA;
|
|
205
|
+
$[30] = navigateTo;
|
|
206
|
+
$[31] = queryClient;
|
|
207
|
+
$[32] = showMetricsGraph;
|
|
208
|
+
$[33] = t12;
|
|
209
|
+
} else {
|
|
210
|
+
t12 = $[33];
|
|
211
|
+
}
|
|
212
|
+
var t13;
|
|
213
|
+
if ($[34] !== t10 || $[35] !== t12) {
|
|
214
|
+
t13 = /*#__PURE__*/_jsxs("div", {
|
|
215
|
+
className: "flex justify-between gap-2 relative mb-2",
|
|
216
|
+
children: [t10, t12]
|
|
217
|
+
});
|
|
218
|
+
$[34] = t10;
|
|
219
|
+
$[35] = t12;
|
|
220
|
+
$[36] = t13;
|
|
221
|
+
} else {
|
|
222
|
+
t13 = $[36];
|
|
223
|
+
}
|
|
224
|
+
var t14;
|
|
225
|
+
if ($[37] !== isCompareAbsolute || $[38] !== profileSourceA || $[39] !== profileSourceB || $[40] !== queryClient) {
|
|
226
|
+
t14 = /*#__PURE__*/_jsx("div", {
|
|
227
|
+
className: "grid grid-cols-1",
|
|
228
|
+
children: profileSourceA != null && profileSourceB != null ? /*#__PURE__*/_jsx("div", _objectSpread(_objectSpread({}, testId(TEST_IDS.COMPARE_PROFILE_VIEW)), {}, {
|
|
229
|
+
children: /*#__PURE__*/_jsx(ProfileViewWithData, {
|
|
230
|
+
queryClient: queryClient,
|
|
231
|
+
profileSource: new ProfileDiffSource(profileSourceA, profileSourceB, isCompareAbsolute)
|
|
232
|
+
})
|
|
233
|
+
})) : /*#__PURE__*/_jsx("div", {
|
|
234
|
+
children: /*#__PURE__*/_jsx("div", {
|
|
235
|
+
className: "my-20 text-center",
|
|
236
|
+
children: /*#__PURE__*/_jsx("p", {
|
|
237
|
+
children: "Select a profile on both sides."
|
|
238
|
+
})
|
|
239
|
+
})
|
|
240
|
+
})
|
|
30
241
|
});
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
}, [
|
|
53
|
-
isCompareMode,
|
|
54
|
-
querySelectionA.expression,
|
|
55
|
-
querySelectionA.from,
|
|
56
|
-
querySelectionA.to,
|
|
57
|
-
querySelectionA.timeSelection,
|
|
58
|
-
querySelectionB.expression,
|
|
59
|
-
setDraftExpressionB,
|
|
60
|
-
setDraftTimeRangeB,
|
|
61
|
-
commitDraftB,
|
|
62
|
-
batchUpdates,
|
|
63
|
-
]);
|
|
64
|
-
const closeProfileA = useCallback(() => {
|
|
65
|
-
closeCompareMode('A');
|
|
66
|
-
}, [closeCompareMode]);
|
|
67
|
-
const closeProfileB = useCallback(() => {
|
|
68
|
-
closeCompareMode('B');
|
|
69
|
-
}, [closeCompareMode]);
|
|
70
|
-
return (_jsxs("div", { ...testId(TEST_IDS.COMPARE_CONTAINER), children: [_jsxs("div", { className: "flex justify-between gap-2 relative mb-2", children: [_jsx("div", { className: "flex-column flex-1 p-2 shadow-md rounded-md", ...testId(TEST_IDS.COMPARE_SIDE_A), children: _jsx(ProfileSelector, { queryClient: queryClient, closeProfile: closeProfileA, enforcedProfileName: '', comparing: true, navigateTo: navigateTo, suffix: "_a", showMetricsGraph: showMetricsGraph, setDisplayHideMetricsGraphButton: setShowMetricsGraph }) }), _jsx("div", { className: "flex-column flex-1 p-2 shadow-md rounded-md", ...testId(TEST_IDS.COMPARE_SIDE_B), children: _jsx(ProfileSelector, { queryClient: queryClient, closeProfile: closeProfileB, enforcedProfileName: enforcedProfileNameA, comparing: true, navigateTo: navigateTo, suffix: "_b", showMetricsGraph: showMetricsGraph, setDisplayHideMetricsGraphButton: setShowMetricsGraph }) })] }), _jsx("div", { className: "grid grid-cols-1", children: profileSourceA != null && profileSourceB != null ? (_jsx("div", { ...testId(TEST_IDS.COMPARE_PROFILE_VIEW), children: _jsx(ProfileViewWithData, { queryClient: queryClient, profileSource: new ProfileDiffSource(profileSourceA, profileSourceB, isCompareAbsolute) }) })) : (_jsx("div", { children: _jsx("div", { className: "my-20 text-center", children: _jsx("p", { children: "Select a profile on both sides." }) }) })) })] }));
|
|
242
|
+
$[37] = isCompareAbsolute;
|
|
243
|
+
$[38] = profileSourceA;
|
|
244
|
+
$[39] = profileSourceB;
|
|
245
|
+
$[40] = queryClient;
|
|
246
|
+
$[41] = t14;
|
|
247
|
+
} else {
|
|
248
|
+
t14 = $[41];
|
|
249
|
+
}
|
|
250
|
+
var t15;
|
|
251
|
+
if ($[42] !== t13 || $[43] !== t14) {
|
|
252
|
+
t15 = /*#__PURE__*/_jsxs("div", _objectSpread(_objectSpread({}, t8), {}, {
|
|
253
|
+
children: [t13, t14]
|
|
254
|
+
}));
|
|
255
|
+
$[42] = t13;
|
|
256
|
+
$[43] = t14;
|
|
257
|
+
$[44] = t15;
|
|
258
|
+
} else {
|
|
259
|
+
t15 = $[44];
|
|
260
|
+
}
|
|
261
|
+
return t15;
|
|
71
262
|
};
|
|
72
|
-
export default ProfileExplorerCompare;
|
|
263
|
+
export default ProfileExplorerCompare;
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
|
|
2
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
3
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
4
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
5
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
6
|
+
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
|
|
7
|
+
import { c as _c } from "react-compiler-runtime";
|
|
2
8
|
// Copyright 2022 The Parca Authors
|
|
3
9
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
10
|
// you may not use this file except in compliance with the License.
|
|
@@ -11,19 +17,100 @@ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-run
|
|
|
11
17
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
18
|
// See the License for the specific language governing permissions and
|
|
13
19
|
// limitations under the License.
|
|
20
|
+
|
|
14
21
|
import { useCallback, useState } from 'react';
|
|
15
22
|
import { ProfileViewWithData } from '..';
|
|
16
23
|
import ProfileSelector from '../ProfileSelector';
|
|
17
24
|
import { useQueryState } from '../hooks/useQueryState';
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
26
|
+
var ProfileExplorerSingle = function ProfileExplorerSingle(t0) {
|
|
27
|
+
var $ = _c(15);
|
|
28
|
+
var queryClient = t0.queryClient,
|
|
29
|
+
navigateTo = t0.navigateTo;
|
|
30
|
+
var _useState = useState(true),
|
|
31
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
32
|
+
showMetricsGraph = _useState2[0],
|
|
33
|
+
setShowMetricsGraph = _useState2[1];
|
|
34
|
+
var t1;
|
|
35
|
+
if ($[0] === Symbol["for"]("react.memo_cache_sentinel")) {
|
|
36
|
+
t1 = {
|
|
37
|
+
suffix: "_a"
|
|
38
|
+
};
|
|
39
|
+
$[0] = t1;
|
|
40
|
+
} else {
|
|
41
|
+
t1 = $[0];
|
|
42
|
+
}
|
|
43
|
+
var _useQueryState = useQueryState(t1),
|
|
44
|
+
profileSource = _useQueryState.profileSource,
|
|
45
|
+
setDraftTimeRange = _useQueryState.setDraftTimeRange,
|
|
46
|
+
commitDraft = _useQueryState.commitDraft;
|
|
47
|
+
var t2;
|
|
48
|
+
if ($[1] !== commitDraft || $[2] !== setDraftTimeRange) {
|
|
49
|
+
t2 = function t2() {
|
|
50
|
+
var now = Date.now();
|
|
51
|
+
var from = now - 900000;
|
|
52
|
+
setDraftTimeRange(from, now, "relative:minute|15");
|
|
53
|
+
commitDraft({
|
|
54
|
+
from: from,
|
|
55
|
+
to: now,
|
|
56
|
+
timeSelection: "relative:minute|15"
|
|
57
|
+
});
|
|
58
|
+
};
|
|
59
|
+
$[1] = commitDraft;
|
|
60
|
+
$[2] = setDraftTimeRange;
|
|
61
|
+
$[3] = t2;
|
|
62
|
+
} else {
|
|
63
|
+
t2 = $[3];
|
|
64
|
+
}
|
|
65
|
+
var handleSwitchToFifteenMinutes = t2;
|
|
66
|
+
var t3;
|
|
67
|
+
if ($[4] !== navigateTo || $[5] !== queryClient || $[6] !== showMetricsGraph) {
|
|
68
|
+
t3 = /*#__PURE__*/_jsx("div", {
|
|
69
|
+
className: "relative",
|
|
70
|
+
children: /*#__PURE__*/_jsx(ProfileSelector, {
|
|
71
|
+
queryClient: queryClient,
|
|
72
|
+
closeProfile: _temp,
|
|
73
|
+
comparing: false,
|
|
74
|
+
enforcedProfileName: "",
|
|
75
|
+
navigateTo: navigateTo,
|
|
76
|
+
suffix: "_a",
|
|
77
|
+
showMetricsGraph: showMetricsGraph,
|
|
78
|
+
setDisplayHideMetricsGraphButton: setShowMetricsGraph
|
|
79
|
+
})
|
|
80
|
+
});
|
|
81
|
+
$[4] = navigateTo;
|
|
82
|
+
$[5] = queryClient;
|
|
83
|
+
$[6] = showMetricsGraph;
|
|
84
|
+
$[7] = t3;
|
|
85
|
+
} else {
|
|
86
|
+
t3 = $[7];
|
|
87
|
+
}
|
|
88
|
+
var t4;
|
|
89
|
+
if ($[8] !== handleSwitchToFifteenMinutes || $[9] !== profileSource || $[10] !== queryClient) {
|
|
90
|
+
t4 = profileSource != null && /*#__PURE__*/_jsx(ProfileViewWithData, {
|
|
91
|
+
queryClient: queryClient,
|
|
92
|
+
profileSource: profileSource,
|
|
93
|
+
onSwitchToFifteenMinutes: handleSwitchToFifteenMinutes
|
|
94
|
+
});
|
|
95
|
+
$[8] = handleSwitchToFifteenMinutes;
|
|
96
|
+
$[9] = profileSource;
|
|
97
|
+
$[10] = queryClient;
|
|
98
|
+
$[11] = t4;
|
|
99
|
+
} else {
|
|
100
|
+
t4 = $[11];
|
|
101
|
+
}
|
|
102
|
+
var t5;
|
|
103
|
+
if ($[12] !== t3 || $[13] !== t4) {
|
|
104
|
+
t5 = /*#__PURE__*/_jsxs(_Fragment, {
|
|
105
|
+
children: [t3, t4]
|
|
106
|
+
});
|
|
107
|
+
$[12] = t3;
|
|
108
|
+
$[13] = t4;
|
|
109
|
+
$[14] = t5;
|
|
110
|
+
} else {
|
|
111
|
+
t5 = $[14];
|
|
112
|
+
}
|
|
113
|
+
return t5;
|
|
28
114
|
};
|
|
29
115
|
export default ProfileExplorerSingle;
|
|
116
|
+
function _temp() {}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { c as _c } from "react-compiler-runtime";
|
|
2
2
|
// Copyright 2022 The Parca Authors
|
|
3
3
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
// you may not use this file except in compliance with the License.
|
|
@@ -11,6 +11,7 @@ import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
|
|
|
11
11
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
12
|
// See the License for the specific language governing permissions and
|
|
13
13
|
// limitations under the License.
|
|
14
|
+
|
|
14
15
|
import { useEffect, useMemo } from 'react';
|
|
15
16
|
import { Provider } from 'react-redux';
|
|
16
17
|
import { KeyDownProvider, useParcaContext } from '@parca/components';
|
|
@@ -20,41 +21,191 @@ import { useCompareModeMeta } from '../hooks/useCompareModeMeta';
|
|
|
20
21
|
import { useHasProfileData } from '../useHasProfileData';
|
|
21
22
|
import ProfileExplorerCompare from './ProfileExplorerCompare';
|
|
22
23
|
import ProfileExplorerSingle from './ProfileExplorerSingle';
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
|
|
25
|
+
var ErrorContent = function ErrorContent(t0) {
|
|
26
|
+
var $ = _c(2);
|
|
27
|
+
var errorMessage = t0.errorMessage;
|
|
28
|
+
var t1;
|
|
29
|
+
if ($[0] !== errorMessage) {
|
|
30
|
+
t1 = /*#__PURE__*/_jsx("div", {
|
|
31
|
+
className: "relative rounded border border-red-400 bg-red-100 px-4 py-3 text-red-700",
|
|
32
|
+
role: "alert",
|
|
33
|
+
children: /*#__PURE__*/_jsx("span", {
|
|
34
|
+
className: "block sm:inline",
|
|
35
|
+
children: errorMessage
|
|
36
|
+
})
|
|
37
|
+
});
|
|
38
|
+
$[0] = errorMessage;
|
|
39
|
+
$[1] = t1;
|
|
40
|
+
} else {
|
|
41
|
+
t1 = $[1];
|
|
42
|
+
}
|
|
43
|
+
return t1;
|
|
25
44
|
};
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
45
|
+
var ProfileExplorerApp = function ProfileExplorerApp(t0) {
|
|
46
|
+
var $ = _c(20);
|
|
47
|
+
var queryClient = t0.queryClient,
|
|
48
|
+
navigateTo = t0.navigateTo;
|
|
49
|
+
var _useHasProfileData = useHasProfileData(queryClient),
|
|
50
|
+
hasProfileDataLoading = _useHasProfileData.loading,
|
|
51
|
+
hasProfileData = _useHasProfileData.data,
|
|
52
|
+
hasProfileDataError = _useHasProfileData.error;
|
|
53
|
+
var _useParcaContext = useParcaContext(),
|
|
54
|
+
loader = _useParcaContext.loader,
|
|
55
|
+
noDataPrompt = _useParcaContext.noDataPrompt,
|
|
56
|
+
onError = _useParcaContext.onError,
|
|
57
|
+
authenticationErrorMessage = _useParcaContext.authenticationErrorMessage;
|
|
58
|
+
var _useCompareModeMeta = useCompareModeMeta(),
|
|
59
|
+
isCompareMode = _useCompareModeMeta.isCompareMode;
|
|
60
|
+
var t1;
|
|
61
|
+
var t2;
|
|
62
|
+
if ($[0] !== hasProfileDataError || $[1] !== onError) {
|
|
63
|
+
t1 = function t1() {
|
|
64
|
+
if (hasProfileDataError !== undefined && hasProfileDataError !== null) {
|
|
65
|
+
onError === null || onError === void 0 || onError(hasProfileDataError);
|
|
66
|
+
}
|
|
67
|
+
};
|
|
68
|
+
t2 = [hasProfileDataError, onError];
|
|
69
|
+
$[0] = hasProfileDataError;
|
|
70
|
+
$[1] = onError;
|
|
71
|
+
$[2] = t1;
|
|
72
|
+
$[3] = t2;
|
|
73
|
+
} else {
|
|
74
|
+
t1 = $[2];
|
|
75
|
+
t2 = $[3];
|
|
76
|
+
}
|
|
77
|
+
useEffect(t1, t2);
|
|
78
|
+
if (hasProfileDataLoading) {
|
|
79
|
+
var _t;
|
|
80
|
+
if ($[4] !== loader) {
|
|
81
|
+
_t = /*#__PURE__*/_jsx(_Fragment, {
|
|
82
|
+
children: loader
|
|
83
|
+
});
|
|
84
|
+
$[4] = loader;
|
|
85
|
+
$[5] = _t;
|
|
86
|
+
} else {
|
|
87
|
+
_t = $[5];
|
|
88
|
+
}
|
|
89
|
+
return _t;
|
|
90
|
+
}
|
|
91
|
+
if (!hasProfileData) {
|
|
92
|
+
var _t2;
|
|
93
|
+
if ($[6] !== noDataPrompt) {
|
|
94
|
+
_t2 = /*#__PURE__*/_jsx(_Fragment, {
|
|
95
|
+
children: noDataPrompt
|
|
96
|
+
});
|
|
97
|
+
$[6] = noDataPrompt;
|
|
98
|
+
$[7] = _t2;
|
|
99
|
+
} else {
|
|
100
|
+
_t2 = $[7];
|
|
101
|
+
}
|
|
102
|
+
return _t2;
|
|
103
|
+
}
|
|
104
|
+
if (hasProfileDataError !== undefined && hasProfileDataError !== null) {
|
|
105
|
+
if (authenticationErrorMessage !== undefined && hasProfileDataError.code === "UNAUTHENTICATED") {
|
|
106
|
+
var _t3;
|
|
107
|
+
if ($[8] !== authenticationErrorMessage) {
|
|
108
|
+
_t3 = /*#__PURE__*/_jsx(ErrorContent, {
|
|
109
|
+
errorMessage: authenticationErrorMessage
|
|
110
|
+
});
|
|
111
|
+
$[8] = authenticationErrorMessage;
|
|
112
|
+
$[9] = _t3;
|
|
113
|
+
} else {
|
|
114
|
+
_t3 = $[9];
|
|
115
|
+
}
|
|
116
|
+
return _t3;
|
|
37
117
|
}
|
|
38
|
-
|
|
39
|
-
|
|
118
|
+
var _t4;
|
|
119
|
+
if ($[10] !== hasProfileDataError.message) {
|
|
120
|
+
_t4 = capitalizeOnlyFirstLetter(hasProfileDataError.message);
|
|
121
|
+
$[10] = hasProfileDataError.message;
|
|
122
|
+
$[11] = _t4;
|
|
123
|
+
} else {
|
|
124
|
+
_t4 = $[11];
|
|
40
125
|
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
126
|
+
var t4;
|
|
127
|
+
if ($[12] !== _t4) {
|
|
128
|
+
t4 = /*#__PURE__*/_jsx(ErrorContent, {
|
|
129
|
+
errorMessage: _t4
|
|
130
|
+
});
|
|
131
|
+
$[12] = _t4;
|
|
132
|
+
$[13] = t4;
|
|
133
|
+
} else {
|
|
134
|
+
t4 = $[13];
|
|
47
135
|
}
|
|
48
|
-
|
|
49
|
-
|
|
136
|
+
return t4;
|
|
137
|
+
}
|
|
138
|
+
if (isCompareMode) {
|
|
139
|
+
var _t5;
|
|
140
|
+
if ($[14] !== navigateTo || $[15] !== queryClient) {
|
|
141
|
+
_t5 = /*#__PURE__*/_jsx(ProfileExplorerCompare, {
|
|
142
|
+
queryClient: queryClient,
|
|
143
|
+
navigateTo: navigateTo
|
|
144
|
+
});
|
|
145
|
+
$[14] = navigateTo;
|
|
146
|
+
$[15] = queryClient;
|
|
147
|
+
$[16] = _t5;
|
|
148
|
+
} else {
|
|
149
|
+
_t5 = $[16];
|
|
50
150
|
}
|
|
51
|
-
return
|
|
151
|
+
return _t5;
|
|
152
|
+
}
|
|
153
|
+
var t3;
|
|
154
|
+
if ($[17] !== navigateTo || $[18] !== queryClient) {
|
|
155
|
+
t3 = /*#__PURE__*/_jsx(ProfileExplorerSingle, {
|
|
156
|
+
queryClient: queryClient,
|
|
157
|
+
navigateTo: navigateTo
|
|
158
|
+
});
|
|
159
|
+
$[17] = navigateTo;
|
|
160
|
+
$[18] = queryClient;
|
|
161
|
+
$[19] = t3;
|
|
162
|
+
} else {
|
|
163
|
+
t3 = $[19];
|
|
164
|
+
}
|
|
165
|
+
return t3;
|
|
52
166
|
};
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
167
|
+
var ProfileExplorer = function ProfileExplorer(t0) {
|
|
168
|
+
var $ = _c(8);
|
|
169
|
+
var queryClient = t0.queryClient,
|
|
170
|
+
navigateTo = t0.navigateTo;
|
|
171
|
+
var _useParcaContext2 = useParcaContext(),
|
|
172
|
+
additionalFlamegraphColorProfiles = _useParcaContext2.additionalFlamegraphColorProfiles;
|
|
173
|
+
var t1;
|
|
174
|
+
if ($[0] !== additionalFlamegraphColorProfiles) {
|
|
175
|
+
t1 = createStore(additionalFlamegraphColorProfiles);
|
|
176
|
+
$[0] = additionalFlamegraphColorProfiles;
|
|
177
|
+
$[1] = t1;
|
|
178
|
+
} else {
|
|
179
|
+
t1 = $[1];
|
|
180
|
+
}
|
|
181
|
+
var _t6 = t1,
|
|
182
|
+
reduxStore = _t6.store;
|
|
183
|
+
var t2;
|
|
184
|
+
if ($[2] !== navigateTo || $[3] !== queryClient) {
|
|
185
|
+
t2 = /*#__PURE__*/_jsx(KeyDownProvider, {
|
|
186
|
+
children: /*#__PURE__*/_jsx(ProfileExplorerApp, {
|
|
187
|
+
queryClient: queryClient,
|
|
188
|
+
navigateTo: navigateTo
|
|
189
|
+
})
|
|
190
|
+
});
|
|
191
|
+
$[2] = navigateTo;
|
|
192
|
+
$[3] = queryClient;
|
|
193
|
+
$[4] = t2;
|
|
194
|
+
} else {
|
|
195
|
+
t2 = $[4];
|
|
196
|
+
}
|
|
197
|
+
var t3;
|
|
198
|
+
if ($[5] !== reduxStore || $[6] !== t2) {
|
|
199
|
+
t3 = /*#__PURE__*/_jsx(Provider, {
|
|
200
|
+
store: reduxStore,
|
|
201
|
+
children: t2
|
|
202
|
+
});
|
|
203
|
+
$[5] = reduxStore;
|
|
204
|
+
$[6] = t2;
|
|
205
|
+
$[7] = t3;
|
|
206
|
+
} else {
|
|
207
|
+
t3 = $[7];
|
|
208
|
+
}
|
|
209
|
+
return t3;
|
|
59
210
|
};
|
|
60
|
-
export default ProfileExplorer;
|
|
211
|
+
export default ProfileExplorer;
|