// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { ProjectExplorerItem } from './project-explorer-item'; import { Grid, Typography } from '@material-ui/core'; import { formatDate, formatFileSize } from '../../common/formatters'; import DataExplorer from '../data-explorer/data-explorer'; import { DataColumn, toggleSortDirection, resetSortDirection } from '../../components/data-table/data-column'; import { DataTableFilterItem } from '../../components/data-table-filters/data-table-filters'; import { ContextMenuAction } from '../../components/context-menu/context-menu'; import { DispatchProp, connect } from 'react-redux'; import actions from "../../store/data-explorer/data-explorer-action"; export const PROJECT_EXPLORER_ID = "projectExplorer"; class ProjectExplorer extends React.Component { contextMenuActions = [[{ icon: "fas fa-users fa-fw", name: "Share" }, { icon: "fas fa-sign-out-alt fa-fw", name: "Move to" }, { icon: "fas fa-star fa-fw", name: "Add to favourite" }, { icon: "fas fa-edit fa-fw", name: "Rename" }, { icon: "fas fa-copy fa-fw", name: "Make a copy" }, { icon: "fas fa-download fa-fw", name: "Download" }], [{ icon: "fas fa-trash-alt fa-fw", name: "Remove" } ]]; render() { return ; } componentDidMount() { this.props.dispatch(actions.SET_COLUMNS({ id: PROJECT_EXPLORER_ID, columns })); } toggleColumn = (toggledColumn: DataColumn) => { this.props.dispatch(actions.TOGGLE_COLUMN({ id: PROJECT_EXPLORER_ID, columnName: toggledColumn.name })); } toggleSort = (toggledColumn: DataColumn) => { this.props.dispatch(actions.TOGGLE_SORT({ id: PROJECT_EXPLORER_ID, columnName: toggledColumn.name })); } changeFilters = (filters: DataTableFilterItem[], updatedColumn: DataColumn) => { this.props.dispatch(actions.SET_FILTERS({ id: PROJECT_EXPLORER_ID, columnName: updatedColumn.name, filters })); } executeAction = (action: ContextMenuAction, item: ProjectExplorerItem) => { alert(`Executing ${action.name} on ${item.name}`); } search = (searchValue: string) => { this.props.dispatch(actions.SET_SEARCH_VALUE({ id: PROJECT_EXPLORER_ID, searchValue })); } changePage = (page: number) => { this.props.dispatch(actions.SET_PAGE({ id: PROJECT_EXPLORER_ID, page })); } changeRowsPerPage = (rowsPerPage: number) => { this.props.dispatch(actions.SET_ROWS_PER_PAGE({ id: PROJECT_EXPLORER_ID, rowsPerPage })); } } const renderName = (item: ProjectExplorerItem) => {renderIcon(item)} {item.name} ; const renderIcon = (item: ProjectExplorerItem) => { switch (item.type) { case "arvados#group": return ; case "arvados#groupList": return ; default: return ; } }; const renderDate = (date: string) => {formatDate(date)} ; const renderFileSize = (fileSize?: number) => {formatFileSize(fileSize)} ; const renderOwner = (owner: string) => {owner} ; const renderType = (type: string) => {type} ; const renderStatus = (item: ProjectExplorerItem) => {item.status || "-"} ; const columns: Array> = [{ name: "Name", selected: true, sortDirection: "asc", render: renderName }, { name: "Status", selected: true, filters: [{ name: "In progress", selected: true }, { name: "Complete", selected: true }], render: renderStatus }, { name: "Type", selected: true, filters: [{ name: "Collection", selected: true }, { name: "Group", selected: true }], render: item => renderType(item.type) }, { name: "Owner", selected: true, render: item => renderOwner(item.owner) }, { name: "File size", selected: true, sortDirection: "none", render: item => renderFileSize(item.fileSize) }, { name: "Last modified", selected: true, render: item => renderDate(item.lastModified) }]; export default connect()(ProjectExplorer);