From: YuanHu Date: Tue, 27 Mar 2018 07:25:07 +0000 (+0800) Subject: Add Util Methods X-Git-Tag: v1.1.0~36 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F21%2F38921%2F1;p=sdc%2Fsdc-workflow-designer.git Add Util Methods Add Util Methods Issue-ID: SDC-1130,SDC-1131 Change-Id: I37f8e484c1d4268a26e918597d7799fafe13db88 Signed-off-by: YuanHu --- 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'; + } + } + }