New: Limit recent folders in Manual import to 10 and descending order

Signed-off-by: Robin Dadswell <robin@dadswell.email>
pull/770/head
Mark McDowall 5 years ago committed by Qstick
parent 16b2458903
commit bb66af7185

@ -93,7 +93,7 @@ class InteractiveImportSelectFolderModalContent extends Component {
> >
<TableBody> <TableBody>
{ {
recentFolders.map((recentFolder) => { recentFolders.slice(0).reverse().map((recentFolder) => {
return ( return (
<RecentFolderRow <RecentFolderRow
key={recentFolder.folder} key={recentFolder.folder}

@ -19,6 +19,8 @@ export const section = 'interactiveImport';
const booksSection = `${section}.books`; const booksSection = `${section}.books`;
const bookFilesSection = `${section}.bookFiles`; const bookFilesSection = `${section}.bookFiles`;
const MAXIMUM_RECENT_FOLDERS = 10;
// //
// State // State
@ -203,12 +205,14 @@ export const reducers = createHandleActions({
const index = recentFolders.findIndex((r) => r.folder === folder); const index = recentFolders.findIndex((r) => r.folder === folder);
if (index > -1) { if (index > -1) {
recentFolders.splice(index, 1, recentFolder); recentFolders.splice(index, 1);
} else {
recentFolders.push(recentFolder);
} }
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 }) { [REMOVE_RECENT_FOLDER]: function(state, { payload }) {

Loading…
Cancel
Save