Merge remote-tracking branch 'origin/main' into 18207-Workbench2-is-not-clearing...
[arvados-workbench2.git] / src / store / open-in-new-tab / open-in-new-tab.actions.ts
index 42bdc4ccfe5c25de8a33e277b0d34a4c81f24b98..94aec140d64f2bc0b7a906465244ea29f3c3e6b6 100644 (file)
@@ -2,27 +2,36 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { Dispatch } from 'redux';
-import { ResourceKind } from '~/models/resource';
-import { unionize, ofType } from '~/common/unionize';
+import copy from 'copy-to-clipboard';
+import { ResourceKind } from 'models/resource';
+import { getClipboardUrl } from 'views-components/context-menu/actions/helpers';
 
-export const openInNewTabActions = unionize({
-    COPY_STORE: ofType<{}>(),
-    OPEN_COLLECTION_IN_NEW_TAB: ofType<string>(),
-    OPEN_PROJECT_IN_NEW_TAB: ofType<string>()
-});
-
-export const openInNewTabAction = (resource: any) => (dispatch: Dispatch) => {
+const getUrl = (resource: any) => {
+    let url: string | null = null;
     const { uuid, kind } = resource;
 
-    dispatch(openInNewTabActions.COPY_STORE());
-
     if (kind === ResourceKind.COLLECTION) {
-        dispatch(openInNewTabActions.OPEN_COLLECTION_IN_NEW_TAB(uuid));
+        url = `/collections/${uuid}`;
     }
     if (kind === ResourceKind.PROJECT) {
-        dispatch(openInNewTabActions.OPEN_PROJECT_IN_NEW_TAB(uuid));
+        url = `/projects/${uuid}`;
+    }
+
+    return url;
+};
+
+export const openInNewTabAction = (resource: any) => () => {
+    const url = getUrl(resource);
+
+    if (url) {
+        window.open(`${window.location.origin}${url}`, '_blank');
     }
+};
 
-    console.log(uuid);
+export const copyToClipboardAction = (resource: any) => () => {
+    const url = getUrl(resource);
+
+    if (url) {
+        copy(getClipboardUrl(url, false));
+    }
 };
\ No newline at end of file