Files
bodyshop/client/src/components/job-detail-cards/job-detail-cards.notes.component.jsx
2025-08-19 16:23:29 -04:00

40 lines
1.2 KiB
JavaScript

import { List } from "antd";
import { AuditOutlined, EyeInvisibleFilled, WarningFilled } from "@ant-design/icons";
import { useTranslation } from "react-i18next";
import CardTemplate from "./job-detail-cards.template.component";
import styled from "styled-components";
const Container = styled.div`
height: 100%;
overflow-y: auto;
`;
export default function JobDetailCardsNotesComponent({ loading, data }) {
const { t } = useTranslation();
return (
<CardTemplate
loading={loading}
title={t("jobs.labels.cards.notes")}
extraLink={`/manage/jobs/${data.id}?tab=notes`}
>
{data ? (
<Container>
<List
bordered
dataSource={data.notes}
renderItem={(item) => (
<List.Item style={{ whiteSpace: "pre-line" }}>
{item.critical ? <EyeInvisibleFilled style={{ margin: 4, color: "red" }} /> : null}
{item.private ? <WarningFilled style={{ margin: 4 }} /> : null}
{item.audit ? <AuditOutlined style={{ margin: 4 }} /> : null}
{item.text}
</List.Item>
)}
/>
</Container>
) : null}
</CardTemplate>
);
}