import PropTypes from 'prop-types'; import React from 'react'; import { bindActionCreators } from 'redux'; import { connect } from 'react-redux'; import classNames from 'classnames'; 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'; import FileIcon from '../../../images/file.svg'; export class FileNode extends React.Component { constructor(props) { super(props); this.state = { isOptionsOpen: false, isEditingName: false, isFocused: false, isDeleting: false, updatedName: this.props.name }; } onFocusComponent = () => { this.setState({ isFocused: true }); } onBlurComponent = () => { this.setState({ isFocused: false }); setTimeout(() => { if (!this.state.isFocused) { this.hideFileOptions(); } }, 200); } setUpdatedName = (updatedName) => { this.setState({ updatedName }); } saveUpdatedFileName = () => { const { updatedName } = this.state; const { name, updateFileName, id } = this.props; if (updatedName !== name) { updateFileName(id, updatedName); } } handleFileClick = (event) => { event.stopPropagation(); const { isDeleting } = this.state; const { id, setSelectedFile, name } = this.props; if (name !== 'root' && !isDeleting) { setSelectedFile(id); } } handleFileNameChange = (event) => { const newName = event.target.value; this.setUpdatedName(newName); } handleFileNameBlur = () => { this.validateFileName(); this.hideEditFileName(); } handleClickRename = () => { this.setUpdatedName(this.props.name); this.showEditFileName(); setTimeout(() => this.fileNameInput.focus(), 0); setTimeout(() => this.hideFileOptions(), 0); } handleClickAddFile = () => { this.props.newFile(this.props.id); setTimeout(() => this.hideFileOptions(), 0); } handleClickAddFolder = () => { this.props.newFolder(this.props.id); setTimeout(() => this.hideFileOptions(), 0); } handleClickUploadFile = () => { this.props.openUploadFileModal(this.props.id); setTimeout(this.hideFileOptions, 0); } handleClickDelete = () => { if (window.confirm(`Are you sure you want to delete ${this.props.name}?`)) { this.setState({ isDeleting: true }); this.props.resetSelectedFile(this.props.id); setTimeout(() => this.props.deleteFile(this.props.id, this.props.parentId), 100); } } handleKeyPress = (event) => { if (event.key === 'Enter') { this.hideEditFileName(); } } validateFileName = () => { const currentName = this.props.name; const { updatedName } = this.state; const oldFileExtension = currentName.match(/\.[0-9a-z]+$/i); const newFileExtension = updatedName.match(/\.[0-9a-z]+$/i); const hasPeriod = updatedName.match(/\.+/); const hasNoExtension = oldFileExtension && !newFileExtension; const hasExtensionIfFolder = this.props.fileType === 'folder' && hasPeriod; const notSameExtension = oldFileExtension && newFileExtension && oldFileExtension[0].toLowerCase() !== newFileExtension[0].toLowerCase(); const hasEmptyFilename = updatedName.trim() === ''; const hasOnlyExtension = newFileExtension && updatedName.trim() === newFileExtension[0]; if (hasEmptyFilename || hasNoExtension || notSameExtension || hasOnlyExtension || hasExtensionIfFolder) { this.setUpdatedName(currentName); } else { this.saveUpdatedFileName(); } } toggleFileOptions = (event) => { event.preventDefault(); if (!this.props.canEdit) { return; } if (this.state.isOptionsOpen) { this.setState({ isOptionsOpen: false }); } else { this[`fileOptions-${this.props.id}`].focus(); this.setState({ isOptionsOpen: true }); } } hideFileOptions = () => { this.setState({ isOptionsOpen: false }); } showEditFileName = () => { this.setState({ isEditingName: true }); } hideEditFileName = () => { this.setState({ isEditingName: false }); } showFolderChildren = () => { this.props.showFolderChildren(this.props.id); } hideFolderChildren = () => { this.props.hideFolderChildren(this.props.id); } renderChild = childId => (
  • ) render() { const itemClass = classNames({ 'sidebar__root-item': this.props.name === 'root', 'sidebar__file-item': this.props.name !== 'root', 'sidebar__file-item--selected': this.props.isSelectedFile, 'sidebar__file-item--open': this.state.isOptionsOpen, 'sidebar__file-item--editing': this.state.isEditingName, 'sidebar__file-item--closed': this.props.isFolderClosed }); const isFile = this.props.fileType === 'file'; const isFolder = this.props.fileType === 'folder'; const isRoot = this.props.name === 'root'; return (
    { !isRoot &&
    { isFile && } { isFolder &&
    } { this.fileNameInput = element; }} onBlur={this.handleFileNameBlur} onKeyPress={this.handleKeyPress} />
      { isFolder &&
    • { this.props.authenticated &&
    • }
      }
    } { this.props.children && }
    ); } } 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 }; FileNode.defaultProps = { parentId: '0', isSelectedFile: false, 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 }); } function mapDispatchToProps(dispatch) { return bindActionCreators(Object.assign(FileActions, IDEActions), dispatch); } const ConnectedFileNode = connect(mapStateToProps, mapDispatchToProps)(FileNode); export default ConnectedFileNode;