-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Tenscan] health check UI on Tenscan #1719
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
92d7197
wip: add an endpoint for health check
Jennievon 9896ed7
feat: add endpoint for health check
Jennievon e8beeee
add ui for health check on Tenscan
Jennievon e64a7c5
Merge branch 'main' of https://github.com/ten-protocol/go-ten into je…
Jennievon 2394bbf
Merge branch 'main' of https://github.com/ten-protocol/go-ten into je…
Jennievon e71c46e
Merge branch 'jennifer/2624-add-a-health-indicator-for-testnet-on-ten…
Jennievon ba87900
Refactor health status method names
Jennievon 6386d90
Merge branch 'main' of https://github.com/ten-protocol/go-ten into je…
Jennievon d87f71a
Refactor health check function calls
Jennievon 1e681f3
Merge branch 'jennifer/2624-add-a-health-indicator-for-testnet-on-ten…
Jennievon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { ResponseDataInterface } from "@/src/types/interfaces"; | ||
import { httpRequest } from "."; | ||
import { pathToUrl } from "@/src/routes/router"; | ||
import { apiRoutes } from "@/src/routes"; | ||
|
||
export const fetchTestnetStatus = async (): Promise< | ||
ResponseDataInterface<any> | ||
> => { | ||
return await httpRequest<ResponseDataInterface<any>>({ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we do anything with the error ooc ? Should we ? |
||
method: "post", | ||
url: pathToUrl(apiRoutes.getHealthStatus), | ||
data: { jsonrpc: "2.0", method: "obscuro_health", params: [], id: 1 }, | ||
}); | ||
}; |
24 changes: 24 additions & 0 deletions
24
tools/tenscan/frontend/src/components/health-indicator.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from "react"; | ||
import { Badge, badgeVariants } from "./ui/badge"; | ||
import { useGeneralService } from "../services/useGeneralService"; | ||
|
||
const HealthIndicator = () => { | ||
const { testnetStatus } = useGeneralService(); | ||
|
||
return ( | ||
<div className="flex items-center space-x-2 border rounded-lg p-2"> | ||
<h3 className="text-sm">Testnet Status: </h3> | ||
<Badge | ||
variant={ | ||
(testnetStatus?.result | ||
? "success" | ||
: "destructive") as keyof typeof badgeVariants | ||
} | ||
> | ||
{testnetStatus?.result ? "Live" : "Down"} | ||
</Badge> | ||
</div> | ||
); | ||
}; | ||
|
||
export default HealthIndicator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { fetchTestnetStatus } from "@/api/general"; | ||
import { useQuery } from "@tanstack/react-query"; | ||
import { useState } from "react"; | ||
|
||
export const useGeneralService = () => { | ||
const [noPolling, setNoPolling] = useState(false); | ||
|
||
const { | ||
data: testnetStatus, | ||
isLoading: isStatusLoading, | ||
refetch: refetchTestnetStatus, | ||
} = useQuery({ | ||
queryKey: ["testnetStatus"], | ||
queryFn: () => fetchTestnetStatus(), | ||
// refetchInterval: noPolling ? false : pollingInterval, | ||
}); | ||
|
||
return { testnetStatus, isStatusLoading, setNoPolling, refetchTestnetStatus }; | ||
}; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can another name be used for this ? Seems to be a bag of holding file.