X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/56156171fe65695dcec41f540735fd559655a11b..87fff7ceda76e813646e3fe1c2c41bb8ad567143:/src/store/collections/collection-info-actions.ts diff --git a/src/store/collections/collection-info-actions.ts b/src/store/collections/collection-info-actions.ts index 29dc6b87..4838481e 100644 --- a/src/store/collections/collection-info-actions.ts +++ b/src/store/collections/collection-info-actions.ts @@ -3,10 +3,11 @@ // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from "redux"; -import { RootState } from "~/store/store"; -import { ServiceRepository } from "~/services/services"; -import { dialogActions } from '~/store/dialog/dialog-actions'; +import { RootState } from "store/store"; +import { ServiceRepository } from "services/services"; +import { dialogActions } from 'store/dialog/dialog-actions'; import { getNewExtraToken } from "../auth/auth-action"; +import { CollectionResource } from "models/collection"; export const COLLECTION_WEBDAV_S3_DIALOG_NAME = 'collectionWebdavS3Dialog'; @@ -18,6 +19,7 @@ export interface WebDavS3InfoDialogData { localCluster: string; username: string; activeTab: number; + collectionName: string; setActiveTab: (event: any, tabNr: number) => void; } @@ -27,13 +29,14 @@ export const openWebDavS3InfoDialog = (uuid: string, activeTab?: number) => dispatch(dialogActions.OPEN_DIALOG({ id: COLLECTION_WEBDAV_S3_DIALOG_NAME, data: { - title: 'Access Collection using WebDAV or S3', + title: 'Access with 3rd party client', token: getState().auth.extraApiToken || getState().auth.apiToken, downloadUrl: getState().auth.config.keepWebServiceUrl, collectionsUrl: getState().auth.config.keepWebInlineServiceUrl, localCluster: getState().auth.localCluster, username: getState().auth.user!.username, activeTab: activeTab || 0, + collectionName: (getState().resources[uuid] as CollectionResource).name, setActiveTab: (event: any, tabNr: number) => dispatch(openWebDavS3InfoDialog(uuid, tabNr)), uuid }