New: Bulk select language and quality in Manual Import
This commit is contained in:
parent
8339f7fdb3
commit
11164ab838
|
@ -1,5 +1,5 @@
|
||||||
.description {
|
.description {
|
||||||
composes: title from 'Components/DescriptionList/DescriptionListItemDescription.css';
|
composes: description from 'Components/DescriptionList/DescriptionListItemDescription.css';
|
||||||
|
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,24 +16,21 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.leftButtons,
|
.leftButtons,
|
||||||
.centerButtons,
|
|
||||||
.rightButtons {
|
.rightButtons {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex: 1 0 33%;
|
flex: 1 0 50%;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.centerButtons {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rightButtons {
|
.rightButtons {
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
.importMode {
|
.importMode,
|
||||||
|
.bulkSelect {
|
||||||
composes: select from 'Components/Form/SelectInput.css';
|
composes: select from 'Components/Form/SelectInput.css';
|
||||||
|
|
||||||
|
margin-right: 10px;
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,7 +41,6 @@
|
||||||
@media only screen and (max-width: $breakpointSmall) {
|
@media only screen and (max-width: $breakpointSmall) {
|
||||||
.footer {
|
.footer {
|
||||||
.leftButtons,
|
.leftButtons,
|
||||||
.centerButtons,
|
|
||||||
.rightButtons {
|
.rightButtons {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
@ -53,10 +49,6 @@
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
.centerButtons {
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rightButtons {
|
.rightButtons {
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,8 @@ import ModalBody from 'Components/Modal/ModalBody';
|
||||||
import ModalFooter from 'Components/Modal/ModalFooter';
|
import ModalFooter from 'Components/Modal/ModalFooter';
|
||||||
import Table from 'Components/Table/Table';
|
import Table from 'Components/Table/Table';
|
||||||
import TableBody from 'Components/Table/TableBody';
|
import TableBody from 'Components/Table/TableBody';
|
||||||
|
import SelectLanguageModal from 'InteractiveImport/Language/SelectLanguageModal';
|
||||||
|
import SelectQualityModal from 'InteractiveImport/Quality/SelectQualityModal';
|
||||||
import SelectSeriesModal from 'InteractiveImport/Series/SelectSeriesModal';
|
import SelectSeriesModal from 'InteractiveImport/Series/SelectSeriesModal';
|
||||||
import SelectSeasonModal from 'InteractiveImport/Season/SelectSeasonModal';
|
import SelectSeasonModal from 'InteractiveImport/Season/SelectSeasonModal';
|
||||||
import InteractiveImportRow from './InteractiveImportRow';
|
import InteractiveImportRow from './InteractiveImportRow';
|
||||||
|
@ -80,6 +82,17 @@ const filterExistingFilesOptions = {
|
||||||
NEW: 'new'
|
NEW: 'new'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const importModeOptions = [
|
||||||
|
{ key: 'move', value: 'Move Files' },
|
||||||
|
{ key: 'copy', value: 'Copy Files' }
|
||||||
|
];
|
||||||
|
|
||||||
|
const SELECT = 'select';
|
||||||
|
const SERIES = 'series';
|
||||||
|
const SEASON = 'season';
|
||||||
|
const LANGUAGE = 'language';
|
||||||
|
const QUALITY = 'quality';
|
||||||
|
|
||||||
class InteractiveImportModalContent extends Component {
|
class InteractiveImportModalContent extends Component {
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -94,8 +107,7 @@ class InteractiveImportModalContent extends Component {
|
||||||
lastToggled: null,
|
lastToggled: null,
|
||||||
selectedState: {},
|
selectedState: {},
|
||||||
invalidRowsSelected: [],
|
invalidRowsSelected: [],
|
||||||
isSelectSeriesModalOpen: false,
|
selectModalOpen: null
|
||||||
isSelectSeasonModalOpen: false
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -155,20 +167,12 @@ class InteractiveImportModalContent extends Component {
|
||||||
this.props.onImportModeChange(value);
|
this.props.onImportModeChange(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
onSelectSeriesPress = () => {
|
onSelectModalSelect = ({ value }) => {
|
||||||
this.setState({ isSelectSeriesModalOpen: true });
|
this.setState({ selectModalOpen: value });
|
||||||
}
|
}
|
||||||
|
|
||||||
onSelectSeasonPress = () => {
|
onSelectModalClose = () => {
|
||||||
this.setState({ isSelectSeasonModalOpen: true });
|
this.setState({ selectModalOpen: null });
|
||||||
}
|
|
||||||
|
|
||||||
onSelectSeriesModalClose = () => {
|
|
||||||
this.setState({ isSelectSeriesModalOpen: false });
|
|
||||||
}
|
|
||||||
|
|
||||||
onSelectSeasonModalClose = () => {
|
|
||||||
this.setState({ isSelectSeasonModalOpen: false });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -200,19 +204,27 @@ class InteractiveImportModalContent extends Component {
|
||||||
allUnselected,
|
allUnselected,
|
||||||
selectedState,
|
selectedState,
|
||||||
invalidRowsSelected,
|
invalidRowsSelected,
|
||||||
isSelectSeriesModalOpen,
|
selectModalOpen
|
||||||
isSelectSeasonModalOpen
|
|
||||||
} = this.state;
|
} = this.state;
|
||||||
|
|
||||||
const selectedIds = this.getSelectedIds();
|
const selectedIds = this.getSelectedIds();
|
||||||
const selectedItem = selectedIds.length ? _.find(items, { id: selectedIds[0] }) : null;
|
const selectedItem = selectedIds.length ? _.find(items, { id: selectedIds[0] }) : null;
|
||||||
const errorMessage = getErrorMessage(error, 'Unable to load manual import items');
|
const errorMessage = getErrorMessage(error, 'Unable to load manual import items');
|
||||||
|
|
||||||
const importModeOptions = [
|
const bulkSelectOptions = [
|
||||||
{ key: 'move', value: 'Move Files' },
|
{ key: SELECT, value: 'Select...', disabled: true },
|
||||||
{ key: 'copy', value: 'Copy Files' }
|
{ key: SEASON, value: 'Select Season' },
|
||||||
|
{ key: LANGUAGE, value: 'Select Language' },
|
||||||
|
{ key: QUALITY, value: 'Select Qualty' }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if (allowSeriesChange) {
|
||||||
|
bulkSelectOptions.splice(1, 0, {
|
||||||
|
key: SERIES,
|
||||||
|
value: 'Select Series'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ModalContent onModalClose={onModalClose}>
|
<ModalContent onModalClose={onModalClose}>
|
||||||
<ModalHeader>
|
<ModalHeader>
|
||||||
|
@ -308,28 +320,25 @@ class InteractiveImportModalContent extends Component {
|
||||||
<ModalFooter className={styles.footer}>
|
<ModalFooter className={styles.footer}>
|
||||||
<div className={styles.leftButtons}>
|
<div className={styles.leftButtons}>
|
||||||
{
|
{
|
||||||
!downloadId && showImportMode &&
|
!downloadId && showImportMode ?
|
||||||
<SelectInput
|
<SelectInput
|
||||||
className={styles.importMode}
|
className={styles.importMode}
|
||||||
name="importMode"
|
name="importMode"
|
||||||
value={importMode}
|
value={importMode}
|
||||||
values={importModeOptions}
|
values={importModeOptions}
|
||||||
onChange={this.onImportModeChange}
|
onChange={this.onImportModeChange}
|
||||||
/>
|
/> :
|
||||||
}
|
null
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className={styles.centerButtons}>
|
|
||||||
{
|
|
||||||
allowSeriesChange &&
|
|
||||||
<Button onPress={this.onSelectSeriesPress}>
|
|
||||||
Select Series
|
|
||||||
</Button>
|
|
||||||
}
|
}
|
||||||
|
|
||||||
<Button onPress={this.onSelectSeasonPress}>
|
<SelectInput
|
||||||
Select Season
|
className={styles.bulkSelect}
|
||||||
</Button>
|
name="select"
|
||||||
|
value={SELECT}
|
||||||
|
values={bulkSelectOptions}
|
||||||
|
isDisabled={!selectedIds.length}
|
||||||
|
onChange={this.onSelectModalSelect}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={styles.rightButtons}>
|
<div className={styles.rightButtons}>
|
||||||
|
@ -353,16 +362,32 @@ class InteractiveImportModalContent extends Component {
|
||||||
</ModalFooter>
|
</ModalFooter>
|
||||||
|
|
||||||
<SelectSeriesModal
|
<SelectSeriesModal
|
||||||
isOpen={isSelectSeriesModalOpen}
|
isOpen={selectModalOpen === SERIES}
|
||||||
ids={selectedIds}
|
ids={selectedIds}
|
||||||
onModalClose={this.onSelectSeriesModalClose}
|
onModalClose={this.onSelectModalClose}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<SelectSeasonModal
|
<SelectSeasonModal
|
||||||
isOpen={isSelectSeasonModalOpen}
|
isOpen={selectModalOpen === SEASON}
|
||||||
ids={selectedIds}
|
ids={selectedIds}
|
||||||
seriesId={selectedItem && selectedItem.series && selectedItem.series.id}
|
seriesId={selectedItem && selectedItem.series && selectedItem.series.id}
|
||||||
onModalClose={this.onSelectSeasonModalClose}
|
onModalClose={this.onSelectModalClose}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<SelectLanguageModal
|
||||||
|
isOpen={selectModalOpen === LANGUAGE}
|
||||||
|
ids={selectedIds}
|
||||||
|
languageId={0}
|
||||||
|
onModalClose={this.onSelectModalClose}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<SelectQualityModal
|
||||||
|
isOpen={selectModalOpen === QUALITY}
|
||||||
|
ids={selectedIds}
|
||||||
|
qualityId={0}
|
||||||
|
proper={false}
|
||||||
|
real={false}
|
||||||
|
onModalClose={this.onSelectModalClose}
|
||||||
/>
|
/>
|
||||||
</ModalContent>
|
</ModalContent>
|
||||||
);
|
);
|
||||||
|
|
|
@ -328,7 +328,7 @@ class InteractiveImportRow extends Component {
|
||||||
|
|
||||||
<SelectQualityModal
|
<SelectQualityModal
|
||||||
isOpen={isSelectQualityModalOpen}
|
isOpen={isSelectQualityModalOpen}
|
||||||
id={id}
|
ids={[id]}
|
||||||
qualityId={quality ? quality.quality.id : 0}
|
qualityId={quality ? quality.quality.id : 0}
|
||||||
proper={quality ? quality.revision.version > 1 : false}
|
proper={quality ? quality.revision.version > 1 : false}
|
||||||
real={quality ? quality.revision.real > 0 : false}
|
real={quality ? quality.revision.real > 0 : false}
|
||||||
|
@ -337,7 +337,7 @@ class InteractiveImportRow extends Component {
|
||||||
|
|
||||||
<SelectLanguageModal
|
<SelectLanguageModal
|
||||||
isOpen={isSelectLanguageModalOpen}
|
isOpen={isSelectLanguageModalOpen}
|
||||||
id={id}
|
ids={[id]}
|
||||||
languageId={language ? language.id : 0}
|
languageId={language ? language.id : 0}
|
||||||
onModalClose={this.onSelectLanguageModalClose}
|
onModalClose={this.onSelectLanguageModalClose}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -4,7 +4,7 @@ import React, { Component } from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { createSelector } from 'reselect';
|
import { createSelector } from 'reselect';
|
||||||
import { fetchLanguageProfileSchema } from 'Store/Actions/settingsActions';
|
import { fetchLanguageProfileSchema } from 'Store/Actions/settingsActions';
|
||||||
import { updateInteractiveImportItem } from 'Store/Actions/interactiveImportActions';
|
import { updateInteractiveImportItems } from 'Store/Actions/interactiveImportActions';
|
||||||
import SelectLanguageModalContent from './SelectLanguageModalContent';
|
import SelectLanguageModalContent from './SelectLanguageModalContent';
|
||||||
|
|
||||||
function createMapStateToProps() {
|
function createMapStateToProps() {
|
||||||
|
@ -29,8 +29,8 @@ function createMapStateToProps() {
|
||||||
}
|
}
|
||||||
|
|
||||||
const mapDispatchToProps = {
|
const mapDispatchToProps = {
|
||||||
fetchLanguageProfileSchema,
|
dispatchFetchLanguageProfileSchema: fetchLanguageProfileSchema,
|
||||||
updateInteractiveImportItem
|
dispatchUpdateInteractiveImportItems: updateInteractiveImportItems
|
||||||
};
|
};
|
||||||
|
|
||||||
class SelectLanguageModalContentConnector extends Component {
|
class SelectLanguageModalContentConnector extends Component {
|
||||||
|
@ -40,7 +40,7 @@ class SelectLanguageModalContentConnector extends Component {
|
||||||
|
|
||||||
componentDidMount = () => {
|
componentDidMount = () => {
|
||||||
if (!this.props.isPopulated) {
|
if (!this.props.isPopulated) {
|
||||||
this.props.fetchLanguageProfileSchema();
|
this.props.dispatchFetchLanguageProfileSchema();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,8 +52,8 @@ class SelectLanguageModalContentConnector extends Component {
|
||||||
const language = _.find(this.props.items,
|
const language = _.find(this.props.items,
|
||||||
(item) => item.language.id === languageId).language;
|
(item) => item.language.id === languageId).language;
|
||||||
|
|
||||||
this.props.updateInteractiveImportItem({
|
this.props.dispatchUpdateInteractiveImportItems({
|
||||||
id: this.props.id,
|
ids: this.props.ids,
|
||||||
language
|
language
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -74,13 +74,13 @@ class SelectLanguageModalContentConnector extends Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
SelectLanguageModalContentConnector.propTypes = {
|
SelectLanguageModalContentConnector.propTypes = {
|
||||||
id: PropTypes.number.isRequired,
|
ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
||||||
isFetching: PropTypes.bool.isRequired,
|
isFetching: PropTypes.bool.isRequired,
|
||||||
isPopulated: PropTypes.bool.isRequired,
|
isPopulated: PropTypes.bool.isRequired,
|
||||||
error: PropTypes.object,
|
error: PropTypes.object,
|
||||||
items: PropTypes.arrayOf(PropTypes.object).isRequired,
|
items: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||||
fetchLanguageProfileSchema: PropTypes.func.isRequired,
|
dispatchFetchLanguageProfileSchema: PropTypes.func.isRequired,
|
||||||
updateInteractiveImportItem: PropTypes.func.isRequired,
|
dispatchUpdateInteractiveImportItems: PropTypes.func.isRequired,
|
||||||
onModalClose: PropTypes.func.isRequired
|
onModalClose: PropTypes.func.isRequired
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { connect } from 'react-redux';
|
||||||
import { createSelector } from 'reselect';
|
import { createSelector } from 'reselect';
|
||||||
import getQualities from 'Utilities/Quality/getQualities';
|
import getQualities from 'Utilities/Quality/getQualities';
|
||||||
import { fetchQualityProfileSchema } from 'Store/Actions/settingsActions';
|
import { fetchQualityProfileSchema } from 'Store/Actions/settingsActions';
|
||||||
import { updateInteractiveImportItem } from 'Store/Actions/interactiveImportActions';
|
import { updateInteractiveImportItems } from 'Store/Actions/interactiveImportActions';
|
||||||
import SelectQualityModalContent from './SelectQualityModalContent';
|
import SelectQualityModalContent from './SelectQualityModalContent';
|
||||||
|
|
||||||
function createMapStateToProps() {
|
function createMapStateToProps() {
|
||||||
|
@ -30,8 +30,8 @@ function createMapStateToProps() {
|
||||||
}
|
}
|
||||||
|
|
||||||
const mapDispatchToProps = {
|
const mapDispatchToProps = {
|
||||||
fetchQualityProfileSchema,
|
dispatchFetchQualityProfileSchema: fetchQualityProfileSchema,
|
||||||
updateInteractiveImportItem
|
dispatchUpdateInteractiveImportItems: updateInteractiveImportItems
|
||||||
};
|
};
|
||||||
|
|
||||||
class SelectQualityModalContentConnector extends Component {
|
class SelectQualityModalContentConnector extends Component {
|
||||||
|
@ -41,7 +41,7 @@ class SelectQualityModalContentConnector extends Component {
|
||||||
|
|
||||||
componentDidMount = () => {
|
componentDidMount = () => {
|
||||||
if (!this.props.isPopulated) {
|
if (!this.props.isPopulated) {
|
||||||
this.props.fetchQualityProfileSchema();
|
this.props.dispatchFetchQualityProfileSchema();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,8 +57,8 @@ class SelectQualityModalContentConnector extends Component {
|
||||||
real: real ? 1 : 0
|
real: real ? 1 : 0
|
||||||
};
|
};
|
||||||
|
|
||||||
this.props.updateInteractiveImportItem({
|
this.props.dispatchUpdateInteractiveImportItems({
|
||||||
id: this.props.id,
|
ids: this.props.ids,
|
||||||
quality: {
|
quality: {
|
||||||
quality,
|
quality,
|
||||||
revision
|
revision
|
||||||
|
@ -82,13 +82,13 @@ class SelectQualityModalContentConnector extends Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
SelectQualityModalContentConnector.propTypes = {
|
SelectQualityModalContentConnector.propTypes = {
|
||||||
id: PropTypes.number.isRequired,
|
ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
||||||
isFetching: PropTypes.bool.isRequired,
|
isFetching: PropTypes.bool.isRequired,
|
||||||
isPopulated: PropTypes.bool.isRequired,
|
isPopulated: PropTypes.bool.isRequired,
|
||||||
error: PropTypes.object,
|
error: PropTypes.object,
|
||||||
items: PropTypes.arrayOf(PropTypes.object).isRequired,
|
items: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||||
fetchQualityProfileSchema: PropTypes.func.isRequired,
|
dispatchFetchQualityProfileSchema: PropTypes.func.isRequired,
|
||||||
updateInteractiveImportItem: PropTypes.func.isRequired,
|
dispatchUpdateInteractiveImportItems: PropTypes.func.isRequired,
|
||||||
onModalClose: PropTypes.func.isRequired
|
onModalClose: PropTypes.func.isRequired
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -68,6 +68,7 @@ export const persistState = [
|
||||||
export const FETCH_INTERACTIVE_IMPORT_ITEMS = 'interactiveImport/fetchInteractiveImportItems';
|
export const FETCH_INTERACTIVE_IMPORT_ITEMS = 'interactiveImport/fetchInteractiveImportItems';
|
||||||
export const SET_INTERACTIVE_IMPORT_SORT = 'interactiveImport/setInteractiveImportSort';
|
export const SET_INTERACTIVE_IMPORT_SORT = 'interactiveImport/setInteractiveImportSort';
|
||||||
export const UPDATE_INTERACTIVE_IMPORT_ITEM = 'interactiveImport/updateInteractiveImportItem';
|
export const UPDATE_INTERACTIVE_IMPORT_ITEM = 'interactiveImport/updateInteractiveImportItem';
|
||||||
|
export const UPDATE_INTERACTIVE_IMPORT_ITEMS = 'interactiveImport/updateInteractiveImportItems';
|
||||||
export const CLEAR_INTERACTIVE_IMPORT = 'interactiveImport/clearInteractiveImport';
|
export const CLEAR_INTERACTIVE_IMPORT = 'interactiveImport/clearInteractiveImport';
|
||||||
export const ADD_RECENT_FOLDER = 'interactiveImport/addRecentFolder';
|
export const ADD_RECENT_FOLDER = 'interactiveImport/addRecentFolder';
|
||||||
export const REMOVE_RECENT_FOLDER = 'interactiveImport/removeRecentFolder';
|
export const REMOVE_RECENT_FOLDER = 'interactiveImport/removeRecentFolder';
|
||||||
|
@ -83,6 +84,7 @@ export const CLEAR_INTERACTIVE_IMPORT_EPISODES = 'interactiveImport/clearInterac
|
||||||
export const fetchInteractiveImportItems = createThunk(FETCH_INTERACTIVE_IMPORT_ITEMS);
|
export const fetchInteractiveImportItems = createThunk(FETCH_INTERACTIVE_IMPORT_ITEMS);
|
||||||
export const setInteractiveImportSort = createAction(SET_INTERACTIVE_IMPORT_SORT);
|
export const setInteractiveImportSort = createAction(SET_INTERACTIVE_IMPORT_SORT);
|
||||||
export const updateInteractiveImportItem = createAction(UPDATE_INTERACTIVE_IMPORT_ITEM);
|
export const updateInteractiveImportItem = createAction(UPDATE_INTERACTIVE_IMPORT_ITEM);
|
||||||
|
export const updateInteractiveImportItems = createAction(UPDATE_INTERACTIVE_IMPORT_ITEMS);
|
||||||
export const clearInteractiveImport = createAction(CLEAR_INTERACTIVE_IMPORT);
|
export const clearInteractiveImport = createAction(CLEAR_INTERACTIVE_IMPORT);
|
||||||
export const addRecentFolder = createAction(ADD_RECENT_FOLDER);
|
export const addRecentFolder = createAction(ADD_RECENT_FOLDER);
|
||||||
export const removeRecentFolder = createAction(REMOVE_RECENT_FOLDER);
|
export const removeRecentFolder = createAction(REMOVE_RECENT_FOLDER);
|
||||||
|
@ -152,6 +154,23 @@ export const reducers = createHandleActions({
|
||||||
return newState;
|
return newState;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
[UPDATE_INTERACTIVE_IMPORT_ITEMS]: (state, { payload }) => {
|
||||||
|
const ids = payload.ids;
|
||||||
|
const newState = Object.assign({}, state);
|
||||||
|
const items = [...newState.items];
|
||||||
|
|
||||||
|
ids.forEach((id) => {
|
||||||
|
const index = items.findIndex((item) => item.id === id);
|
||||||
|
const item = Object.assign({}, items[index], payload);
|
||||||
|
|
||||||
|
items.splice(index, 1, item);
|
||||||
|
});
|
||||||
|
|
||||||
|
newState.items = items;
|
||||||
|
|
||||||
|
return newState;
|
||||||
|
},
|
||||||
|
|
||||||
[ADD_RECENT_FOLDER]: function(state, { payload }) {
|
[ADD_RECENT_FOLDER]: function(state, { payload }) {
|
||||||
const folder = payload.folder;
|
const folder = payload.folder;
|
||||||
const recentFolder = { folder, lastUsed: moment().toISOString() };
|
const recentFolder = { folder, lastUsed: moment().toISOString() };
|
||||||
|
|
Loading…
Reference in New Issue