mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 16:54:23 +01:00
fix for bad network requests before component ready
This commit is contained in:
parent
bdf1a32d6a
commit
1aaba521c7
@ -9,28 +9,10 @@ const MetricsTab = (props) => {
|
|||||||
const [metrics1, setMetrics1] = useState(buildMetrics([]));
|
const [metrics1, setMetrics1] = useState(buildMetrics([]));
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
metadata.getShareMetrics(props.share.token)
|
if(props.share.token) {
|
||||||
.then(resp => {
|
|
||||||
setMetrics30(buildMetrics(resp.data));
|
|
||||||
});
|
|
||||||
metadata.getShareMetrics(props.share.token, {duration: "168h"})
|
|
||||||
.then(resp => {
|
|
||||||
setMetrics7(buildMetrics(resp.data));
|
|
||||||
});
|
|
||||||
metadata.getShareMetrics(props.share.token, {duration: "24h"})
|
|
||||||
.then(resp => {
|
|
||||||
setMetrics1(buildMetrics(resp.data));
|
|
||||||
});
|
|
||||||
}, [props.share]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
let mounted = true;
|
|
||||||
let interval = setInterval(() => {
|
|
||||||
metadata.getShareMetrics(props.share.token)
|
metadata.getShareMetrics(props.share.token)
|
||||||
.then(resp => {
|
.then(resp => {
|
||||||
if(mounted) {
|
setMetrics30(buildMetrics(resp.data));
|
||||||
setMetrics30(buildMetrics(resp.data));
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
metadata.getShareMetrics(props.share.token, {duration: "168h"})
|
metadata.getShareMetrics(props.share.token, {duration: "168h"})
|
||||||
.then(resp => {
|
.then(resp => {
|
||||||
@ -40,6 +22,32 @@ const MetricsTab = (props) => {
|
|||||||
.then(resp => {
|
.then(resp => {
|
||||||
setMetrics1(buildMetrics(resp.data));
|
setMetrics1(buildMetrics(resp.data));
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
}, [props.share]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
let mounted = true;
|
||||||
|
let interval = setInterval(() => {
|
||||||
|
if(props.share.token) {
|
||||||
|
metadata.getShareMetrics(props.share.token)
|
||||||
|
.then(resp => {
|
||||||
|
if(mounted) {
|
||||||
|
setMetrics30(buildMetrics(resp.data));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
metadata.getShareMetrics(props.share.token, {duration: "168h"})
|
||||||
|
.then(resp => {
|
||||||
|
if(mounted) {
|
||||||
|
setMetrics7(buildMetrics(resp.data));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
metadata.getShareMetrics(props.share.token, {duration: "24h"})
|
||||||
|
.then(resp => {
|
||||||
|
if(mounted) {
|
||||||
|
setMetrics1(buildMetrics(resp.data));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}, 5000);
|
}, 5000);
|
||||||
return () => {
|
return () => {
|
||||||
mounted = false;
|
mounted = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user