Skip to content

Commit

Permalink
Federation dark theme improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
rkfg committed Jul 18, 2024
1 parent 06030e1 commit 3074904
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions src/resources/destinations.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { get } from "lodash";
import { MouseEvent } from "react";

import AutorenewIcon from "@mui/icons-material/Autorenew";
import DestinationsIcon from "@mui/icons-material/CloudQueue";
import FolderSharedIcon from "@mui/icons-material/FolderShared";
import ViewListIcon from "@mui/icons-material/ViewList";
import { blue } from "@mui/material/colors";
import {
Button,
Datagrid,
Expand All @@ -27,15 +29,26 @@ import {
useNotify,
useRefresh,
useTranslate,
useTheme,
DateFieldProps,
} from "react-admin";

import { DATE_FORMAT } from "../components/date";

const DestinationPagination = () => <Pagination rowsPerPageOptions={[10, 25, 50, 100, 500, 1000]} />;

const destinationRowSx = (record: RaRecord) => ({
backgroundColor: record.retry_last_ts > 0 ? "#ffcccc" : "white",
const destinationRowSxLight = (record: RaRecord) => ({
backgroundColor: record.retry_last_ts > 0 ? "#ffcccc" : undefined,
});

const destinationRowSxDark = (record: RaRecord) => ({
backgroundColor: record.retry_last_ts > 0 ? "#ffcccc" : undefined,
"& > td": {
color: record.retry_last_ts > 0 ? "black" : "white",
"& > button": {
color: blue[600],
},
},
});

const destinationFilters = [<SearchInput source="destination" alwaysOn />];
Expand Down Expand Up @@ -96,12 +109,14 @@ const DestinationTitle = () => {
const RetryDateField = (props: DateFieldProps) => {
const record = useRecordContext(props);
if (props.source && get(record, props.source) === 0) {
return <DateField {...props} record={{...record, [props.source]: null}} />
return <DateField {...props} record={{ ...record, [props.source]: null }} />;
}
return <DateField {...props} />
}
return <DateField {...props} />;
};

export const DestinationList = (props: ListProps) => {
const [theme] = useTheme();
const destinationRowSx = theme === "light" ? destinationRowSxLight : destinationRowSxDark;
return (
<List
{...props}
Expand Down

0 comments on commit 3074904

Please sign in to comment.