aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-ui/src/main/frontend
diff options
context:
space:
mode:
authorStanislav Vishnevetskiy <shlomo-stanisla.vishnevetskiy@amdocs.com>2018-08-05 16:25:09 +0300
committerStanislav Vishnevetskiy <shlomo-stanisla.vishnevetskiy@amdocs.com>2018-08-05 16:25:18 +0300
commitaec32e54ed674bab660bf8a36d0505b2452bf6f1 (patch)
treebac8b553ee41d84b8ab2c796ed3782ea852e1f39 /workflow-designer-ui/src/main/frontend
parenteef2764e29550ae7bb33f7d8985772d78c15047c (diff)
adding activities reducer actions
Issue-ID: SDC-1591 Change-Id: I1a73d24041d40a5ea83027cac5d3efbf9fbba414 Signed-off-by: Stanislav Vishnevetskiy <shlomo-stanisla.vishnevetskiy@amdocs.com>
Diffstat (limited to 'workflow-designer-ui/src/main/frontend')
-rw-r--r--workflow-designer-ui/src/main/frontend/src/features/activities/activitiesConstants.js16
-rw-r--r--workflow-designer-ui/src/main/frontend/src/features/activities/activitiesReducer.js26
-rw-r--r--workflow-designer-ui/src/main/frontend/src/features/activities/activitiesSelectors.js17
-rw-r--r--workflow-designer-ui/src/main/frontend/src/rootReducers.js3
4 files changed, 62 insertions, 0 deletions
diff --git a/workflow-designer-ui/src/main/frontend/src/features/activities/activitiesConstants.js b/workflow-designer-ui/src/main/frontend/src/features/activities/activitiesConstants.js
new file mode 100644
index 00000000..54aed6a9
--- /dev/null
+++ b/workflow-designer-ui/src/main/frontend/src/features/activities/activitiesConstants.js
@@ -0,0 +1,16 @@
+/*
+* Copyright © 2018 European Support Limited
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+ * http://www.apache.org/licenses/LICENSE-2.0
+*
+ * Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+export const SET_ACTIVITIES_LIST = 'activites/SET_ACTIVITIES_LIST';
diff --git a/workflow-designer-ui/src/main/frontend/src/features/activities/activitiesReducer.js b/workflow-designer-ui/src/main/frontend/src/features/activities/activitiesReducer.js
new file mode 100644
index 00000000..5c361401
--- /dev/null
+++ b/workflow-designer-ui/src/main/frontend/src/features/activities/activitiesReducer.js
@@ -0,0 +1,26 @@
+/*
+* Copyright © 2018 European Support Limited
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+ * http://www.apache.org/licenses/LICENSE-2.0
+*
+ * Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+import { SET_ACTIVITIES_LIST } from './activitiesConstants';
+
+export default (state = [], action) => {
+ switch (action.type) {
+ case SET_ACTIVITIES_LIST: {
+ return action.payload;
+ }
+ default:
+ return state;
+ }
+};
diff --git a/workflow-designer-ui/src/main/frontend/src/features/activities/activitiesSelectors.js b/workflow-designer-ui/src/main/frontend/src/features/activities/activitiesSelectors.js
new file mode 100644
index 00000000..47a0975b
--- /dev/null
+++ b/workflow-designer-ui/src/main/frontend/src/features/activities/activitiesSelectors.js
@@ -0,0 +1,17 @@
+/*
+* Copyright © 2018 European Support Limited
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+ * http://www.apache.org/licenses/LICENSE-2.0
+*
+ * Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+export const activitiesSelector = state => state && state.activities;
diff --git a/workflow-designer-ui/src/main/frontend/src/rootReducers.js b/workflow-designer-ui/src/main/frontend/src/rootReducers.js
index 9fab8140..825f5825 100644
--- a/workflow-designer-ui/src/main/frontend/src/rootReducers.js
+++ b/workflow-designer-ui/src/main/frontend/src/rootReducers.js
@@ -26,6 +26,8 @@ import modal from 'shared/modal/modalWrapperReducer';
import overviewReducer from 'features/workflow/overview/overviewReducer';
import workflowReducer from 'features/workflow/workflowReducer';
import compositionReducer from 'features/version/composition/compositionReducer';
+import activitiesReducer from 'features/activities/activitiesReducer';
+
export default combineReducers({
i18n: i18nReducer,
catalog,
@@ -39,6 +41,7 @@ export default combineReducers({
data: workflowReducer,
versions: overviewReducer
}),
+ activities: activitiesReducer,
loader,
modal
});