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

Refactor Redux in FileNode.jsx #3385

Closed
Closed
Show file tree
Hide file tree
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
52 changes: 18 additions & 34 deletions client/modules/IDE/components/FileNode.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import PropTypes from 'prop-types';
import classNames from 'classnames';
import React, { useState, useRef } from 'react';
import { connect } from 'react-redux';
import { useDispatch, useSelector } from 'react-redux';
import { useTranslation } from 'react-i18next';

import * as IDEActions from '../actions/ide';
import * as FileActions from '../actions/files';
import DownArrowIcon from '../../../images/down-filled-triangle.svg';
import FolderRightIcon from '../../../images/triangle-arrow-right.svg';
import FolderDownIcon from '../../../images/triangle-arrow-down.svg';
Expand Down Expand Up @@ -66,7 +64,7 @@
id,
parentId,
children,
name,
name = 'default',
fileType,
isSelectedFile,
isFolderClosed,
Expand All @@ -80,22 +78,30 @@
hideFolderChildren,
canEdit,
openUploadFileModal,
authenticated,
onClickFile
}) => {
const [isOptionsOpen, setIsOptionsOpen] = useState(false);
const [isEditingName, setIsEditingName] = useState(false);
const [isDeleting, setIsDeleting] = useState(false);

Check warning on line 85 in client/modules/IDE/components/FileNode.jsx

View workflow job for this annotation

GitHub Actions / Test and lint code base

'setIsDeleting' is assigned a value but never used
const [updatedName, setUpdatedName] = useState(name);

const { t } = useTranslation();
const fileNameInput = useRef(null);
const fileOptionsRef = useRef(null);
const dispatch = useDispatch();
const fileNode = useSelector(

Check warning on line 92 in client/modules/IDE/components/FileNode.jsx

View workflow job for this annotation

GitHub Actions / Test and lint code base

'fileNode' is assigned a value but never used
(state) =>
state.files.find((file) => file.id === id) || {
name: 'test',
fileType: 'file'
}
);
const authenticated = useSelector((state) => state.user.authenticated);

const handleFileClick = (event) => {
event.stopPropagation();
if (name !== 'root' && !isDeleting) {
setSelectedFile(id);
dispatch(setSelectedFile(id));
}
if (onClickFile) {
onClickFile();
Expand All @@ -116,6 +122,7 @@

const handleClickRename = () => {
setUpdatedName(name);
setIsEditingName(true);
showEditFileName();
setTimeout(() => fileNameInput.current.focus(), 0);
setTimeout(() => hideFileOptions(), 0);
Expand All @@ -137,12 +144,9 @@
};

const handleClickDelete = () => {
const prompt = t('Common.DeleteConfirmation', { name });

if (window.confirm(prompt)) {
setIsDeleting(true);
resetSelectedFile(id);
setTimeout(() => deleteFile(id, parentId), 100);
if (window.confirm(t('Common.DeleteConfirmation', { name }))) {
dispatch(resetSelectedFile(id));
setTimeout(() => dispatch(deleteFile({ id, parentId })), 100);
}
};

Expand Down Expand Up @@ -354,7 +358,7 @@
<ul className="file-item__children">
{children.map((childId) => (
<li key={childId}>
<ConnectedFileNode
<FileNode
id={childId}
parentId={id}
canEdit={canEdit}
Expand Down Expand Up @@ -386,7 +390,6 @@
hideFolderChildren: PropTypes.func.isRequired,
canEdit: PropTypes.bool.isRequired,
openUploadFileModal: PropTypes.func.isRequired,
authenticated: PropTypes.bool.isRequired,
onClickFile: PropTypes.func
};

Expand All @@ -397,23 +400,4 @@
isFolderClosed: false
};

function mapStateToProps(state, ownProps) {
// this is a hack, state is updated before ownProps
const fileNode = state.files.find((file) => file.id === ownProps.id) || {
name: 'test',
fileType: 'file'
};
return Object.assign({}, fileNode, {
authenticated: state.user.authenticated
});
}

const mapDispatchToProps = { ...FileActions, ...IDEActions };

const ConnectedFileNode = connect(
mapStateToProps,
mapDispatchToProps
)(FileNode);

export { FileNode };
export default ConnectedFileNode;
export default FileNode;
20 changes: 16 additions & 4 deletions client/modules/IDE/components/FileNode.unit.test.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
import React from 'react';

import { Provider } from 'react-redux';
import { configureStore } from '@reduxjs/toolkit';
import {
fireEvent,
render,
screen,
waitFor,
within
} from '../../../test-utils';
import { FileNode } from './FileNode';

import FileNode from './FileNode';

const store = configureStore({
reducer: {
files: () => [],
user: () => ({ authenticated: false })
}
});

describe('<FileNode />', () => {
const changeName = (newFileName) => {
Expand Down Expand Up @@ -45,8 +54,11 @@ describe('<FileNode />', () => {
setProjectName: jest.fn()
};

render(<FileNode {...props} />);

render(
<Provider store={store}>
<FileNode {...props} />
</Provider>
);
return props;
};

Expand Down