Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
1541ec7f
Commit
1541ec7f
authored
May 28, 2015
by
DarshanKumar
Committed by
Vishal Kadam
May 29, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated Linage
Linage output updated
parent
333a141e
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
19 deletions
+41
-19
detailsResource.js
dashboard/v2/public/modules/details/detailsResource.js
+17
-0
details.html
dashboard/v2/public/modules/details/views/details.html
+17
-18
lineage.html
dashboard/v2/public/modules/details/views/lineage.html
+2
-0
lineageController.js
dashboard/v2/public/modules/lineage/lineageController.js
+0
-0
lineage.html
dashboard/v2/public/modules/lineage/views/lineage.html
+5
-1
No files found.
dashboard/v2/public/modules/details/detailsResource.js
View file @
1541ec7f
...
@@ -31,5 +31,22 @@ angular.module('dgc.details').factory('DetailsResource', ['$resource', function(
...
@@ -31,5 +31,22 @@ angular.module('dgc.details').factory('DetailsResource', ['$resource', function(
}
}
});
});
//$scope.getSchema= function (tableName) {
//
// $http.get('/api/metadata/lineage/hive/table/'+tableName +'/schema')
// .success(function (data) {
// $scope.iserror1=false;
// $scope.schema= angular.fromJson(data.results.rows);
// // console.log(tableName);
//
//
// })
// .error(function () {
// // alert("Sorry No response");
//
//
//
// });
//}
}]);
}]);
dashboard/v2/public/modules/details/views/details.html
View file @
1541ec7f
...
@@ -16,25 +16,24 @@
...
@@ -16,25 +16,24 @@
~ limitations under the License.
~ limitations under the License.
-->
-->
<div
class=
"container details"
data-ng-controller=
"DetailsController"
>
<div
class=
"col-lg-12"
>
<h4>
{{details.name}}
</h4>
<h5>
{{details.description}}
</h5>
<tabset>
<div
role=
"tabpanel"
>
<tab
heading=
"Details"
>
<section
data-ng-repeat=
"(key,value) in details"
data-ng-if=
"isString(value)"
data-ng-include=
"'/modules/details/views/attribute.html'"
></section>
</tab>
<tab
heading=
"Schema"
>
<section
data-ng-include=
"'/modules/details/views/schema.html'"
></section>
</tab>
<!-- Nav tabs -->
<tab
heading=
"Outputs"
ng-if=
"details['$typeName$']==='Table'"
>
<ul
class=
"nav nav-tabs"
role=
"tablist"
>
<div
class=
"lineage"
data-ng-include=
"'/modules/lineage/views/lineage.html'"
></div>
<li
role=
"presentation"
><a
href=
"#home"
aria-controls=
"home"
role=
"tab"
data-toggle=
"tab"
>
Details
</a></li>
</tab>
<li
role=
"presentation"
><a
href=
"#profile"
aria-controls=
"profile"
role=
"tab"
data-toggle=
"tab"
>
Schema
</a></li>
<tab
heading=
"Inputs"
ng-if=
"details['$typeName$']==='Table'"
>
<li
role=
"presentation"
class=
"active"
><a
href=
"#messages"
aria-controls=
"messages"
role=
"tab"
data-toggle=
"tab"
>
Output
</a></li>
<div
class=
"lineage"
data-ng-include=
"'/modules/lineage/views/lineage.html'"
></div>
<!--<li role="presentation"><a href="#settings" aria-controls="settings" role="tab" data-toggle="tab">Settings</a></li>-->
</tab>
</ul>
</tabset>
<!-- Tab panes -->
<div
class=
"tab-content"
data-ng-controller=
"DetailsController"
>
<div
role=
"tabpanel"
class=
"tab-pane "
id=
"home"
>
<section
data-ng-repeat=
"(key,value) in details"
data-ng-if=
"isString(value)"
data-ng-include=
"'/modules/details/views/attribute.html'"
></section>
</div>
<div
role=
"tabpanel"
class=
"tab-pane"
id=
"profile"
>
<section
data-ng-include=
"'/modules/details/views/schema.html'"
></section></div>
<div
role=
"tabpanel"
class=
"tab-pane active"
id=
"messages"
><div
data-ng-include=
"'/modules/lineage/views/lineage.html'"
></div></div>
<!--<div role="tabpanel" class="tab-pane" id="settings">...</div>-->
</div>
</div>
</div>
</div>
dashboard/v2/public/modules/details/views/lineage.html
0 → 100644
View file @
1541ec7f
<div
data-ng-include=
"'/modules/lineage/views/lineage.html'"
></div>
\ No newline at end of file
dashboard/v2/public/modules/lineage/lineageController.js
View file @
1541ec7f
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/lineage/views/lineage.html
View file @
1541ec7f
...
@@ -17,5 +17,9 @@
...
@@ -17,5 +17,9 @@
-->
-->
<div
data-ng-controller=
"LineageController"
>
<div
data-ng-controller=
"LineageController"
>
<svg></svg>
<svg
class=
"lineage-viz"
><g></svg>
</div>
</div>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment