1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
import { useSeriesModification, useSeriesPagination } from "@/apis/hooks";
import { ActionBadge, ItemEditorModal } from "@/components";
import LanguageProfile from "@/components/bazarr/LanguageProfile";
import ItemView from "@/components/views/ItemView";
import { useModalControl } from "@/modules/redux/hooks/modal";
import { BuildKey } from "@/utilities";
import { faWrench } from "@fortawesome/free-solid-svg-icons";
import { FunctionComponent, useMemo } from "react";
import { Badge, Container, ProgressBar } from "react-bootstrap";
import { Helmet } from "react-helmet";
import { Link } from "react-router-dom";
import { Column } from "react-table";
const SeriesView: FunctionComponent = () => {
const mutation = useSeriesModification();
const query = useSeriesPagination();
const columns: Column<Item.Series>[] = useMemo<Column<Item.Series>[]>(
() => [
{
Header: "Name",
accessor: "title",
className: "text-nowrap",
Cell: ({ row, value }) => {
const target = `/series/${row.original.sonarrSeriesId}`;
return (
<Link to={target}>
<span>{value}</span>
</Link>
);
},
},
{
Header: "Audio",
accessor: "audio_language",
Cell: (row) => {
return row.value.map((v) => (
<Badge
variant="secondary"
className="mr-2"
key={BuildKey(v.code2, v.forced, v.hi)}
>
{v.name}
</Badge>
));
},
},
{
Header: "Languages Profile",
accessor: "profileId",
Cell: ({ value }) => {
return <LanguageProfile index={value} empty=""></LanguageProfile>;
},
},
{
Header: "Episodes",
accessor: "episodeFileCount",
Cell: (row) => {
const { episodeFileCount, episodeMissingCount, profileId, title } =
row.row.original;
let progress = 0;
let label = "";
if (episodeFileCount === 0 || !profileId) {
progress = 0.0;
} else {
progress = episodeFileCount - episodeMissingCount;
label = `${
episodeFileCount - episodeMissingCount
}/${episodeFileCount}`;
}
const color = episodeMissingCount === 0 ? "primary" : "warning";
return (
<ProgressBar
className="my-a"
key={title}
variant={color}
min={0}
max={episodeFileCount}
now={progress}
label={label}
></ProgressBar>
);
},
},
{
accessor: "sonarrSeriesId",
Cell: ({ row: { original } }) => {
const { show } = useModalControl();
return (
<ActionBadge
icon={faWrench}
onClick={() => show("edit", original)}
></ActionBadge>
);
},
},
],
[]
);
return (
<Container fluid>
<Helmet>
<title>Series - Bazarr</title>
</Helmet>
<ItemView query={query} columns={columns}></ItemView>
<ItemEditorModal modalKey="edit" mutation={mutation}></ItemEditorModal>
</Container>
);
};
export default SeriesView;
|