diff --git a/packages/mco/components/mco-dashboard/disaster-recovery/dr-dashboard.tsx b/packages/mco/components/mco-dashboard/disaster-recovery/dr-dashboard.tsx
index c19294af3..852bfaf78 100644
--- a/packages/mco/components/mco-dashboard/disaster-recovery/dr-dashboard.tsx
+++ b/packages/mco/components/mco-dashboard/disaster-recovery/dr-dashboard.tsx
@@ -71,7 +71,7 @@ const aggregateAppsMap = (
return acc;
}, {});
-const MonitoringDashboard: React.FC = () => {
+const CSVStatusesProvider: React.FC = ({ children }) => {
const [csvData, csvError, csvLoading] = useCustomPrometheusPoll({
endpoint: 'api/v1/query' as any,
query: STATUS_QUERIES[StorageDashboard.CSV_STATUS_ALL_WHITELISTED],
@@ -79,6 +79,14 @@ const MonitoringDashboard: React.FC = () => {
cluster: HUB_CLUSTER_NAME,
});
+ return (
+
+ {children}
+
+ );
+};
+
+const DRResourcesProvider: React.FC = ({ children }) => {
const [managedClusters, managedClusterLoaded, managedClusterLoadError] =
useK8sWatchResource(
getManagedClusterResourceObj()
@@ -122,17 +130,23 @@ const MonitoringDashboard: React.FC = () => {
loadError,
};
- // ToDo(Sanjal): combime multiple Context together to make it scalable
- // refer: https://javascript.plainenglish.io/how-to-combine-context-providers-for-cleaner-react-code-9ed24f20225e
return (
-
-
-
-
-
+
+ {children}
+
);
};
+// ToDo(Sanjal): combime multiple Context together to make it scalable
+// refer: https://javascript.plainenglish.io/how-to-combine-context-providers-for-cleaner-react-code-9ed24f20225e
+const MonitoringDashboard: React.FC = () => (
+
+
+
+
+
+);
+
const DRDashboard: React.FC = () => {
const isMonitoringEnabled = useFlag(ACM_OBSERVABILITY_FLAG);
diff --git a/packages/odf/components/topology/Topology.tsx b/packages/odf/components/topology/Topology.tsx
index 427500ec9..7b9619e77 100644
--- a/packages/odf/components/topology/Topology.tsx
+++ b/packages/odf/components/topology/Topology.tsx
@@ -18,9 +18,11 @@ import {
createNode,
defaultLayoutFactory,
stylesComponentFactory,
+ TopologyViewLevel,
+} from '@odf/shared/topology';
+import {
TopologyDataContext,
TopologySearchContext,
- TopologyViewLevel,
} from '@odf/shared/topology';
import {
ClusterServiceVersionKind,
@@ -99,6 +101,24 @@ type SideBarProps = {
isExpanded: boolean;
};
+const TopologyDataProvider: React.FC<{ value: any }> = ({
+ children,
+ value,
+}) => (
+
+ {children}
+
+);
+
+const TopologySearchProvider: React.FC<{ value: any }> = ({
+ children,
+ value,
+}) => (
+
+ {children}
+
+);
+
const Sidebar: React.FC = ({ onClose, isExpanded }) => {
const { selectedElement: element } = React.useContext(TopologyDataContext);
const data = element?.getData();
@@ -572,7 +592,7 @@ const Topology: React.FC = () => {
const zones = memoizedNodes.map(getTopologyDomain);
return (
- {
setSelectedElement: setSelectedElement as any,
}}
>
-
@@ -610,8 +630,8 @@ const Topology: React.FC = () => {
-
-
+
+
);
};