-
Notifications
You must be signed in to change notification settings - Fork 22
fix(admin-ui): Use typescript generated client on MAU, Reports and Heath pages #2506
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
f93f8b8
fix(admin-ui): Use typescript generated client on MAU, Reports and He…
syntrydy 2e73a35
fix(admin-ui): apply code review #2503
syntrydy 41e1339
fix(admin-ui): apply code review #2503
syntrydy f99c4a0
Merge branch 'main' into admin-ui-2503
syntrydy 8f95b74
fix(admin-ui): apply code review #2503
syntrydy deea088
Merge branch 'main' into admin-ui-2503
syntrydy ceb836c
Merge branch 'main' into admin-ui-2503
moabu 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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,95 @@ | ||
| import React, { useContext, useCallback } from 'react' | ||
| import { Container, CardBody, Card, Button, Row, Col, Alert } from 'Components' | ||
| import { useTranslation } from 'react-i18next' | ||
| import SetTitle from 'Utils/SetTitle' | ||
| import { ThemeContext } from 'Context/theme/themeContext' | ||
| import getThemeColor from '@/context/theme/config' | ||
| import GluuLoader from 'Routes/Apps/Gluu/GluuLoader' | ||
| import { useHealthStatus } from './hooks' | ||
| import ServiceStatusCard from './components/ServiceStatusCard' | ||
| import HealthStatusBadge from './components/HealthStatusBadge' | ||
|
|
||
| interface ThemeState { | ||
| state: { | ||
| theme: string | ||
| } | ||
| } | ||
|
|
||
| const HealthPage: React.FC = () => { | ||
| const { t } = useTranslation() | ||
| SetTitle(t('titles.services_health')) | ||
|
|
||
| const theme = useContext(ThemeContext) as ThemeState | ||
| const themeColors = getThemeColor(theme.state.theme) | ||
|
|
||
| const { | ||
| services, | ||
| overallStatus, | ||
| healthyCount, | ||
| totalCount, | ||
| isLoading, | ||
| isFetching, | ||
| isError, | ||
| refetch, | ||
| } = useHealthStatus() | ||
|
|
||
| const handleRefresh = useCallback(() => { | ||
| refetch() | ||
| }, [refetch]) | ||
|
|
||
| const loading = isLoading || isFetching | ||
|
|
||
| return ( | ||
| <GluuLoader blocking={loading}> | ||
| <Container> | ||
| <Card className="mb-3"> | ||
| <CardBody> | ||
| <Row className="mb-4 align-items-center"> | ||
| <Col> | ||
| <h4 className="mb-0 d-flex align-items-center gap-3"> | ||
| {t('titles.services_health')} | ||
| {!isLoading && !isError && <HealthStatusBadge status={overallStatus} />} | ||
| </h4> | ||
| {!isLoading && !isError && totalCount > 0 && ( | ||
| <small className="text-muted"> | ||
| {t('messages.services_healthy_count', { healthyCount, totalCount })} | ||
| </small> | ||
| )} | ||
| </Col> | ||
| <Col xs="auto"> | ||
| <Button | ||
| color={`primary-${theme.state.theme}`} | ||
| onClick={handleRefresh} | ||
| disabled={loading} | ||
| > | ||
| <i className={`fa fa-refresh me-2 ${loading ? 'fa-spin' : ''}`}></i> | ||
| {t('actions.refresh')} | ||
| </Button> | ||
| </Col> | ||
| </Row> | ||
|
|
||
| {isError && ( | ||
| <Alert color="danger" className="mb-4"> | ||
| <i className="fa fa-exclamation-triangle me-2"></i> | ||
| {t('messages.error_fetching_health_status')} | ||
| </Alert> | ||
| )} | ||
|
|
||
| {!isLoading && !isError && services.length === 0 && ( | ||
| <Alert color="info"> | ||
| <i className="fa fa-info-circle me-2"></i> | ||
| {t('messages.no_services_found')} | ||
| </Alert> | ||
| )} | ||
|
|
||
| {services.map((service) => ( | ||
| <ServiceStatusCard key={service.name} service={service} themeColors={themeColors} /> | ||
| ))} | ||
| </CardBody> | ||
| </Card> | ||
| </Container> | ||
| </GluuLoader> | ||
| ) | ||
| } | ||
|
|
||
| export default HealthPage | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.