bazarr/frontend/src/components/modals/HistoryModal.tsx

189 lines
4.7 KiB
TypeScript

import {
useEpisodeAddBlacklist,
useEpisodeHistory,
useMovieAddBlacklist,
useMovieHistory,
} from "@/apis/hooks";
import { usePayload } from "@/modules/redux/hooks/modal";
import { FunctionComponent, useMemo } from "react";
import { Column } from "react-table";
import { HistoryIcon, PageTable, QueryOverlay, TextPopover } from "..";
import Language from "../bazarr/Language";
import { BlacklistButton } from "../inputs/blacklist";
import BaseModal, { BaseModalProps } from "./BaseModal";
export const MovieHistoryModal: FunctionComponent<BaseModalProps> = (props) => {
const { ...modal } = props;
const movie = usePayload<Item.Movie>(modal.modalKey);
const history = useMovieHistory(movie?.radarrId);
const { data } = history;
const columns = useMemo<Column<History.Movie>[]>(
() => [
{
accessor: "action",
className: "text-center",
Cell: (row) => {
return <HistoryIcon action={row.value}></HistoryIcon>;
},
},
{
Header: "Language",
accessor: "language",
Cell: ({ value }) => {
if (value) {
return <Language.Text value={value} long></Language.Text>;
} else {
return null;
}
},
},
{
Header: "Provider",
accessor: "provider",
},
{
Header: "Score",
accessor: "score",
},
{
Header: "Date",
accessor: "timestamp",
Cell: (row) => {
if (row.value) {
return (
<TextPopover text={row.row.original.parsed_timestamp} delay={1}>
<span>{row.value}</span>
</TextPopover>
);
} else {
return null;
}
},
},
{
// Actions
accessor: "blacklisted",
Cell: ({ row }) => {
const { radarrId } = row.original;
const { mutateAsync } = useMovieAddBlacklist();
return (
<BlacklistButton
update={history.refetch}
promise={(form) => mutateAsync({ id: radarrId, form })}
history={row.original}
></BlacklistButton>
);
},
},
],
[history.refetch]
);
return (
<BaseModal title={`History - ${movie?.title ?? ""}`} {...modal}>
<QueryOverlay result={history}>
<PageTable
emptyText="No History Found"
columns={columns}
data={data ?? []}
></PageTable>
</QueryOverlay>
</BaseModal>
);
};
export const EpisodeHistoryModal: FunctionComponent<BaseModalProps> = (
props
) => {
const episode = usePayload<Item.Episode>(props.modalKey);
const history = useEpisodeHistory(episode?.sonarrEpisodeId);
const { data } = history;
const columns = useMemo<Column<History.Episode>[]>(
() => [
{
accessor: "action",
className: "text-center",
Cell: (row) => {
return <HistoryIcon action={row.value}></HistoryIcon>;
},
},
{
Header: "Language",
accessor: "language",
Cell: ({ value }) => {
if (value) {
return <Language.Text value={value} long></Language.Text>;
} else {
return null;
}
},
},
{
Header: "Provider",
accessor: "provider",
},
{
Header: "Score",
accessor: "score",
},
{
Header: "Date",
accessor: "timestamp",
Cell: (row) => {
if (row.value) {
return (
<TextPopover text={row.row.original.parsed_timestamp} delay={1}>
<span>{row.value}</span>
</TextPopover>
);
} else {
return null;
}
},
},
{
// Actions
accessor: "blacklisted",
Cell: ({ row }) => {
const original = row.original;
const { sonarrEpisodeId, sonarrSeriesId } = original;
const { mutateAsync } = useEpisodeAddBlacklist();
return (
<BlacklistButton
history={original}
promise={(form) =>
mutateAsync({
seriesId: sonarrSeriesId,
episodeId: sonarrEpisodeId,
form,
})
}
></BlacklistButton>
);
},
},
],
[]
);
return (
<BaseModal title={`History - ${episode?.title ?? ""}`} {...props}>
<QueryOverlay result={history}>
<PageTable
emptyText="No History Found"
columns={columns}
data={data ?? []}
></PageTable>
</QueryOverlay>
</BaseModal>
);
};