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

Revert "Fix Console Errors and Update Hooks in FileNode" #3290

Merged
merged 1 commit into from
Dec 3, 2024
Merged
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
4 changes: 1 addition & 3 deletions client/modules/IDE/components/ConsoleInput.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import PropTypes from 'prop-types';
import React, { useRef, useEffect, useState } from 'react';
import { useDispatch } from 'react-redux';
import CodeMirror from 'codemirror';
import { Encode } from 'console-feed';

Expand All @@ -16,7 +15,6 @@ function ConsoleInput({ theme, fontSize }) {
const [commandCursor, setCommandCursor] = useState(-1);
const codemirrorContainer = useRef(null);
const cmInstance = useRef(null);
const dispatch = useDispatch();

useEffect(() => {
cmInstance.current = CodeMirror(codemirrorContainer.current, {
Expand Down Expand Up @@ -47,7 +45,7 @@ function ConsoleInput({ theme, fontSize }) {
payload: { source: 'console', messages }
});

dispatch(dispatchConsoleEvent(consoleEvent));
dispatchConsoleEvent(consoleEvent);
cm.setValue('');
setCommandHistory([value, ...commandHistory]);
setCommandCursor(-1);
Expand Down
131 changes: 100 additions & 31 deletions client/modules/IDE/components/FileNode.jsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,43 @@
import PropTypes from 'prop-types';
import classNames from 'classnames';
import React, { useState, useRef } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { connect } from 'react-redux';
import { useTranslation } from 'react-i18next';

import * as IDEActions from '../actions/ide';
import * as FileActions from '../actions/files';
import parseFileName from '../utils/parseFileName';
import DownArrowIcon from '../../../images/down-filled-triangle.svg';
import FolderRightIcon from '../../../images/triangle-arrow-right.svg';
import FolderDownIcon from '../../../images/triangle-arrow-down.svg';
import FileTypeIcon from './FileTypeIcon';

function parseFileName(name) {
const nameArray = name.split('.');
if (nameArray.length > 1) {
const extension = `.${nameArray[nameArray.length - 1]}`;
const baseName = nameArray.slice(0, -1).join('.');
const firstLetter = baseName[0];
const lastLetter = baseName[baseName.length - 1];
const middleText = baseName.slice(1, -1);
return {
baseName,
firstLetter,
lastLetter,
middleText,
extension
};
}
const firstLetter = name[0];
const lastLetter = name[name.length - 1];
const middleText = name.slice(1, -1);
return {
baseName: name,
firstLetter,
lastLetter,
middleText
};
}

function FileName({ name }) {
const {
baseName,
Expand All @@ -36,35 +62,40 @@ FileName.propTypes = {
name: PropTypes.string.isRequired
};

const FileNode = ({ id, canEdit, onClickFile }) => {
const dispatch = useDispatch();
const { t } = useTranslation();

const fileNode =
useSelector((state) => state.files.find((file) => file.id === id)) || {};
const authenticated = useSelector((state) => state.user.authenticated);

const {
name = '',
parentId = null,
children = [],
fileType = 'file',
isSelectedFile = false,
isFolderClosed = false
} = fileNode;

const FileNode = ({
id,
parentId,
children,
name,
fileType,
isSelectedFile,
isFolderClosed,
setSelectedFile,
deleteFile,
updateFileName,
resetSelectedFile,
newFile,
newFolder,
showFolderChildren,
hideFolderChildren,
canEdit,
openUploadFileModal,
authenticated,
onClickFile
}) => {
const [isOptionsOpen, setIsOptionsOpen] = useState(false);
const [isEditingName, setIsEditingName] = useState(false);
const [isDeleting, setIsDeleting] = useState(false);
const [updatedName, setUpdatedName] = useState(name);

const { t } = useTranslation();
const fileNameInput = useRef(null);
const fileOptionsRef = useRef(null);

const handleFileClick = (event) => {
event.stopPropagation();
if (name !== 'root' && !isDeleting) {
dispatch(IDEActions.setSelectedFile(id));
setSelectedFile(id);
}
if (onClickFile) {
onClickFile();
Expand All @@ -91,17 +122,17 @@ const FileNode = ({ id, canEdit, onClickFile }) => {
};

const handleClickAddFile = () => {
dispatch(IDEActions.newFile(id));
newFile(id);
setTimeout(() => hideFileOptions(), 0);
};

const handleClickAddFolder = () => {
dispatch(IDEActions.newFolder(id));
newFolder(id);
setTimeout(() => hideFileOptions(), 0);
};

const handleClickUploadFile = () => {
dispatch(IDEActions.openUploadFileModal(id));
openUploadFileModal(id);
setTimeout(hideFileOptions, 0);
};

Expand All @@ -110,8 +141,8 @@ const FileNode = ({ id, canEdit, onClickFile }) => {

if (window.confirm(prompt)) {
setIsDeleting(true);
dispatch(IDEActions.resetSelectedFile(id));
setTimeout(() => dispatch(FileActions.deleteFile(id, parentId), 100));
resetSelectedFile(id);
setTimeout(() => deleteFile(id, parentId), 100);
}
};

Expand All @@ -127,7 +158,7 @@ const FileNode = ({ id, canEdit, onClickFile }) => {

const saveUpdatedFileName = () => {
if (updatedName !== name) {
dispatch(FileActions.updateFileName(id, updatedName));
updateFileName(id, updatedName);
}
};

Expand Down Expand Up @@ -212,7 +243,7 @@ const FileNode = ({ id, canEdit, onClickFile }) => {
<div className="sidebar__file-item--folder">
<button
className="sidebar__file-item-closed"
onClick={() => dispatch(FileActions.showFolderChildren(id))}
onClick={() => showFolderChildren(id)}
aria-label={t('FileNode.OpenFolderARIA')}
title={t('FileNode.OpenFolderARIA')}
>
Expand All @@ -224,7 +255,7 @@ const FileNode = ({ id, canEdit, onClickFile }) => {
</button>
<button
className="sidebar__file-item-open"
onClick={() => dispatch(FileActions.hideFolderChildren(id))}
onClick={() => hideFolderChildren(id)}
aria-label={t('FileNode.CloseFolderARIA')}
title={t('FileNode.CloseFolderARIA')}
>
Expand Down Expand Up @@ -322,7 +353,7 @@ const FileNode = ({ id, canEdit, onClickFile }) => {
<ul className="file-item__children">
{children.map((childId) => (
<li key={childId}>
<FileNode
<ConnectedFileNode
id={childId}
parentId={id}
canEdit={canEdit}
Expand All @@ -338,12 +369,50 @@ const FileNode = ({ id, canEdit, onClickFile }) => {

FileNode.propTypes = {
id: PropTypes.string.isRequired,
parentId: PropTypes.string,
children: PropTypes.arrayOf(PropTypes.string.isRequired).isRequired,
name: PropTypes.string.isRequired,
fileType: PropTypes.string.isRequired,
isSelectedFile: PropTypes.bool,
isFolderClosed: PropTypes.bool,
setSelectedFile: PropTypes.func.isRequired,
deleteFile: PropTypes.func.isRequired,
updateFileName: PropTypes.func.isRequired,
resetSelectedFile: PropTypes.func.isRequired,
newFile: PropTypes.func.isRequired,
newFolder: PropTypes.func.isRequired,
showFolderChildren: PropTypes.func.isRequired,
hideFolderChildren: PropTypes.func.isRequired,
canEdit: PropTypes.bool.isRequired,
openUploadFileModal: PropTypes.func.isRequired,
authenticated: PropTypes.bool.isRequired,
onClickFile: PropTypes.func
};

FileNode.defaultProps = {
onClickFile: null
onClickFile: null,
parentId: '0',
isSelectedFile: false,
isFolderClosed: false
};

export default FileNode;
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;
Loading
Loading