summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/service-path-creator/link-row/link-row.component.ts
diff options
context:
space:
mode:
authorys9693 <ys9693@att.com>2020-01-19 13:50:02 +0200
committerOfir Sonsino <ofir.sonsino@intl.att.com>2020-01-22 12:33:31 +0000
commit16a9fce0e104a38371a9e5a567ec611ae3fc7f33 (patch)
tree03a2aff3060ddb5bc26a90115805a04becbaffc9 /catalog-ui/src/app/ng2/pages/service-path-creator/link-row/link-row.component.ts
parentaa83a2da4f911c3ac89318b8e9e8403b072942e1 (diff)
Catalog alignment
Issue-ID: SDC-2724 Signed-off-by: ys9693 <ys9693@att.com> Change-Id: I52b4aacb58cbd432ca0e1ff7ff1f7dd52099c6fe
Diffstat (limited to 'catalog-ui/src/app/ng2/pages/service-path-creator/link-row/link-row.component.ts')
-rw-r--r--catalog-ui/src/app/ng2/pages/service-path-creator/link-row/link-row.component.ts103
1 files changed, 0 insertions, 103 deletions
diff --git a/catalog-ui/src/app/ng2/pages/service-path-creator/link-row/link-row.component.ts b/catalog-ui/src/app/ng2/pages/service-path-creator/link-row/link-row.component.ts
deleted file mode 100644
index e4fc1d4522..0000000000
--- a/catalog-ui/src/app/ng2/pages/service-path-creator/link-row/link-row.component.ts
+++ /dev/null
@@ -1,103 +0,0 @@
-import {Component, Input} from '@angular/core';
-import {DropdownValue} from "app/ng2/components/ui/form-components/dropdown/ui-element-dropdown.component";
-import {Link} from './link.model';
-import {ServicePathMapItem} from "app/models/graph/nodes-and-links-map";
-
-@Component({
- selector: 'link-row',
- templateUrl: './link-row.component.html',
- styleUrls: ['./link-row.component.less']
-})
-
-
-export class LinkRowComponent {
- @Input() data:Array<ServicePathMapItem>;
- @Input() link:Link;
- @Input() removeRow:Function;
- source: Array<DropdownValue> = [];
- target: Array<DropdownValue> = [];
- srcCP: Array<DropdownValue> = [];
- targetCP: Array<DropdownValue> = [];
-
- ngOnChanges() {
- if (this.data) {
- this.parseInitialData(this.data);
- }
- }
-
- parseInitialData(data: Array<ServicePathMapItem>) {
- this.source = this.convertValuesToDropDownOptions(data);
- if (this.link.fromNode) {
- let srcCPOptions = this.findOptions(data, this.link.fromNode);
- if (!srcCPOptions) { return; }
- this.srcCP = this.convertValuesToDropDownOptions(srcCPOptions);
- if (this.link.fromCP) {
- this.target = this.convertValuesToDropDownOptions(data);
- if (this.link.toNode) {
- let targetCPOptions = this.findOptions(data, this.link.toNode);
- if (!targetCPOptions) { return; }
- this.targetCP = this.convertValuesToDropDownOptions(targetCPOptions);
- }
- }
- }
- }
-
- private findOptions(items: Array<ServicePathMapItem>, nodeOrCPId: string) {
- let item = _.find(items, (dataItem) => nodeOrCPId === dataItem.id);
- if (item && item.data && item.data.options) {
- return item.data.options;
- }
- console.warn('no option was found to match selection of Node/CP with id:' + nodeOrCPId);
- return null;
- }
-
- private convertValuesToDropDownOptions(values: Array<ServicePathMapItem>): Array<DropdownValue> {
- let result:Array<DropdownValue> = [];
- for (let i = 0; i < values.length ; i++) {
- result[result.length] = new DropdownValue(values[i].id, values[i].data.name);
- }
- return result.sort((a, b) => a.label.localeCompare(b.label));
- }
-
- onSourceSelected(id) {
- if (id) {
- let srcCPOptions = this.findOptions(this.data, id);
- this.srcCP = this.convertValuesToDropDownOptions(srcCPOptions);
- this.link.fromCP = '';
- this.link.toNode = '';
- this.link.toCP = '';
- this.target = [];
- this.targetCP = [];
- }
- }
-
- onSrcCPSelected (id) {
- if (id) {
- let srcCPOptions = this.findOptions(this.data, this.link.fromNode);
- let srcCPData = srcCPOptions.find(option => id === option.id).data;
- this.target = this.convertValuesToDropDownOptions(this.data);
- this.link.fromCPOriginId = srcCPData.ownerId;
- this.link.toNode = '';
- this.link.toCP = '';
- this.targetCP = [];
- }
-
- }
-
- onTargetSelected(id) {
- if (id) {
- let targetCPOptions = this.findOptions(this.data, id);
- this.targetCP = this.convertValuesToDropDownOptions(targetCPOptions);
- this.link.toCP = '';
- }
-
- }
-
- onTargetCPSelected(id) {
- if (id) {
- let targetCPOptions = this.findOptions(this.data, this.link.toNode);
- let targetCPDataObj = targetCPOptions.find(option => id === option.id).data;
- this.link.toCPOriginId = targetCPDataObj.ownerId;
- }
- }
-}