X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2953c96ede69c1d518ae05f1a57239aad951d0e7..711d39ce13e6662e7823485f13a6e94a748cecf8:/src/views/favorite-panel/favorite-panel.tsx diff --git a/src/views/favorite-panel/favorite-panel.tsx b/src/views/favorite-panel/favorite-panel.tsx index 6f4cedbac0..92d8c39281 100644 --- a/src/views/favorite-panel/favorite-panel.tsx +++ b/src/views/favorite-panel/favorite-panel.tsx @@ -4,8 +4,7 @@ import * as React from 'react'; import { FavoritePanelItem } from './favorite-panel-item'; -import { Grid, Typography, Button, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core'; -import { formatDate, formatFileSize } from '../../common/formatters'; +import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core'; import { DataExplorer } from "../../views-components/data-explorer/data-explorer"; import { DispatchProp, connect } from 'react-redux'; import { DataColumns } from '../../components/data-table/data-table'; @@ -16,9 +15,9 @@ import { ContainerRequestState } from '../../models/container-request'; import { SortDirection } from '../../components/data-table/data-column'; import { ResourceKind } from '../../models/resource'; import { resourceLabel } from '../../common/labels'; -import { ProjectIcon, CollectionIcon, ProcessIcon, DefaultIcon } from '../../components/icon/icon'; import { ArvadosTheme } from '../../common/custom-theme'; -import { FavoriteStar } from "../../views-components/favorite-star/favorite-star"; +import { renderName, renderStatus, renderType, renderOwner, renderFileSize, renderDate } from '../../views-components/data-explorer/renderers'; +import { FAVORITE_PANEL_ID } from "../../store/favorite-panel/favorite-panel-action"; type CssRules = "toolbar" | "button"; @@ -32,61 +31,6 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, }); -const renderName = (item: FavoritePanelItem) => - - - {renderIcon(item)} - - - - {item.name} - - - - - - - - ; - - -const renderIcon = (item: FavoritePanelItem) => { - switch (item.kind) { - case ResourceKind.Project: - return ; - case ResourceKind.Collection: - return ; - case ResourceKind.Process: - return ; - default: - return ; - } -}; - -const renderDate = (date: string) => { - return {formatDate(date)}; -}; - -const renderFileSize = (fileSize?: number) => - - {formatFileSize(fileSize)} - ; - -const renderOwner = (owner: string) => - - {owner} - ; - -const renderType = (type: string) => - - {resourceLabel(type)} - ; - -const renderStatus = (item: FavoritePanelItem) => - - {item.status || "-"} - ; - export enum FavoritePanelColumnNames { NAME = "Name", STATUS = "Status", @@ -104,28 +48,30 @@ export const columns: DataColumns = [ { name: FavoritePanelColumnNames.NAME, selected: true, - sortDirection: SortDirection.Asc, + configurable: true, + sortDirection: SortDirection.ASC, render: renderName, width: "450px" }, { name: "Status", selected: true, + configurable: true, filters: [ { - name: ContainerRequestState.Committed, + name: ContainerRequestState.COMMITTED, selected: true, - type: ContainerRequestState.Committed + type: ContainerRequestState.COMMITTED }, { - name: ContainerRequestState.Final, + name: ContainerRequestState.FINAL, selected: true, - type: ContainerRequestState.Final + type: ContainerRequestState.FINAL }, { - name: ContainerRequestState.Uncommitted, + name: ContainerRequestState.UNCOMMITTED, selected: true, - type: ContainerRequestState.Uncommitted + type: ContainerRequestState.UNCOMMITTED } ], render: renderStatus, @@ -134,21 +80,22 @@ export const columns: DataColumns = [ { name: FavoritePanelColumnNames.TYPE, selected: true, + configurable: true, filters: [ { - name: resourceLabel(ResourceKind.Collection), + name: resourceLabel(ResourceKind.COLLECTION), selected: true, - type: ResourceKind.Collection + type: ResourceKind.COLLECTION }, { - name: resourceLabel(ResourceKind.Process), + name: resourceLabel(ResourceKind.PROCESS), selected: true, - type: ResourceKind.Process + type: ResourceKind.PROCESS }, { - name: resourceLabel(ResourceKind.Project), + name: resourceLabel(ResourceKind.PROJECT), selected: true, - type: ResourceKind.Project + type: ResourceKind.PROJECT } ], render: item => renderType(item.kind), @@ -157,26 +104,27 @@ export const columns: DataColumns = [ { name: FavoritePanelColumnNames.OWNER, selected: true, + configurable: true, render: item => renderOwner(item.owner), width: "200px" }, { name: FavoritePanelColumnNames.FILE_SIZE, selected: true, + configurable: true, render: item => renderFileSize(item.fileSize), width: "50px" }, { name: FavoritePanelColumnNames.LAST_MODIFIED, selected: true, - sortDirection: SortDirection.None, + configurable: true, + sortDirection: SortDirection.NONE, render: item => renderDate(item.lastModified), width: "150px" } ]; -export const FAVORITE_PANEL_ID = "favoritePanel"; - interface FavoritePanelDataProps { currentItemId: string; } @@ -196,31 +144,15 @@ export const FavoritePanel = withStyles(styles)( connect((state: RootState) => ({ currentItemId: state.projects.currentItemId }))( class extends React.Component { render() { - const { classes } = this.props; - return
-
- - - -
- item.uuid} /> -
; + return item.uuid} /> + ; } - handleNewProjectClick = () => { - this.props.onDialogOpen(this.props.currentItemId); - } componentWillReceiveProps({ match, currentItemId, onItemRouteChange }: FavoritePanelProps) { if (match.params.id !== currentItemId) { onItemRouteChange(match.params.id);