1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-21 13:47:39 +02:00
unleash.unleash/frontend/src/component/application/ApplicationView/ApplicationView.tsx
Tymoteusz Czech 23a874d051 Refactor: convert jsx files to typescript (#881)
* refactor: convert remaining js files to typescript

* refactor: conditionally render remove index

* refactor: dialog component to tsx

* refactor: migrate some files from jsx to tsx

* refactor: convert dropdown element to tsx

* refactor: feature toggle list to tsx

* refactor: update context name in use overrides

* refactor: variant overrides to tsx

refactor: remove unused strategy constraint file

* fix: tsx imports

* fix: update refectored components after rebase

* refactor: rename report list files to tsx

* fix: project health list types

* refactor: addon form - add types

* refactor: copy feature component types

* fix: projects toggle style after tsx refactor

* refactor: update ts types from openapi

* fix: ts refactor changes after review

* fix: header title prop

* fix: update after PR comments

* add test to useoverrides hook

* fix conditionally render time ago

* fix: toggle list empty tooltip

* fix: remove unused variable

* remove unused variable

* fix: remove faulty snapshot
2022-05-02 12:52:33 +02:00

216 lines
8.0 KiB
TypeScript

import { useContext } from 'react';
import { Link, useParams } from 'react-router-dom';
import {
Grid,
List,
ListItem,
ListItemAvatar,
ListItemText,
Typography,
} from '@material-ui/core';
import {
Extension,
FlagRounded,
Report,
SvgIconComponent,
Timeline,
} from '@material-ui/icons';
import {
CREATE_FEATURE,
CREATE_STRATEGY,
} from 'component/providers/AccessProvider/permissions';
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender';
import { getTogglePath } from 'utils/routePathHelpers';
import useApplication from 'hooks/api/getters/useApplication/useApplication';
import AccessContext from 'contexts/AccessContext';
import { formatDateYMDHMS } from 'utils/formatDate';
import { useLocationSettings } from 'hooks/useLocationSettings';
export const ApplicationView = () => {
const { hasAccess } = useContext(AccessContext);
const { name } = useParams<{ name: string }>();
const { application } = useApplication(name);
const { locationSettings } = useLocationSettings();
const { instances, strategies, seenToggles } = application;
const notFoundListItem = ({
createUrl,
name,
permission,
}: {
createUrl: string;
name: string;
permission: string;
}) => (
<ConditionallyRender
key={`not_found_conditional_${name}`}
condition={hasAccess(permission)}
show={
<ListItem key={`not_found_${name}`}>
<ListItemAvatar>
<Report style={{ color: 'red' }} />
</ListItemAvatar>
<ListItemText
primary={<Link to={`${createUrl}`}>{name}</Link>}
secondary={'Missing, want to create?'}
/>
</ListItem>
}
elseShow={
<ListItem key={`not_found_${name}`}>
<ListItemAvatar>
<Report />
</ListItemAvatar>
<ListItemText
primary={name}
secondary={`Could not find feature toggle with name ${name}`}
/>
</ListItem>
}
/>
);
const foundListItem = ({
viewUrl,
name,
description,
Icon,
i,
}: {
viewUrl: string;
name: string;
description: string;
Icon: SvgIconComponent;
i: number;
}) => (
<ListItem key={`found_${name}-${i}`}>
<ListItemAvatar>
<Icon />
</ListItemAvatar>
<ListItemText
primary={
<Link
to={`${viewUrl}/${name}`}
style={{ wordBreak: 'break-all' }}
>
{name}
</Link>
}
secondary={description}
/>
</ListItem>
);
return (
<Grid container style={{ margin: 0 }}>
<Grid item xl={6} md={6} xs={12}>
<Typography variant="subtitle1" style={{ padding: '1rem 0' }}>
Toggles
</Typography>
<hr />
<List>
{seenToggles.map(
({ name, description, notFound, project }, i) => (
<ConditionallyRender
key={`toggle_conditional_${name}`}
condition={notFound}
show={notFoundListItem({
createUrl: `/projects/default/create-toggle?name=${name}`,
name,
permission: CREATE_FEATURE,
})}
elseShow={foundListItem({
viewUrl: getTogglePath(project, name),
name,
description,
Icon: FlagRounded,
i,
})}
/>
)
)}
</List>
</Grid>
<Grid item xl={6} md={6} xs={12}>
<Typography variant="subtitle1" style={{ padding: '1rem 0' }}>
Implemented strategies
</Typography>
<hr />
<List>
{strategies.map(
({ name, description, notFound }, i: number) => (
<ConditionallyRender
key={`strategies_conditional_${name}`}
condition={notFound}
show={notFoundListItem({
createUrl: '/strategies/create',
name,
permission: CREATE_STRATEGY,
})}
elseShow={foundListItem({
viewUrl: '/strategies/view',
name,
Icon: Extension,
description,
i,
})}
/>
)
)}
</List>
</Grid>
<Grid item xl={12} md={12}>
<Typography variant="subtitle1" style={{ padding: '1rem 0' }}>
{instances.length} Instances registered
</Typography>
<hr />
<List>
{instances.map(
({
instanceId,
clientIp,
lastSeen,
sdkVersion,
}: {
instanceId: string;
clientIp: string;
lastSeen: string;
sdkVersion: string;
}) => (
<ListItem key={`${instanceId}`}>
<ListItemAvatar>
<Timeline />
</ListItemAvatar>
<ListItemText
primary={
<ConditionallyRender
key={`${instanceId}_conditional`}
condition={Boolean(sdkVersion)}
show={
<span>
{instanceId} {sdkVersion}
</span>
}
elseShow={<span>{instanceId}</span>}
/>
}
secondary={
<span>
{clientIp} last seen at{' '}
<small>
{formatDateYMDHMS(
lastSeen,
locationSettings.locale
)}
</small>
</span>
}
/>
</ListItem>
)
)}
</List>
</Grid>
</Grid>
);
};