17526: Rename webdav dialong to Access with 3rd party client
authorStephen Smith <stephen@curii.com>
Wed, 28 Jul 2021 13:55:45 +0000 (09:55 -0400)
committerStephen Smith <stephen@curii.com>
Wed, 28 Jul 2021 13:55:45 +0000 (09:55 -0400)
Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

cypress/integration/collection.spec.js
src/store/collections/collection-info-actions.ts
src/views-components/context-menu/action-sets/collection-action-set.ts
src/views-components/context-menu/action-sets/project-action-set.ts
src/views-components/webdav-s3-dialog/webdav-s3-dialog.tsx

index 308ce5f76be13178ccb7d8fe5fa82e7b56496ac7..73370817f98d8c9b9c556ed7936dbf10c0d35363 100644 (file)
@@ -43,7 +43,7 @@ describe('Collection panel tests', function () {
             cy.goToPath(`/collections/${testCollection.uuid}`);
 
             cy.get('[data-cy=collection-panel-options-btn]').click();
-            cy.get('[data-cy=context-menu]').contains('Open as network folder or S3 bucket').click();
+            cy.get('[data-cy=context-menu]').contains('Access with 3rd party client').click();
             cy.get('[data-cy=download-button').click();
 
             const filename = path.join(downloadsFolder, `${testCollection.name}.duck`);
index 9f82975f35c3368a4aa516979381196ce9f7295e..4838481e93375fef55281f1502c0b9a0d065b0af 100644 (file)
@@ -29,7 +29,7 @@ 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,
index 5c66f1280770c56851f91aaf6de6cd2ec3cf5941..c4c8788fb4dda01b129e68336bc6fc447a7d548d 100644 (file)
@@ -90,7 +90,7 @@ export const readOnlyCollectionActionSet: ContextMenuActionSet = [[
     toggleFavoriteAction,
     {
         icon: FolderSharedIcon,
-        name: "Open as network folder or S3 bucket",
+        name: "Access with 3rd party client",
         execute: (dispatch, resource) => {
             dispatch<any>(openWebDavS3InfoDialog(resource.uuid));
         }
index c84711384548f3df05e8c9b9979110aac189f537..02a6731ed417ae69370e46c5a21b07063d5e74c0 100644 (file)
@@ -59,7 +59,7 @@ export const readOnlyProjectActionSet: ContextMenuActionSet = [[
     },
     {
         icon: FolderSharedIcon,
-        name: "Open as network folder or S3 bucket",
+        name: "Access with 3rd party client",
         execute: (dispatch, resource) => {
             dispatch<any>(openWebDavS3InfoDialog(resource.uuid));
         }
index 39c1068ecff013992f5e6b4a224b041d0c15eb00..8e82619c6cbf0256cd54ca1a45757971a135ca68 100644 (file)
@@ -148,7 +148,7 @@ export const WebDavS3InfoDialog = compose(
             onClose={props.closeDialog}
             style={{ alignSelf: 'stretch' }}>
             <CardHeader
-                title={`Open as Network Folder or S3 Bucket`} />
+                title={`Access with 3rd party client`} />
             <div className={props.classes.details} >
                 <Tabs value={activeTab} onChange={props.data.setActiveTab}>
                     {supportsWebdav && <Tab value={0} key="cyberduck" label="Cyberduck/Mountain Duck or Gnome Files" />}