Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refractor Redux in CollectionList.jsx #3389

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 20 additions & 65 deletions client/modules/IDE/components/CollectionList/CollectionList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,31 @@ import PropTypes from 'prop-types';
import React, { useEffect, useState, useMemo } from 'react';
import { Helmet } from 'react-helmet';
import { useTranslation } from 'react-i18next';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import { useSelector, useDispatch } from 'react-redux';
import classNames from 'classnames';
import { find } from 'lodash';
import * as ProjectActions from '../../actions/project';
import * as ProjectsActions from '../../actions/projects';
import * as CollectionsActions from '../../actions/collections';
import * as ToastActions from '../../actions/toast';
import * as SortingActions from '../../actions/sorting';
import getSortedCollections from '../../selectors/collections';
import Loader from '../../../App/components/loader';
import Overlay from '../../../App/components/Overlay';
import AddToCollectionSketchList from '../AddToCollectionSketchList';
import { SketchSearchbar } from '../Searchbar';

import CollectionListRow from './CollectionListRow';

import ArrowUpIcon from '../../../../images/sort-arrow-up.svg';
import ArrowDownIcon from '../../../../images/sort-arrow-down.svg';
import * as ProjectsActions from '../../actions/projects';
import * as ToastActions from '../../actions/toast';

const CollectionList = ({
user,
projectId,
getCollections,
getProject,
collections,
username: propsUsername,
loading,
toggleDirectionForField,
resetSorting,
sorting,
project,
mobile
}) => {
const CollectionList = ({ projectId, username: propsUsername, mobile }) => {
const dispatch = useDispatch();
const { t } = useTranslation();
const user = useSelector((state) => state.user);
const collections = useSelector((state) => getSortedCollections(state));
const sorting = useSelector((state) => state.sorting);
const loading = useSelector((state) => state.loading);
const project = useSelector((state) => state.project);
const [hasLoadedData, setHasLoadedData] = useState(false);
const [
addingSketchesToCollectionId,
Expand All @@ -45,11 +35,13 @@ const CollectionList = ({

useEffect(() => {
if (projectId) {
getProject(projectId);
dispatch(ProjectActions.getProject(projectId));
}
getCollections(propsUsername || user.username);
resetSorting();
}, []);
dispatch(CollectionsActions.getCollections(propsUsername || user.username));
dispatch(SortingActions.resetSorting());
dispatch(ProjectsActions.getProjects(propsUsername || user.username));
dispatch(ToastActions.showToast('Collections loaded successfully!'));
}, [dispatch, projectId, propsUsername, user.username]);

useEffect(() => {
if (!loading) {
Expand Down Expand Up @@ -124,7 +116,9 @@ const CollectionList = ({
<th scope="col">
<button
className="sketch-list__sort-button"
onClick={() => toggleDirectionForField(fieldName)}
onClick={() =>
dispatch(SortingActions.toggleDirectionForField(fieldName))
}
aria-label={buttonLabel}
>
<span className={headerClass}>{displayName}</span>
Expand Down Expand Up @@ -223,21 +217,7 @@ CollectionList.propTypes = {
authenticated: PropTypes.bool.isRequired
}).isRequired,
projectId: PropTypes.string,
getCollections: PropTypes.func.isRequired,
getProject: PropTypes.func.isRequired,
collections: PropTypes.arrayOf(
PropTypes.shape({
id: PropTypes.string.isRequired,
name: PropTypes.string.isRequired,
description: PropTypes.string,
createdAt: PropTypes.string.isRequired,
updatedAt: PropTypes.string.isRequired
})
).isRequired,
username: PropTypes.string,
loading: PropTypes.bool.isRequired,
toggleDirectionForField: PropTypes.func.isRequired,
resetSorting: PropTypes.func.isRequired,
sorting: PropTypes.shape({
field: PropTypes.string.isRequired,
direction: PropTypes.string.isRequired
Expand All @@ -261,29 +241,4 @@ CollectionList.defaultProps = {
mobile: false
};

function mapStateToProps(state, ownProps) {
return {
user: state.user,
collections: getSortedCollections(state),
sorting: state.sorting,
loading: state.loading,
project: state.project,
projectId: ownProps && ownProps.params ? ownProps.params.project_id : null
};
}

function mapDispatchToProps(dispatch) {
return bindActionCreators(
Object.assign(
{},
CollectionsActions,
ProjectsActions,
ProjectActions,
ToastActions,
SortingActions
),
dispatch
);
}

export default connect(mapStateToProps, mapDispatchToProps)(CollectionList);
export default CollectionList;