-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaster-items-viewer.js
88 lines (86 loc) · 2.74 KB
/
master-items-viewer.js
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
define([
"text!./master-items-viewer-template.html",
"text!./lib/css/master-items-viewer.css",
"./lib/js/property",
"jquery",
"qlik",
"./lib/js/masterItemService",
"./lib/js/table-resizer",
"./lib/js/jq-highlight",
],
function ( template, cssContent, prop, jQuery, qlik, myService ) {
'use strict';
$("<style>").html(cssContent).appendTo("head");
return {
definition: prop,
support: {
export: false,
exportData: false,
snapshot: true
},
template: template,
controller: ['$scope', 'masterItemService', function( $scope, masterItemService ) {
var masterItems,
fetchData = masterItemService.getData().done(function(allMasterItems){
masterItems = allMasterItems;
getMasterLibrary(1);
}),
getMasterLibrary = function(callType){
callType == 1 ? ($scope.measureDetails = masterItems.measures,createTagList($scope.measureDetails))
: ($scope.measureDetails = masterItems.dimensions,createTagList($scope.measureDetails));
},
searchValue='',
// create list of all tags with unique values
createTagList = function(list){
var tagList=[];
list.forEach(function(measure){
if(measure.qData.tags.length > 0){
measure.qData.tags.forEach(function(tag){
if(!tagList.includes(tag)){
tagList.push(tag);
};
});
};
});
$scope.tags = tagList;
};
$scope.measureCss = 'lui-active'
// function to change views (dimensions or measures)
$scope.viewChange = function(viewNo){
getMasterLibrary(viewNo);
viewNo == 1 ? ($scope.measureCss = 'lui-active', $scope.dimensionCss = '') : ($scope.measureCss = '', $scope.dimensionCss = 'lui-active');
$scope.searchTagAndClear('');
};
// search highlighter function
$scope.search = function () {
searchValue = $('#table-search').val().toLowerCase();
$('.tr-highlight').removeHighlight();
$('.tr-highlight').highlight(searchValue);
};
// clear search function
$scope.searchTagAndClear = function (tag) {
if(tag.length > 0){
$scope.searchText = tag;
$scope.search();
}
else{
$('#table-search').val('');
$scope.searchText = '';
$scope.search();
};
};
// sorting function for the view
$scope.propertyName = 'qData.title';
$scope.reverse = true;
$scope.sortBy = function(propertyName) {
$scope.reverse = ($scope.propertyName === propertyName) ? !$scope.reverse : false;
$scope.propertyName = propertyName;
};
}],
paint: function ($element, layout) {
// set hight for the scroll bar
layout.props.tagsFilter == true ? $(".table-container").css("max-height", ($element.height()-200)):$(".table-container").css("max-height", ($element.height()-120));
return qlik.Promise.resolve();
}
};
});