Add Util Methods 21/38921/1
authorYuanHu <yuan.hu1@zte.com.cn>
Tue, 27 Mar 2018 07:25:07 +0000 (15:25 +0800)
committerYuanHu <yuan.hu1@zte.com.cn>
Tue, 27 Mar 2018 07:25:07 +0000 (15:25 +0800)
Add Util Methods

Issue-ID: SDC-1130,SDC-1131

Change-Id: I37f8e484c1d4268a26e918597d7799fafe13db88
Signed-off-by: YuanHu <yuan.hu1@zte.com.cn>
sdc-workflow-designer-ui/src/app/util/workflow-util.ts

index fae54b4..802cba9 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright (c) 2017 ZTE Corporation.
+ * Copyright (c) 2017-2018 ZTE Corporation.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * and the Apache License 2.0 which both accompany this distribution,
@@ -27,4 +27,17 @@ export class WorkflowUtil {
             }
         }
     }
+
+    public static GetIconFullPath(iconName: string): string {
+        if (iconName && '' != iconName) {
+            if (-1 == iconName.indexOf('.')) {
+                return 'assets/images/' + iconName + '.svg';
+            } else {
+                return 'assets/images/' + iconName;
+            }
+        } else {
+            return 'assets/images/default.svg';
+        }
+    }
+
 }