[ARVADOS-WORKBENCH2] updated: 2.1.0-40-g8095c4a7

Git user git at public.arvados.org
Thu Nov 5 14:40:28 UTC 2020


Summary of changes:
 src/common/config.ts                               |  3 +
 src/common/redirect-to.test.ts                     | 82 ++++++++++++++++++++++
 src/common/redirect-to.ts                          | 32 +++++++++
 src/components/icon/icon.tsx                       |  2 +
 src/index.tsx                                      |  5 +-
 .../collection-service/collection-service.ts       |  4 +-
 src/store/auth/auth-action-session.ts              |  1 +
 src/store/auth/auth-action.test.ts                 |  4 +-
 src/store/auth/auth-middleware.test.ts             |  3 +-
 .../open-in-new-tab/open-in-new-tab.actions.ts     | 25 +++++++
 src/store/store.ts                                 | 17 ++++-
 .../collection-files-item-action-set.ts            |  6 +-
 ...tsx => collection-copy-to-clipboard-action.tsx} |  9 ++-
 .../actions/collection-file-viewer-action.tsx      |  8 +--
 .../actions/copy-to-clipboard-action.test.tsx      | 36 ++++++++++
 .../actions/copy-to-clipboard-action.tsx           | 33 +++++++++
 .../context-menu/actions/download-action.tsx       |  2 +-
 .../actions/download-collection-file-action.tsx    |  6 +-
 .../actions/file-viewer-action.test.tsx            | 33 +++++++++
 .../context-menu/actions/file-viewer-action.tsx    | 33 ++++++---
 .../context-menu/actions/helpers.test.ts           | 30 ++++++++
 .../context-menu/actions/helpers.ts                | 19 +++++
 22 files changed, 359 insertions(+), 34 deletions(-)
 create mode 100644 src/common/redirect-to.test.ts
 create mode 100644 src/common/redirect-to.ts
 create mode 100644 src/store/open-in-new-tab/open-in-new-tab.actions.ts
 copy src/views-components/context-menu/actions/{collection-file-viewer-action.tsx => collection-copy-to-clipboard-action.tsx} (69%)
 create mode 100644 src/views-components/context-menu/actions/copy-to-clipboard-action.test.tsx
 create mode 100644 src/views-components/context-menu/actions/copy-to-clipboard-action.tsx
 create mode 100644 src/views-components/context-menu/actions/file-viewer-action.test.tsx
 create mode 100644 src/views-components/context-menu/actions/helpers.test.ts
 create mode 100644 src/views-components/context-menu/actions/helpers.ts

       via  8095c4a7852131043b682b809ed78ca65386dd30 (commit)
       via  d9b30910f8a81ab1c9c860a00ea6c3d580d42051 (commit)
       via  a9f2ce9838cf6a215cbc108073d033bc3811bdf5 (commit)
       via  35ce0164f3863e7117fade1319ed3c2789bc216a (commit)
       via  970a9e9dcd2a444d02181c4df3f205f7e0a8ebeb (commit)
       via  67d77b206ebee7c776bd4d7dbc112ebb0c7ba800 (commit)
       via  7b3802bf303c74f321317742a146c286ff047b00 (commit)
       via  79598ecbcb4c3523c194d59241035d99c7515320 (commit)
       via  fa56d9acbdc2c18486f1bb10559df6628f49458b (commit)
       via  ffc9666a04b0cef18a15571c1a0f4fdc41e87b75 (commit)
       via  ae94f4d8463ff6350329e802cb902c8dad96a710 (commit)
       via  9525ed95bef2a8de63b48a0682c342465d29bae9 (commit)
       via  42ec7892e74f6d9d19f2f0155830565f447a861f (commit)
       via  7b26514e0a1cbe9700d944097b80ec2f46b3d95d (commit)
       via  2e31a473f22dcea24eaa2e1dbf1b7078647548e1 (commit)
       via  bedfc199257daf616753ddfb45f1e179e70dc634 (commit)
       via  bd61e7438a308e9d51fe4d3ae18234bfaf6d4366 (commit)
       via  cde4f5bcb537f69e6b0bc2349cbd0f27944a6f65 (commit)
       via  4361d82d939fb3d8d6009b6bdfb66922634ba005 (commit)
       via  f15181b0b69599cc33385d4af2f1a60de087882b (commit)
       via  055723f58e163f0b5e49c1e8b92fd1bebe81873e (commit)
      from  bcb55ad2005ab4dc8c97624c1f56d410c36d15c2 (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 8095c4a7852131043b682b809ed78ca65386dd30
Merge: d9b30910 bcb55ad2
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Thu Nov 5 11:14:01 2020 -0300

    16719: Merge branch '16719-collection-version-basic-ui' of git.arvados.org:arvados-workbench2 into 16719-collection-version-basic-ui
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>


commit d9b30910f8a81ab1c9c860a00ea6c3d580d42051
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Tue Oct 20 18:42:30 2020 -0300

    16719: Removes console debug message.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>

diff --git a/src/store/open-in-new-tab/open-in-new-tab.actions.ts b/src/store/open-in-new-tab/open-in-new-tab.actions.ts
index 42bdc4cc..17ba7402 100644
--- a/src/store/open-in-new-tab/open-in-new-tab.actions.ts
+++ b/src/store/open-in-new-tab/open-in-new-tab.actions.ts
@@ -19,10 +19,7 @@ export const openInNewTabAction = (resource: any) => (dispatch: Dispatch) => {
 
     if (kind === ResourceKind.COLLECTION) {
         dispatch(openInNewTabActions.OPEN_COLLECTION_IN_NEW_TAB(uuid));
-    }
-    if (kind === ResourceKind.PROJECT) {
+    } else if (kind === ResourceKind.PROJECT) {
         dispatch(openInNewTabActions.OPEN_PROJECT_IN_NEW_TAB(uuid));
     }
-
-    console.log(uuid);
 };
\ No newline at end of file

commit a9f2ce9838cf6a215cbc108073d033bc3811bdf5
Merge: b5c36801 35ce0164
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Tue Oct 20 18:32:23 2020 -0300

    16719: Merge branch 'master' into 16719-collection-version-basic-ui
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>


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


hooks/post-receive
-- 




More information about the arvados-commits mailing list