mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
b99c536306
(cherry picked from commit 10e3a237ef972540abcf4348bb56973d7ee19bd7)
108 lines
3.3 KiB
TypeScript
108 lines
3.3 KiB
TypeScript
import React, { useCallback, useRef, useState } from 'react';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import AppState from 'App/State/AppState';
|
|
import PageContent from 'Components/Page/PageContent';
|
|
import PageContentBody from 'Components/Page/PageContentBody';
|
|
import PageToolbarButton from 'Components/Page/Toolbar/PageToolbarButton';
|
|
import PageToolbarSeparator from 'Components/Page/Toolbar/PageToolbarSeparator';
|
|
import { icons } from 'Helpers/Props';
|
|
import SettingsToolbar from 'Settings/SettingsToolbar';
|
|
import { testAllImportLists } from 'Store/Actions/settingsActions';
|
|
import {
|
|
SaveCallback,
|
|
SettingsStateChange,
|
|
} from 'typings/Settings/SettingsState';
|
|
import translate from 'Utilities/String/translate';
|
|
import ImportListExclusions from './ImportListExclusions/ImportListExclusions';
|
|
import ImportLists from './ImportLists/ImportLists';
|
|
import ManageImportListsModal from './ImportLists/Manage/ManageImportListsModal';
|
|
import ImportListOptions from './Options/ImportListOptions';
|
|
|
|
function ImportListSettings() {
|
|
const dispatch = useDispatch();
|
|
const isTestingAll = useSelector(
|
|
(state: AppState) => state.settings.importLists.isTestingAll
|
|
);
|
|
|
|
const saveOptions = useRef<() => void>();
|
|
|
|
const [isSaving, setIsSaving] = useState(false);
|
|
const [hasPendingChanges, setHasPendingChanges] = useState(false);
|
|
const [isManageImportListsModalOpen, setIsManageImportListsModalOpen] =
|
|
useState(false);
|
|
|
|
const handleSetChildSave = useCallback((saveCallback: SaveCallback) => {
|
|
saveOptions.current = saveCallback;
|
|
}, []);
|
|
|
|
const handleChildStateChange = useCallback(
|
|
({ isSaving, hasPendingChanges }: SettingsStateChange) => {
|
|
setIsSaving(isSaving);
|
|
setHasPendingChanges(hasPendingChanges);
|
|
},
|
|
[]
|
|
);
|
|
|
|
const handleManageImportListsPress = useCallback(() => {
|
|
setIsManageImportListsModalOpen(true);
|
|
}, []);
|
|
|
|
const handleManageImportListsModalClose = useCallback(() => {
|
|
setIsManageImportListsModalOpen(false);
|
|
}, []);
|
|
|
|
const handleSavePress = useCallback(() => {
|
|
saveOptions.current?.();
|
|
}, []);
|
|
|
|
const handleTestAllIndexersPress = useCallback(() => {
|
|
dispatch(testAllImportLists());
|
|
}, [dispatch]);
|
|
|
|
return (
|
|
<PageContent title={translate('ImportListSettings')}>
|
|
<SettingsToolbar
|
|
isSaving={isSaving}
|
|
hasPendingChanges={hasPendingChanges}
|
|
additionalButtons={
|
|
<>
|
|
<PageToolbarSeparator />
|
|
|
|
<PageToolbarButton
|
|
label={translate('TestAllLists')}
|
|
iconName={icons.TEST}
|
|
isSpinning={isTestingAll}
|
|
onPress={handleTestAllIndexersPress}
|
|
/>
|
|
|
|
<PageToolbarButton
|
|
label={translate('ManageLists')}
|
|
iconName={icons.MANAGE}
|
|
onPress={handleManageImportListsPress}
|
|
/>
|
|
</>
|
|
}
|
|
onSavePress={handleSavePress}
|
|
/>
|
|
|
|
<PageContentBody>
|
|
<ImportLists />
|
|
|
|
<ImportListOptions
|
|
setChildSave={handleSetChildSave}
|
|
onChildStateChange={handleChildStateChange}
|
|
/>
|
|
|
|
<ImportListExclusions />
|
|
|
|
<ManageImportListsModal
|
|
isOpen={isManageImportListsModalOpen}
|
|
onModalClose={handleManageImportListsModalClose}
|
|
/>
|
|
</PageContentBody>
|
|
</PageContent>
|
|
);
|
|
}
|
|
|
|
export default ImportListSettings;
|