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
|
import { FunctionComponent } from "react";
import { Code } from "@mantine/core";
import {
Check,
Chips,
CollapseBox,
Layout,
Message,
Number,
PathMappingTable,
Section,
Selector,
Slider,
Text,
URLTestButton,
} from "@/pages/Settings/components";
import { moviesEnabledKey } from "@/pages/Settings/keys";
import { timeoutOptions } from "./options";
const SettingsRadarrView: FunctionComponent = () => {
return (
<Layout name="Radarr">
<Section header="Use Radarr">
<Check label="Enabled" settingKey={moviesEnabledKey}></Check>
</Section>
<CollapseBox settingKey={moviesEnabledKey}>
<Section header="Host">
<Text label="Address" settingKey="settings-radarr-ip"></Text>
<Message>Hostname or IPv4 Address</Message>
<Number label="Port" settingKey="settings-radarr-port"></Number>
<Text
label="Base URL"
leftSection="/"
settingKey="settings-radarr-base_url"
settingOptions={{
onLoaded: (s) => s.radarr.base_url?.slice(1) ?? "",
onSubmit: (v) => "/" + v,
}}
></Text>
<Selector
label="HTTP Timeout"
options={timeoutOptions}
settingKey="settings-radarr-http_timeout"
></Selector>
<Text label="API Key" settingKey="settings-radarr-apikey"></Text>
<Check label="SSL" settingKey="settings-radarr-ssl"></Check>
<URLTestButton category="radarr"></URLTestButton>
</Section>
<Section header="Options">
<Slider
label="Minimum Score"
settingKey="settings-general-minimum_score_movie"
></Slider>
<Chips
label="Excluded Tags"
settingKey="settings-radarr-excluded_tags"
sanitizeFn={(values: string[] | null) =>
values?.map((item) =>
item.replace(/[^a-z0-9_-]/gi, "").toLowerCase(),
)
}
></Chips>
<Message>
Movies with those tags (case sensitive) in Radarr will be excluded
from automatic download of subtitles.
</Message>
<Check
label="Download Only Monitored"
settingKey="settings-radarr-only_monitored"
></Check>
<Message>
Automatic download of subtitles will only happen for monitored
movies in Radarr.
</Message>
<Check
label="Defer searching of subtitles until scheduled task execution"
settingKey="settings-radarr-defer_search_signalr"
></Check>
<Message>
If enabled, this option will prevent Bazarr from searching subtitles
as soon as movies are imported.
</Message>
<Message>
Search can be triggered using this command
<Code>
curl -d "radarr_moviefile_id=$radarr_moviefile_id" -H "x-api-key:
###############################" -X POST
http://localhost:6767/api/webhooks/radarr
</Code>
</Message>
</Section>
<Section header="Path Mappings">
<PathMappingTable type="radarr"></PathMappingTable>
</Section>
</CollapseBox>
</Layout>
);
};
export default SettingsRadarrView;
|