adding activities reducer actions 43/59043/1
authorStanislav Vishnevetskiy <shlomo-stanisla.vishnevetskiy@amdocs.com>
Sun, 5 Aug 2018 13:25:09 +0000 (16:25 +0300)
committerStanislav Vishnevetskiy <shlomo-stanisla.vishnevetskiy@amdocs.com>
Sun, 5 Aug 2018 13:25:18 +0000 (16:25 +0300)
Issue-ID: SDC-1591
Change-Id: I1a73d24041d40a5ea83027cac5d3efbf9fbba414
Signed-off-by: Stanislav Vishnevetskiy <shlomo-stanisla.vishnevetskiy@amdocs.com>
workflow-designer-ui/pom.xml
workflow-designer-ui/src/main/frontend/src/features/activities/activitiesConstants.js [new file with mode: 0644]
workflow-designer-ui/src/main/frontend/src/features/activities/activitiesReducer.js [new file with mode: 0644]
workflow-designer-ui/src/main/frontend/src/features/activities/activitiesSelectors.js [new file with mode: 0644]
workflow-designer-ui/src/main/frontend/src/rootReducers.js

index 172f589..75db234 100644 (file)
                         <resource>
                             <directory>src/main/frontend/dist</directory>
                             <includes>
-                                <include>*.html</include>
-                                <include>*.js</include>
+                                <include>*.*</include>                                
                             </includes>
                         </resource>
                         <resource>
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 (file)
index 0000000..54aed6a
--- /dev/null
@@ -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 (file)
index 0000000..5c36140
--- /dev/null
@@ -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 (file)
index 0000000..47a0975
--- /dev/null
@@ -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;
index 9fab814..825f582 100644 (file)
@@ -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
 });