Looking to display three nodes of a JSON file as a tree using AngularJS. The nodes are data.key, data.parentItem, and data.title.
Below is the JavaScript code:
var phonecatApp = angular.module('myApp', [])
phonecatApp.controller('myController', function myController($scope, $http) {
$http.get('https://api.zotero.org/users/475425/collections/9KH9TNSJ/items?format=json')
.then(function (response) {
var data = response.data
data = data.filter(function (obj) {
return true
})
.map(function (obj) {
return {
key: obj.key,
parentItem: obj.data.parentItem,
title: obj.data.title
}
})
var log = []
var parent = angular.forEach(data, function (value, key) {
if (value.parentItem === undefined) {
this.push(value)
}
}, log)
$scope.paR = log
var nlog = []
var children = angular.forEach(data, function (value, key) {
if (value.parentItem !== undefined) {
this.push(value)
}
}, nlog)
$scope.chilD = nlog
})
})
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<title>Hello</title>
<link href=" css/bootstrap.min.css " type="text/css " rel="stylesheet ">
<link href="themes/default/style.min.css " type="text/css " rel="stylesheet ">
<link href="css/angular-json-human.min.css" type="text/css" rel="stylesheet">
</head>
<body ng-controller="myController ">
<div>
<ul ng-repeat="myJ in paR">
<li>
<h3>{{myJ.key}}</h3></li>
<li>{{myJ.title}}</li>
</ul>
<ul ng-repeat="myN in chilD">
<li>
<h3 style="color:red">{{myN.key}}</h3></li>
<li>{{myN.title}}</li>
</ul>
</div>
<script src="js/angular.min.js "></script>
<script src="js/jquery-1.12.4.min.js "></script>
<script src="js/bootstrap.min.js "></script>
<script src="js/npm.js "></script>
<script src="js/jstree.min.js "></script>
<script src="tree.js "></script>
</body>
</html>
My JSON items can either be parents or children. Need assistance on displaying them in a tree format with respect to parent-child hierarchy following the nLogn rule.