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
|
import React, { FunctionComponent, useCallback } from "react";
import { InputGroup } from "react-bootstrap";
import {
Check,
Chips,
CollapseBox,
Group,
Input,
Message,
Selector,
SettingsProvider,
Slider,
Text,
URLTestButton,
} from "../components";
import { PathMappingTable } from "../components/pathMapper";
import { seriesEnabledKey } from "../keys";
import { seriesTypeOptions } from "../options";
interface Props {}
const SettingsSonarrView: FunctionComponent<Props> = () => {
const baseUrlOverride = useCallback((settings: Settings) => {
return settings.sonarr.base_url?.slice(1) ?? "";
}, []);
return (
<SettingsProvider title="Sonarr - Bazarr (Settings)">
<CollapseBox>
<CollapseBox.Control>
<Group header="Use Sonarr">
<Input>
<Check label="Enabled" settingKey={seriesEnabledKey}></Check>
</Input>
</Group>
</CollapseBox.Control>
<CollapseBox.Content indent={false}>
<Group header="Host">
<Input name="Address">
<Text settingKey="settings-sonarr-ip"></Text>
<Message>Hostname or IPv4 Address</Message>
</Input>
<Input name="Port">
<Text settingKey="settings-sonarr-port"></Text>
</Input>
<Input name="Base URL">
<InputGroup>
<InputGroup.Prepend>
<InputGroup.Text>/</InputGroup.Text>
</InputGroup.Prepend>
<Text
settingKey="settings-sonarr-base_url"
override={baseUrlOverride}
beforeStaged={(v) => "/" + v}
></Text>
</InputGroup>
</Input>
<Input name="API Key">
<Text settingKey="settings-sonarr-apikey"></Text>
</Input>
<Input>
<Check label="SSL" settingKey="settings-sonarr-ssl"></Check>
</Input>
<Input>
<URLTestButton category="sonarr"></URLTestButton>
</Input>
</Group>
<Group header="Options">
<Input name="Minimum Score">
<Slider settingKey="settings-general-minimum_score"></Slider>
</Input>
<Input name="Excluded Tags">
<Chips settingKey="settings-sonarr-excluded_tags"></Chips>
<Message>
Episodes from series with those tags (case sensitive) in Sonarr
will be excluded from automatic download of subtitles.
</Message>
</Input>
<Input name="Excluded Series Types">
<Selector
settingKey="settings-sonarr-excluded_series_types"
multiple
options={seriesTypeOptions}
></Selector>
<Message>
Episodes from series with those types in Sonarr will be excluded
from automatic download of subtitles.
</Message>
</Input>
<Input>
<Check
label="Download Only Monitored"
settingKey="settings-sonarr-only_monitored"
></Check>
<Message>
Automatic download of subtitles will only happen for monitored
episodes in Sonarr.
</Message>
</Input>
</Group>
<Group header="Path Mappings">
<PathMappingTable type="sonarr"></PathMappingTable>
</Group>
</CollapseBox.Content>
</CollapseBox>
</SettingsProvider>
);
};
export default SettingsSonarrView;
|