-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEvolutionGraph.jsx
More file actions
31 lines (23 loc) · 788 Bytes
/
EvolutionGraph.jsx
File metadata and controls
31 lines (23 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React, { useEffect, useState } from "react";
import Controller from "./Controller";
const EvolutionGraph = (props) => {
const { getController } = props;
const [mounted, setMounted] = useState(false);
const graphController = new Controller(props);
useEffect(() => {
if (mounted) return;
if (getController) {
if (typeof getController === "function") {
getController(graphController);
} else {
console.warn(
`Evolution Graph - Invalid getController prop type. Expected function and received ${typeof getController}.`
);
}
}
graphController.render(".evolution-graph-component");
setMounted(true);
}, []);
return <div className="evolution-graph-component" />;
};
export default EvolutionGraph;