[ARVADOS-WORKBENCH2] updated: 1.2.0-502-g84a608e

Git user git at public.curoverse.com
Tue Oct 2 07:57:23 EDT 2018


Summary of changes:
 .../file-tree-picker-actions.ts}                                    | 2 +-
 .../file-tree-picker-reducer.ts}                                    | 6 +++---
 .../file-tree-picker.ts}                                            | 0
 src/store/store.ts                                                  | 4 ++--
 src/views-components/file-tree-picker/file-tree-picker.tsx          | 2 +-
 src/views-components/file-tree-picker/main-file-tree-picker.ts      | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)
 rename src/store/{workflow-tree-picker/workflow-tree-picker-actions.ts => file-tree-picker/file-tree-picker-actions.ts} (93%)
 rename src/store/{workflow-tree-picker/workflow-tree-picker-reducer.ts => file-tree-picker/file-tree-picker-reducer.ts} (92%)
 rename src/store/{workflow-tree-picker/workflow-tree-picker.ts => file-tree-picker/file-tree-picker.ts} (100%)

       via  84a608e65b0f130cf57938c7c60a2c354bc14431 (commit)
      from  269175b6558496d86d89bfbac42ed97662ca8cc9 (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 84a608e65b0f130cf57938c7c60a2c354bc14431
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date:   Tue Oct 2 13:57:06 2018 +0200

    names changed
    
    Feature #14231
    
    Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>

diff --git a/src/store/workflow-tree-picker/workflow-tree-picker-actions.ts b/src/store/file-tree-picker/file-tree-picker-actions.ts
similarity index 93%
rename from src/store/workflow-tree-picker/workflow-tree-picker-actions.ts
rename to src/store/file-tree-picker/file-tree-picker-actions.ts
index 5bc8076..18d0f5f 100644
--- a/src/store/workflow-tree-picker/workflow-tree-picker-actions.ts
+++ b/src/store/file-tree-picker/file-tree-picker-actions.ts
@@ -4,7 +4,7 @@
 
 import { unionize, ofType, UnionOf } from "~/common/unionize";
 
-import { TreePickerNode } from "./workflow-tree-picker";
+import { TreePickerNode } from "./file-tree-picker";
 
 export const fileTreePickerActions = unionize({
     LOAD_TREE_PICKER_NODE: ofType<{ nodeId: string, pickerId: string }>(),
diff --git a/src/store/workflow-tree-picker/workflow-tree-picker-reducer.ts b/src/store/file-tree-picker/file-tree-picker-reducer.ts
similarity index 92%
rename from src/store/workflow-tree-picker/workflow-tree-picker-reducer.ts
rename to src/store/file-tree-picker/file-tree-picker-reducer.ts
index c1fbaac..59e33a9 100644
--- a/src/store/workflow-tree-picker/workflow-tree-picker-reducer.ts
+++ b/src/store/file-tree-picker/file-tree-picker-reducer.ts
@@ -3,13 +3,13 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import { createTree, setNodeValueWith, TreeNode, setNode, mapTreeValues, Tree } from "~/models/tree";
-import { TreePicker, TreePickerNode } from "./workflow-tree-picker";
-import { fileTreePickerActions, FileTreePickerAction } from "./workflow-tree-picker-actions";
+import { TreePicker, TreePickerNode } from "./file-tree-picker";
+import { fileTreePickerActions, FileTreePickerAction } from "./file-tree-picker-actions";
 import { TreeItemStatus } from "~/components/tree/tree";
 import { compose } from "redux";
 import { getNode } from '~/models/tree';
 
-export const workflowTreePickerReducer = (state: TreePicker = {}, action: FileTreePickerAction) =>
+export const fileTreePickerReducer = (state: TreePicker = {}, action: FileTreePickerAction) =>
     fileTreePickerActions.match(action, {
         LOAD_TREE_PICKER_NODE: ({ nodeId, pickerId }) =>
             updateOrCreatePicker(state, pickerId, setNodeValueWith(setPending)(nodeId)),
diff --git a/src/store/workflow-tree-picker/workflow-tree-picker.ts b/src/store/file-tree-picker/file-tree-picker.ts
similarity index 100%
rename from src/store/workflow-tree-picker/workflow-tree-picker.ts
rename to src/store/file-tree-picker/file-tree-picker.ts
diff --git a/src/store/store.ts b/src/store/store.ts
index c0e0b6b..4c08a39 100644
--- a/src/store/store.ts
+++ b/src/store/store.ts
@@ -38,7 +38,7 @@ import { progressIndicatorReducer } from './progress-indicator/progress-indicato
 import { runProcessPanelReducer } from '~/store/run-process-panel/run-process-panel-reducer';
 import { WorkflowMiddlewareService } from './workflow-panel/workflow-middleware-service';
 import { WORKFLOW_PANEL_ID } from './workflow-panel/workflow-panel-actions';
-import { workflowTreePickerReducer } from './workflow-tree-picker/workflow-tree-picker-reducer';
+import { fileTreePickerReducer } from './file-tree-picker/file-tree-picker-reducer';
 
 const composeEnhancers =
     (process.env.NODE_ENV === 'development' &&
@@ -100,6 +100,6 @@ const createRootReducer = (services: ServiceRepository) => combineReducers({
     fileUploader: fileUploaderReducer,
     processPanel: processPanelReducer,
     progressIndicator: progressIndicatorReducer,
-    workflowTreePicker: workflowTreePickerReducer,
+    fileTreePicker: fileTreePickerReducer,
     runProcessPanel: runProcessPanelReducer
 });
diff --git a/src/views-components/file-tree-picker/file-tree-picker.tsx b/src/views-components/file-tree-picker/file-tree-picker.tsx
index 802928d..9f867cc 100644
--- a/src/views-components/file-tree-picker/file-tree-picker.tsx
+++ b/src/views-components/file-tree-picker/file-tree-picker.tsx
@@ -9,7 +9,7 @@ import { Typography } from "@material-ui/core";
 import { MainFileTreePicker, MainFileTreePickerProps } from "./main-file-tree-picker";
 import { TreeItem, TreeItemStatus } from "~/components/tree/tree";
 import { ProjectResource } from "~/models/project";
-import { fileTreePickerActions } from "~/store/workflow-tree-picker/workflow-tree-picker-actions";
+import { fileTreePickerActions } from "~/store/file-tree-picker/file-tree-picker-actions";
 import { ListItemTextIcon } from "~/components/list-item-text-icon/list-item-text-icon";
 import { ProjectIcon, FavoriteIcon, ProjectsIcon, ShareMeIcon, CollectionIcon } from '~/components/icon/icon';
 import { createTreePickerNode } from "~/store/tree-picker/tree-picker";
diff --git a/src/views-components/file-tree-picker/main-file-tree-picker.ts b/src/views-components/file-tree-picker/main-file-tree-picker.ts
index 065a6d6..dc52ea6 100644
--- a/src/views-components/file-tree-picker/main-file-tree-picker.ts
+++ b/src/views-components/file-tree-picker/main-file-tree-picker.ts
@@ -5,7 +5,7 @@
 import { connect } from "react-redux";
 import { Tree, TreeProps, TreeItem, TreeItemStatus } from "~/components/tree/tree";
 import { RootState } from "~/store/store";
-import { createTreePickerNode, TreePickerNode } from "~/store/workflow-tree-picker/workflow-tree-picker";
+import { createTreePickerNode, TreePickerNode } from "~/store/file-tree-picker/file-tree-picker";
 import { getNodeValue, getNodeChildrenIds, Tree as Ttree, createTree } from "~/models/tree";
 import { Dispatch } from "redux";
 

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list