mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-02 06:48:13 +00:00
New: Limit recent folders in Manual import to 10 and descending order
Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
@@ -93,7 +93,7 @@ class InteractiveImportSelectFolderModalContent extends Component {
|
||||
>
|
||||
<TableBody>
|
||||
{
|
||||
recentFolders.map((recentFolder) => {
|
||||
recentFolders.slice(0).reverse().map((recentFolder) => {
|
||||
return (
|
||||
<RecentFolderRow
|
||||
key={recentFolder.folder}
|
||||
|
||||
@@ -19,6 +19,8 @@ export const section = 'interactiveImport';
|
||||
const booksSection = `${section}.books`;
|
||||
const bookFilesSection = `${section}.bookFiles`;
|
||||
|
||||
const MAXIMUM_RECENT_FOLDERS = 10;
|
||||
|
||||
//
|
||||
// State
|
||||
|
||||
@@ -203,12 +205,14 @@ export const reducers = createHandleActions({
|
||||
const index = recentFolders.findIndex((r) => r.folder === folder);
|
||||
|
||||
if (index > -1) {
|
||||
recentFolders.splice(index, 1, recentFolder);
|
||||
} else {
|
||||
recentFolders.push(recentFolder);
|
||||
recentFolders.splice(index, 1);
|
||||
}
|
||||
|
||||
return Object.assign({}, state, { recentFolders });
|
||||
recentFolders.push(recentFolder);
|
||||
|
||||
const sliceIndex = Math.max(recentFolders.length - MAXIMUM_RECENT_FOLDERS, 0);
|
||||
|
||||
return Object.assign({}, state, { recentFolders: recentFolders.slice(sliceIndex) });
|
||||
},
|
||||
|
||||
[REMOVE_RECENT_FOLDER]: function(state, { payload }) {
|
||||
|
||||
Reference in New Issue
Block a user