From 3036f633a343e6c74563e209420002d4784f888f Mon Sep 17 00:00:00 2001 From: YuanHu Date: Tue, 27 Mar 2018 15:25:07 +0800 Subject: Add Util Methods Add Util Methods Issue-ID: SDC-1130,SDC-1131 Change-Id: I37f8e484c1d4268a26e918597d7799fafe13db88 Signed-off-by: YuanHu --- sdc-workflow-designer-ui/src/app/util/workflow-util.ts | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/sdc-workflow-designer-ui/src/app/util/workflow-util.ts b/sdc-workflow-designer-ui/src/app/util/workflow-util.ts index fae54b48..802cba9f 100644 --- a/sdc-workflow-designer-ui/src/app/util/workflow-util.ts +++ b/sdc-workflow-designer-ui/src/app/util/workflow-util.ts @@ -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'; + } + } + } -- cgit 1.2.3-korg