All I need to do is save this object data from the service call. Its
subscribe/observer. So it keeps displaying the treeview data. I need to
capture the data to make a comparison. I have the object output. I just
don't know how to save the results object? ITs a little confusing because
there are two item.types. thanks,
Get Objects Results
[
{"type":"WORKFLOW","objects":[
{"id":"/workflow/Stacks","type":"Workflow","name":"Stacks","owner":"DocumentService","objects":[
{"id":"/workflow/Stacks/q:Scan","type":"Queue","name":"Scan","owner":null,"objects":[
{"id":"/workflow/Stacks/q:Scan/i:Single","type":"ItemType","name":"Single","owner":null,"objects":null},{"id":"/workflow/Stacks/q:Scan/i:Multi","type":"ItemType","name":"Multi","owner":null,"objects":null}]}]}]},
{"type":"REPORTS","objects":[
{"id":"/reports/Status","type":"Reports","name":"Status
Reports","owner":"ReportPortal","objects":[
{"id":"/reports/Status/n:report_1","type":"Report","name":"Report
1","owner":null,"objects":null},{"id":"/reports/Status/n:report_2","type":"Report","name":"Report
2","owner":null,"objects":null}]}]}]
this.rmService.getObjects().subscribe(res => {
console.log('Get Objects Results '+ JSON.stringify(res));
res.map(item => {
if (item.type == "WORKFLOW") {
let treeviewItems = item.objects[0].objects[0].objects.map(object => {
const data = {
text: object.name,
value: object.id
};
return data;
});
this.objectItem.push(new TreeviewItem({
text: item.type,
value: 1,
collapsed: false,
children: [{
text: item.objects[0].type,
value: item.id,
children: [{
text: item.objects[0].objects[0].type,
value: item.id,
children: treeviewItems,
}],
}],
}));
}
if (item.type == "REPORTS") {
let treeviewItems = item.objects[0].objects.map(object => {
const data = {
text: object.name,
value: object.id
};
return data;
});
this.objectItem.push(new TreeviewItem({
text: item.type,
value: 0,
collapsed: false,
children: [{
text: item.objects[0].type,
value: item.id,
children: treeviewItems,
}],
}));
}
});
});
}
--
You received this message because you are subscribed to the Google Groups
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
To view this discussion on the web visit
https://groups.google.com/d/msgid/angular/86ce3dff-fce3-4e92-b845-ffc57293c7fe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.