-
Notifications
You must be signed in to change notification settings - Fork 0
/
API.js
253 lines (224 loc) · 7.85 KB
/
API.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
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
function sendTextToAPI() {
var userInput1 = document.getElementById("user_input1").value;
var userInput2 = document.getElementById("user_input2").value;
var apiUrl = 'http://127.0.0.1:5000/';
document.getElementById("loadingContainer").style.display = "flex"
const errorMessage = document.getElementById("errorMessage");
errorMessage.style.display = "none";
document.getElementById("resultContainer").style.display = "none";
document.getElementById("reviewsContainerHeading").style.display = "none";
var request = new Request(apiUrl, {
method: 'POST',
body: JSON.stringify({text1: userInput1, text2: userInput2 }),
headers: {
'Content-Type': 'application/json'
}
});
fetch(request)
.then(function(response) {
return response.json();
})
.then(function (data) {
if (data.dataframe.length === 0) {
errorMessage.style.display = "block";
document.getElementById("resultContainer").style.display = "none";
} else
createHighchartsBarChart(data.dataframe, 'barChartContainer');
createHighchartsGauge(data.dataframe, 'gaugeChartContainer');
updateReviews(data.dataframe);
console.log(data.dataframe);
document.getElementById("loadingContainer").style.display = "none";
document.getElementById("resultContainer").style.display = "block";
document.getElementById("reviewsContainerHeading").style.display = "block";
})
.catch(function(error) {
console.error('Error:', error);
loadingCircle.style.display = "none";
resultContainer.innerHTML = "An error occurred.";
resultContainer.style.display = "block";
});
};
function createHighchartsBarChart(data, containerId) {
const sentimentCounts = { 1: 0, 2: 0, 3: 0, 4: 0, 5: 0 };
data.forEach(row => {
sentimentCounts[row.Output]++;
});
const labels = Object.keys(sentimentCounts);
const values = Object.values(sentimentCounts);
Highcharts.chart(containerId, {
chart: {
type: 'bar',
backgroundColor: 'rgba(0, 0, 0, 0.1)',
},
title: {
text: 'Sentiment rating count',
style: {
color: 'black',
},
},
xAxis: {
categories: labels.map(label => `${label}`),
title: {
text: 'Sentiment',
style: {
color: 'black',
},
},
labels: {
style: {
color: 'black',
},
},
},
yAxis: {
min: 0,
title: {
text: 'Count',
style: {
color: 'black',
},
},
labels: {
style: {
color: 'black',
},
},
},
series: [{
name: 'Count',
data: values,
}]
});
};
function createHighchartsGauge(data, containerId) {
const totalSentiment = data.reduce((sum, row) => sum + row.Output, 0);
const averageSentiment = totalSentiment / data.length;
const minRange = 1;
const maxRange = 5;
Highcharts.chart(containerId, {
chart: {
type: 'gauge',
plotBackgroundColor: null,
plotBackgroundImage: null,
plotBorderWidth: 0,
plotShadow: false,
height: '80%'
},
title: {
text: 'Average Sentiment Rating'
},
pane: {
startAngle: -90,
endAngle: 90,
background: [{
outerRadius: '100%',
innerRadius: '0%',
shape: 'arc',
backgroundColor: {
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
stops: [
[0, '#FFF'],
[1, '#DDD']
]
}
}]
},
yAxis: {
min: minRange,
max: maxRange,
title: {
text: 'Rating'
},
},
plotOptions: {
gauge: {
dataLabels: {
enabled: false
},
dial: {
radius: '100%',
backgroundColor: 'black',
borderColor: 'silver',
borderWidth: 1,
baseWidth: 10,
topWidth: 1,
rearLength: '0'
}
}
},
series: [{
name: 'Average Rating',
data: [averageSentiment],
tooltip: {
valueSuffix: ' stars'
}
}]
});
}
document.addEventListener("DOMContentLoaded", function() {
const readMoreLinks = document.querySelectorAll('.read-more');
const readLessLinks = document.querySelectorAll('.read-less');
const reviewTexts = document.querySelectorAll('.review-text');
readMoreLinks.forEach((readMore, index) => {
readMore.addEventListener('click', function() {
reviewTexts[index].style.height = 'auto';
readMore.style.display = 'none';
readLessLinks[index].style.display = 'inline';
});
});
readLessLinks.forEach((readLess, index) => {
readLess.addEventListener('click', function() {
reviewTexts[index].style.height = '80px';
readMoreLinks[index].style.display = 'inline';
readLess.style.display = 'none';
});
});
});
function updateReviews(data) {
const reviewsList = document.getElementById("reviewsList");
reviewsList.innerHTML = "";
const table = document.createElement("table");
data.forEach(row => {
const rowElement = document.createElement("tr");
const ratingCell = document.createElement("td");
ratingCell.textContent = row.Output;
ratingCell.style.color = "white";
ratingCell.style.fontSize = "16px";
ratingCell.style.fontFamily = "monospace";
rowElement.appendChild(ratingCell);
const reviewCell = document.createElement("td");
reviewCell.textContent = row.Review;
reviewCell.style.color = "white";
reviewCell.style.fontFamily = "monospace";
rowElement.appendChild(reviewCell);
table.appendChild(rowElement);
});
reviewsList.appendChild(table);
}
// function createOutputMappingTable() {
// const outputMapping = {
// 1: "Terrible",
// 2: "Bad",
// 3: "Neutral",
// 4: "Good",
// 5: "Amazing"
// };
// const tableContainer = document.getElementById("outputMappingTable");
// const table = document.createElement("table");
// const headerRow = table.insertRow(0);
// const headerCell1 = headerRow.insertCell(0);
// const headerCell2 = headerRow.insertCell(1);
// headerCell1.textContent = "Star Rating";
// headerCell2.textContent = "Defintion of the Rating";
// let rowIndex = 1;
// for (const key in outputMapping) {
// const row = table.insertRow(rowIndex);
// const cell1 = row.insertCell(0);
// const cell2 = row.insertCell(1);
// cell1.textContent = key;
// cell2.textContent = outputMapping[key];
// rowIndex++;
// }
// tableContainer.appendChild(table);
// }
// document.addEventListener("DOMContentLoaded", createOutputMappingTable);