-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTADetailedAnalysisTable.js
More file actions
275 lines (243 loc) · 8.61 KB
/
TADetailedAnalysisTable.js
File metadata and controls
275 lines (243 loc) · 8.61 KB
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/**
* @class TADetailedAnalysisTable
* @classdesc Class to work with Detailed Analysis table
*
* @constructs TADetailedAnalysisTable
* @param {Object} globals - object of global report variables {pageContext: this.pageContext, report: report, user: user, state: state, confirmit: confirmit, log: log}
* @param {TAFoldee} folder - Text Analytics folder to build table from
* @param {Table} table
* @param {String} selectedCategory
* @param {String} selectedQuestion
* @param {String} distribution - "0" for counts "1" for percents
*/
class TADetailedAnalysisTable{
private var _globals;
private var _folder: TAFolder;
private var _taTableUtils: TATableUtils;
private var _taMasks: TAMasks;
private var _table: Table;
private var _selectedCategory;
private var _selectedQuestion;
private var _distribution;
private var _multiQuestion;
function TADetailedAnalysisTable(globals, folder, table, selectedCategory, selectedQuestion, distribution, multiQuestion){
_globals = globals;
_folder = folder;
_taMasks = new TAMasks(globals, folder);
_table = table;
_taTableUtils = new TATableUtils(globals, folder, table);
_selectedCategory = selectedCategory && selectedCategory != "emptyv" ? selectedCategory : "all";
_selectedQuestion = selectedQuestion && selectedQuestion != "emptyv" ? selectedQuestion : "all";
_distribution = distribution ? distribution : "0";
_multiQuestion = multiQuestion;
_render();
}
/**
* @memberof TADetailedAnalysisTable
* @instance
* @function GetTATableUtils
* @returns {TATAbleUtils}
*/
function GetTATableUtils(){
return _taTableUtils;
}
/**
* @memberof TADetailedAnalysisTable
* @private
* @instance
* @function _render
*/
private function _render(){
var rowexpr = _getRowheadersExpression();
var colexpr = _getColumnheadersExpression();
_taTableUtils.CreateTableFromExpression(rowexpr, colexpr);
_setupTableDistribution();
_table.RowNesting = TableRowNestingType.Nesting;
_setupConditionalFormatting();
_addChartColumn();
}
/**
* @memberof TADetailedAnalysisTable
* @private
* @instance
* @function _getRowheadersExpression
*/
private function _getRowheadersExpression(){
var rowexpr = "";
var blockHeader = "";
var qType = "categorysentiment";
var categoryHeader = "(";
var mask = false;
if(_distribution == "1"){
blockHeader += _taTableUtils.GetTAQuestionExpression("overallsentiment",false,"hidedata:true") + "+";
}
if( _selectedQuestion != "all" ){
blockHeader += _selectedQuestion+'{id:'+_selectedQuestion+';totals:false'
if(_multiQuestion){
blockHeader+= ";collapsed:true";
}
blockHeader += "}/";
}
if( _selectedCategory != "all" ){
mask = _taMasks.GetAllChildrenMask(_selectedCategory);
mask.push(_selectedCategory)
}
categoryHeader += _taTableUtils.GetTAQuestionExpression(qType, mask) + ")";
rowexpr += blockHeader + categoryHeader;
return rowexpr
}
/**
* @memberof TADetailedAnalysisTable
* @private
* @instance
* @function _getColumnheadersExpression
*/
private function _getColumnheadersExpression(){
var columnexpr = "";
var columnbase = "[N]{hideheader:true;hidedata:true}";
var countformula = _getColumnFormulaExpression();
var columnstatistic = "[STATISTICS]{statistics:avg}";
var positivecolumn = _taTableUtils.GetCategoriesExpression( "pos", false, false, _distribution, Config.SentimentRange );
var neutralcolumn = _taTableUtils.GetCategoriesExpression( "neu", false, false, _distribution, Config.SentimentRange );
var negativecolumn = _taTableUtils.GetCategoriesExpression( "neg", false, false, _distribution, Config.SentimentRange );
columnexpr = [columnbase, countformula, columnstatistic, positivecolumn, neutralcolumn, negativecolumn].join("+");
return columnexpr
}
/**
* @memberof TADetailedAnalysisTable
* @private
* @instance
* @function _getColumnFormulaExpression
*/
private function _getColumnFormulaExpression(){
var countformulaexpression;
var countformula = '[FORMULA]{decimals:0;label:"Comments";hideheader:true';
if( _distribution == "1"){
countformula += ";percent:true";
countformulaexpression = '"IF((cellv(1,1)>0),(cellv(col-1,row)/cellv(1,1)),EMPTYV())"';
}else{
countformula += ";percent:false";
countformulaexpression = '"IF(cellv(col-1,row)>0,cellv(col-1,row),EMPTYV())"';
}
countformula += ";expression:"+countformulaexpression;
countformula += "}";
return countformula
}
/**
* @memberof TADetailedAnalysisTable
* @private
* @instance
* @function _setupTableDistribution
*/
private function _setupTableDistribution(){
_table.Distribution.Enabled = true;
_table.Distribution.VerticalPercents = false;
if(_distribution == "1"){
_table.Distribution.HorizontalPercents = true;
_table.Distribution.Count = false;
}else{
_table.Distribution.HorizontalPercents = false;
_table.Distribution.Count = true;
}
}
/**
* @memberof TADetailedAnalysisTable
* @private
* @instance
* @function _addChartColumn
*/
private function _addChartColumn(){
var chartHeader = _taTableUtils.GetChartHeader(
ChartComboType.Bar100,
[
{
Formula: "cellv(col-25,row)",
Color: (Config.Colors.NegNeuPosPalette.Positive)
},
{
Formula: "cellv(col-13,row)",
Color: (Config.Colors.NegNeuPosPalette.Neutral)
},
{
Formula: "cellv(col-1,row)",
Color: (Config.Colors.NegNeuPosPalette.Negative)
}
],
" ");
_table.ColumnHeaders.Add(chartHeader);
}
/**
* @memberof TADetailedAnalysisTable
* @private
* @instance
* @function _setupConditionalFormatting
*/
private function _setupConditionalFormatting(){
_taTableUtils.SetupConditionalFormatting(
[
[
{
expression: 'cellv(col, row)<('+(Config.SentimentRange.Neutral[0] - 6)+') AND cellv(col,row)<>EMPTYV() ',
style: 'negative'
},
{
expression: '(cellv(col, row)>=('+(Config.SentimentRange.Neutral[0] - 6)+')) AND (cellv(col, row)<='+(Config.SentimentRange.Neutral[Config.SentimentRange.Neutral.length - 1] - 6)+') AND cellv(col,row)<>EMPTYV()',
style: 'neutral'
},
{
expression: 'cellv(col, row)>'+(Config.SentimentRange.Neutral[Config.SentimentRange.Neutral.length - 1] - 6)+' AND cellv(col,row)<>EMPTYV()',
style: 'positive'
}
]
],
"NegNeuPos",
{
axis: Area.Columns,
direction: Area.Left,
indexes: "3"
}
);
_taTableUtils.SetupConditionalFormatting(
[
{
expression: 'cellv(col,row)>=0',
style: 'negative'
},
],
"Negative",
{
axis: Area.Columns,
direction: Area.Left,
indexes: "39"
}
);
_taTableUtils.SetupConditionalFormatting(
[
{
expression: 'cellv(col,row)>=0',
style: 'neutral'
},
],
"Negative",
{
axis: Area.Columns,
direction: Area.Left,
indexes: "27"
}
);
_taTableUtils.SetupConditionalFormatting(
[
{
expression: 'cellv(col,row)>=0',
style: 'positive'
},
],
"Negative",
{
axis: Area.Columns,
direction: Area.Left,
indexes: "15"
}
);
}
}