1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
angular.module('dgc.details').controller('detailsController', ['$window', '$scope', '$state', '$stateParams', 'detailsResource', 'schemaResource',
function($window, $scope, $state, $stateParams, detailsResource, schemaResource) {
$scope.tableName = false;
$scope.isTable = false;
$scope.isLineage = false;
detailsResource.get({
id: $stateParams.id
}, function(data) {
$scope.tableName = data.values.name;
$scope.onActivate('io');
$scope.isTags = (typeof data.traits !== 'undefined' && typeof data.traits === 'object') ? true : false;
if (data && data.values) {
var getName = function(aaa, attr) {
detailsResource.get({
id: attr.id
}, function(data1) {
if (data1.values && data1.values.name) {
attr.name = data1.values.name;
}
});
};
for (var aaa in data.values) {
if (typeof data.values[aaa] === 'object' && data.values[aaa] !== null && data.values[aaa].id && typeof data.values[aaa].id === 'string') {
data.values[aaa].name = data.values[aaa].id;
getName(aaa, data.values[aaa]);
}
if (typeof data.values[aaa] === 'object' && data.values[aaa] !== null && data.values[aaa].id && typeof data.values[aaa].id === 'object') {
data.values[aaa].id.name = data.values[aaa].id.id;
getName(aaa, data.values[aaa].id);
}
if (typeof data.values[aaa] === 'object' && angular.isArray(data.values[aaa]) === true) {
var arrObj = data.values[aaa];
for (var a = 0; a < arrObj.length; a++) {
if (typeof arrObj[a].id === 'string') {
arrObj[a].name = arrObj[a].id;
getName(arrObj[a], arrObj[a]);
}
}
}
}
}
$scope.details = data;
if (data && data.values && data.values.name && data.values.name !== "") {
schemaResource.get({
tableName: data.values.name
}, function(data1) {
if (data1.results) {
$scope.schema = data1.results.rows;
$scope.isSchema = (data1.results.rows && data1.results.rows.length > 0) ? true : false;
for (var t = 0; t < data1.results.rows.length; t++) {
if (data1.results.rows[t].$id$) {
$scope.isTraitId = true;
}
if (data1.results.rows[t].type) {
$scope.isHiveSchema = true;
}
if ($scope.isTraitId && $scope.isHiveSchema) {
break;
}
}
}
});
}
});
$scope.$on('show_lineage', function() {
$scope.isLineage = true;
});
$scope.isNumber = angular.isNumber;
$scope.isObject = angular.isObject;
$scope.isString = angular.isString;
$scope.isArray = angular.isArray;
$scope.onActivate = function tabActivate(tabname) {
$scope.$broadcast('render-lineage', {
type: tabname,
tableName: $scope.tableName,
guid: $stateParams.id
});
};
$scope.openAddTagHome = function(traitId) {
$state.go('addTagDetails', {
tId: traitId
});
};
$scope.goDetails = function(id) {
$state.go("details", {
id: id
});
};
$scope.goBack = function() {
$window.history.back();
};
}
]);