X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c3efa27ba09323568c2b7d2cd27911fe4937ccbc..92a7124fa9784501e320f97a68f72aca0632732e:/src/views/project-panel/project-panel.tsx diff --git a/src/views/project-panel/project-panel.tsx b/src/views/project-panel/project-panel.tsx index df9721fd..c1d66603 100644 --- a/src/views/project-panel/project-panel.tsx +++ b/src/views/project-panel/project-panel.tsx @@ -3,123 +3,245 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; +import { ProjectPanelItem } from './project-panel-item'; +import { Grid, Typography, Button, Toolbar, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core'; +import { formatDate, formatFileSize } from '../../common/formatters'; +import DataExplorer from "../../views-components/data-explorer/data-explorer"; +import { ContextMenuAction } from '../../components/context-menu/context-menu'; +import { DispatchProp, connect } from 'react-redux'; +import { DataColumns } from '../../components/data-table/data-table'; import { RouteComponentProps } from 'react-router'; -import { ProjectState } from '../../store/project/project-reducer'; import { RootState } from '../../store/store'; -import { connect, DispatchProp } from 'react-redux'; -import { CollectionState } from "../../store/collection/collection-reducer"; -import { ItemMode, setProjectItem } from "../../store/navigation/navigation-action"; -import ProjectExplorer from "../../views-components/project-explorer/project-explorer"; -import { projectExplorerItems } from "./project-panel-selectors"; -import { ProjectExplorerItem } from "../../views-components/project-explorer/project-explorer-item"; -import { Button, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core'; -import { DataColumn, SortDirection } from '../../components/data-table/data-column'; +import { ResourceKind } from '../../models/kinds'; import { DataTableFilterItem } from '../../components/data-table-filters/data-table-filters'; +import { ContainerRequestState } from '../../models/container-request'; +import { SortDirection } from '../../components/data-table/data-column'; -interface ProjectPanelDataProps { - projects: ProjectState; - collections: CollectionState; -} - -type ProjectPanelProps = ProjectPanelDataProps & RouteComponentProps<{ name: string }> & DispatchProp; +export const PROJECT_PANEL_ID = "projectPanel"; -interface ProjectPanelState { - sort: { - columnName: string; - direction: SortDirection; - }; - filters: string[]; +export interface ProjectPanelFilter extends DataTableFilterItem { + type: ResourceKind | ContainerRequestState; } -class ProjectPanel extends React.Component, ProjectPanelState> { - state: ProjectPanelState = { - sort: { - columnName: "Name", - direction: "desc" - }, - filters: ['collection', 'project'] - }; - +type ProjectPanelProps = { + currentItemId: string, + onItemClick: (item: ProjectPanelItem) => void, + onItemRouteChange: (itemId: string) => void +} + & DispatchProp + & WithStyles + & RouteComponentProps<{ id: string }>; +class ProjectPanel extends React.Component { render() { - const items = projectExplorerItems( - this.props.projects.items, - this.props.projects.currentItemId, - this.props.collections - ); - const [goBackItem, ...otherItems] = items; - const filteredItems = otherItems.filter(i => this.state.filters.some(f => f === i.kind)); - const sortedItems = sortItems(this.state.sort, filteredItems); - return ( -
-
- - - -
- + return
+
+ + +
- ); + ; +
; } - goToItem = (item: ProjectExplorerItem) => { - this.props.dispatch(setProjectItem(this.props.projects.items, item.uuid, item.kind, ItemMode.BOTH)); + componentWillReceiveProps({ match, currentItemId }: ProjectPanelProps) { + if (match.params.id !== currentItemId) { + this.props.onItemRouteChange(match.params.id); + } } - toggleSort = (column: DataColumn) => { - this.setState({ - sort: { - columnName: column.name, - direction: column.sortDirection || "none" - } - }); + executeAction = (action: ContextMenuAction, item: ProjectPanelItem) => { + alert(`Executing ${action.name} on ${item.name}`); } - changeFilters = (filters: DataTableFilterItem[]) => { - this.setState({ filters: filters.filter(f => f.selected).map(f => f.name.toLowerCase()) }); - } } -const sortItems = (sort: { columnName: string, direction: SortDirection }, items: ProjectExplorerItem[]) => { - const sortedItems = items.slice(0); - const direction = sort.direction === "asc" ? -1 : 1; - sortedItems.sort((a, b) => { - if (sort.columnName === "Last modified") { - return ((new Date(a.lastModified)).getTime() - (new Date(b.lastModified)).getTime()) * direction; - } else { - return a.name.localeCompare(b.name) * direction; - } - }); - return sortedItems; -}; - type CssRules = "toolbar" | "button"; const styles: StyleRulesCallback = theme => ({ toolbar: { - marginBottom: theme.spacing.unit * 3, - display: "flex", - justifyContent: "flex-end" + paddingBottom: theme.spacing.unit * 3, + textAlign: "right" }, button: { marginLeft: theme.spacing.unit } }); +const renderName = (item: ProjectPanelItem) => + + + {renderIcon(item)} + + + + {item.name} + + + ; + + +const renderIcon = (item: ProjectPanelItem) => { + switch (item.kind) { + case ResourceKind.Project: + return ; + case ResourceKind.Collection: + return ; + case ResourceKind.Process: + return ; + default: + return ; + } +}; + +const renderDate = (date: string) => + + {formatDate(date)} + ; + +const renderFileSize = (fileSize?: number) => + + {formatFileSize(fileSize)} + ; + +const renderOwner = (owner: string) => + + {owner} + ; + + + +const typeToLabel = (type: string) => { + switch (type) { + case ResourceKind.Collection: + return "Data collection"; + case ResourceKind.Project: + return "Project"; + case ResourceKind.Process: + return "Process"; + default: + return "Unknown"; + } +}; + +const renderType = (type: string) => { + return + {typeToLabel(type)} + ; +}; + +const renderStatus = (item: ProjectPanelItem) => + + {item.status || "-"} + ; + +export enum ProjectPanelColumnNames { + Name = "Name", + Status = "Status", + Type = "Type", + Owner = "Owner", + FileSize = "File size", + LastModified = "Last modified" + +} + +export const columns: DataColumns = [{ + name: ProjectPanelColumnNames.Name, + selected: true, + sortDirection: SortDirection.Asc, + render: renderName, + width: "450px" +}, { + name: "Status", + selected: true, + filters: [{ + name: ContainerRequestState.Committed, + selected: true, + type: ContainerRequestState.Committed + }, { + name: ContainerRequestState.Final, + selected: true, + type: ContainerRequestState.Final + }, { + name: ContainerRequestState.Uncommitted, + selected: true, + type: ContainerRequestState.Uncommitted + }], + render: renderStatus, + width: "75px" +}, { + name: ProjectPanelColumnNames.Type, + selected: true, + filters: [{ + name: typeToLabel(ResourceKind.Collection), + selected: true, + type: ResourceKind.Collection + }, { + name: typeToLabel(ResourceKind.Process), + selected: true, + type: ResourceKind.Process + }, { + name: typeToLabel(ResourceKind.Project), + selected: true, + type: ResourceKind.Project + }], + render: item => renderType(item.kind), + width: "125px" +}, { + name: ProjectPanelColumnNames.Owner, + selected: true, + render: item => renderOwner(item.owner), + width: "200px" +}, { + name: ProjectPanelColumnNames.FileSize, + selected: true, + render: item => renderFileSize(item.fileSize), + width: "50px" +}, { + name: ProjectPanelColumnNames.LastModified, + selected: true, + sortDirection: SortDirection.None, + render: item => renderDate(item.lastModified), + width: "150px" +}]; + +const 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" +} +]]; + export default withStyles(styles)( - connect( - (state: RootState) => ({ - projects: state.projects, - collections: state.collections - }) - )(ProjectPanel)); + connect((state: RootState) => ({ currentItemId: state.projects.currentItemId }))( + ProjectPanel));