Skip to content
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

✨ Add app details: Include a list of targets the project was checked against #2140

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions client/public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,7 @@
"tagsAssessment": "Assessment Tags",
"tagsCriteria": "Criteria Tags",
"target": "Target",
"targets": "Targets",
"tagCategory": "Tag category",
"tagCategoryDeleted": "Tag category deleted",
"tagCategories": "Tag categories",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import { Paths } from "@app/Paths";
import { useFetchArchetypes } from "@app/queries/archetypes";
import { useFetchAssessments } from "@app/queries/assessments";
import { DecoratedApplication } from "../../applications-table/useDecoratedApplications";
import { TaskStates } from "@app/queries/tasks";
import { TaskStates, useFetchTaskByID } from "@app/queries/tasks";

export interface IApplicationDetailDrawerProps
extends Pick<IPageDrawerContentProps, "onCloseClick"> {
Expand Down Expand Up @@ -182,6 +182,11 @@ const TabDetailsContent: React.FC<{
.filter((fullArchetype) => fullArchetype?.review)
.filter(Boolean);

const { task } = useFetchTaskByID(application.tasks.currentAnalyzer?.id);
const targets = task?.data?.rules?.labels?.included.filter((t) =>
t.startsWith("konveyor.io/target=")
);

return (
<>
<TextContent className={`${spacing.mtMd} ${spacing.mbMd}`}>
Expand Down Expand Up @@ -303,6 +308,18 @@ const TabDetailsContent: React.FC<{
onEditClick={onEditClick}
onCloseClick={onCloseClick}
/>
<TextContent className={spacing.mtLg}>
<Title headingLevel="h3" size="md">
{t("terms.targets")}
</Title>
{targets?.map((t) => (
<Text component="small" key={t!}>
{t}
</Text>
))}
{targets?.length == 0 ||
(!targets && <EmptyTextMessage message={t("terms.none")} />)}
</TextContent>
</>
);
};
Expand Down
Loading