diff options
Diffstat (limited to 'sdc-workflow-designer-ui/src')
-rw-r--r-- | sdc-workflow-designer-ui/src/app/util/workflow-util.ts | 15 |
1 files changed, 14 insertions, 1 deletions
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'; + } + } + } |