[ARVADOS-WORKBENCH2] updated: 1.4.1-472-g1d4e548c

Git user git at public.arvados.org
Mon Oct 12 22:15:06 UTC 2020


Summary of changes:
 Makefile                                           |  2 +-
 cypress/integration/collection-panel.spec.js       |  6 +-
 src/components/data-table/data-table.tsx           |  7 ++-
 src/models/session.ts                              |  1 +
 src/services/auth-service/auth-service.ts          | 11 +++-
 src/store/auth/auth-action-session.ts              | 43 +++++++------
 src/store/auth/auth-action.test.ts                 | 59 +++++++++++------
 .../action-sets/collection-files-action-set.ts     | 10 +--
 .../context-menu/actions/download-action.test.tsx  | 73 ++++++++++++++++++++++
 .../context-menu/actions/download-action.tsx       | 49 ++++++++-------
 .../main-content-bar/main-content-bar.tsx          | 44 ++++++-------
 .../search-results-panel-view.tsx                  | 10 +--
 .../site-manager-panel/site-manager-panel-root.tsx |  5 +-
 13 files changed, 214 insertions(+), 106 deletions(-)
 create mode 100644 src/views-components/context-menu/actions/download-action.test.tsx

       via  1d4e548cf6c8f11d939712ea5f4df06786a89d64 (commit)
       via  e57a8f466cdbaec06d35639cc54241600a6b54e7 (commit)
       via  f4bc382beb99c86c71462c3cd7329ef1b5fda617 (commit)
       via  3b9b89685aa1a452add4a18751ca0539f20a21bb (commit)
       via  2e33e6cf5b5beb180bcbad716be11881a1882079 (commit)
       via  dbd29b580dbb01ab045284bd2446b47e1285f3d3 (commit)
       via  ff13e4ae34913d557cbb9a07d3faf6a059ba560a (commit)
       via  efded4f675bf0cabb81e91d19ccb294a4df4deba (commit)
       via  b6a41da0a48707819163b6ebed088739e411a630 (commit)
       via  9c7918c98200f68bcce5f9e63a211986a50a2159 (commit)
       via  736ed84c0c3d77744a2095a8773e1e1d0a60d172 (commit)
       via  1747765402db9799ee4868ce7ceb412a7bb22fdb (commit)
       via  2c7ded941806dfa7da0d4e2255257a5e022efe8f (commit)
       via  6318db42202cc63f179dfca59e1793dab9b22404 (commit)
       via  f56ac713283fd5e0ade864e49f5519c0f3e467d0 (commit)
       via  fb3f4deaceade35ad36718ce814d6ff4d0cb996b (commit)
       via  d924f14c5a81265fbd0f550ccf498fe791fc5b54 (commit)
       via  c666d78642ac6af933bfee6bca45b0815a2ed86e (commit)
       via  0ca7039728489e25ae1e196278454e7bafbca948 (commit)
      from  3b0c193f12f1bac68b1fa708988369111799e33a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 1d4e548cf6c8f11d939712ea5f4df06786a89d64
Merge: e57a8f46 f4bc382b
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Mon Oct 12 19:14:34 2020 -0300

    16718: Merge branch 'master' into 16718-past-collection-versions-search
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>


commit e57a8f466cdbaec06d35639cc54241600a6b54e7
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Mon Oct 12 19:12:52 2020 -0300

    16718: Removes redundant column on search results.
    
    Also condenses the table contents by making padding between columns a bit
    smaller.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>

diff --git a/src/components/data-table/data-table.tsx b/src/components/data-table/data-table.tsx
index 4e2b430a..87386d50 100644
--- a/src/components/data-table/data-table.tsx
+++ b/src/components/data-table/data-table.tsx
@@ -55,7 +55,8 @@ const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
         padding: theme.spacing.unit
     },
     tableCell: {
-        wordWrap: 'break-word'
+        wordWrap: 'break-word',
+        paddingRight: '24px'
     },
     tableCellWorkflows: {
         '&:nth-last-child(2)': {
@@ -107,8 +108,8 @@ export const DataTable = withStyles(styles)(
 
         renderHeadCell = (column: DataColumn<T>, index: number) => {
             const { name, key, renderHeader, filters, sortDirection } = column;
-            const { onSortToggle, onFiltersChange } = this.props;
-            return <TableCell key={key || index}>
+            const { onSortToggle, onFiltersChange, classes } = this.props;
+            return <TableCell className={classes.tableCell} key={key || index}>
                 {renderHeader ?
                     renderHeader() :
                     countNodes(filters) > 0
diff --git a/src/views/search-results-panel/search-results-panel-view.tsx b/src/views/search-results-panel/search-results-panel-view.tsx
index ebe5a826..109fb305 100644
--- a/src/views/search-results-panel/search-results-panel-view.tsx
+++ b/src/views/search-results-panel/search-results-panel-view.tsx
@@ -30,7 +30,6 @@ import { ArvadosTheme } from '~/common/custom-theme';
 export enum SearchResultsPanelColumnNames {
     CLUSTER = "Cluster",
     NAME = "Name",
-    PROJECT = "Project",
     STATUS = "Status",
     TYPE = 'Type',
     OWNER = "Owner",
@@ -67,13 +66,6 @@ export const searchResultsPanelColumns: DataColumns<string> = [
         filters: createTree(),
         render: (uuid: string) => <ResourceName uuid={uuid} />
     },
-    {
-        name: SearchResultsPanelColumnNames.PROJECT,
-        selected: true,
-        configurable: true,
-        filters: createTree(),
-        render: uuid => <ResourceFileSize uuid={uuid} />
-    },
     {
         name: SearchResultsPanelColumnNames.STATUS,
         selected: true,

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list