aboutsummaryrefslogtreecommitdiff
path: root/assets/js
diff options
context:
space:
mode:
authorMarvin Borner2018-06-21 18:34:57 +0200
committerMarvin Borner2018-06-21 18:34:57 +0200
commitc4dd258f2a49f5d72aadd75e92918f75f1a528f2 (patch)
treed0c0bb2b0c17ec5bb873a90ff8d8cab05c735678 /assets/js
parent52fdffc06ae449e4a1f0c57adf95412312e42224 (diff)
Added most watched chart
Diffstat (limited to 'assets/js')
-rwxr-xr-xassets/js/main.js96
1 files changed, 82 insertions, 14 deletions
diff --git a/assets/js/main.js b/assets/js/main.js
index 5f8484d..af7b56d 100755
--- a/assets/js/main.js
+++ b/assets/js/main.js
@@ -4,14 +4,14 @@ let NetflixJson;
CookieInput.keyup(function (e) {
if (e.keyCode === 13) {
$.ajax({
- url: "assets/php/getJson.php",
+ url: "assets/php/getNetflixJson.php",
data: {
"Cookie": CookieInput.val()
},
type: "POST",
}).done(function (response) {
- AnalyzeData(response);
CookieInput.val("");
+ AnalyzeData(response);
});
}
});
@@ -52,6 +52,8 @@ function AnalyzeData(JsonResponse) {
*/
NetflixJson = JSON.parse(JsonResponse);
console.log(NetflixJson);
+ let EveryWatched = [];
+ let IndividualTitles = [];
let IndividualSeries = [];
let IndividualMovies = [];
let AverageWatchTimes = [];
@@ -60,16 +62,21 @@ function AnalyzeData(JsonResponse) {
item.forEach(function (eachItem, ItemNumber) {
if ("seriesTitle" in eachItem) { // is series
const CurrentTitle = NetflixJson[pageKey][ItemNumber].seriesTitle;
- if (IndividualSeries.indexOf(CurrentTitle) === -1 && CurrentTitle !== undefined) { // only if not alreadyy crawled -> individualism
+ EveryWatched.push(CurrentTitle);
+ if (IndividualSeries.indexOf(CurrentTitle) === -1 && CurrentTitle !== undefined) { // only if not already crawled -> individualism
IndividualSeries.push(CurrentTitle);
+ IndividualTitles.push(CurrentTitle);
}
} else { // is movie
const CurrentTitle = NetflixJson[pageKey][ItemNumber].videoTitle;
- if (IndividualMovies.indexOf(CurrentTitle) === -1 && CurrentTitle !== undefined) { // only if not alreadyy crawled -> individualism
+ EveryWatched.push(CurrentTitle);
+ if (IndividualMovies.indexOf(CurrentTitle) === -1 && CurrentTitle !== undefined) { // only if not already crawled -> individualism
IndividualMovies.push(CurrentTitle);
+ IndividualTitles.push(CurrentTitle);
}
}
+ // get watch time
const DayTimeInSeconds = new Date(NetflixJson[pageKey][ItemNumber].date * 1000);
const DayTimeInHours = DayTimeInSeconds.getHours();
AverageWatchTimes.push(DayTimeInHours);
@@ -80,35 +87,96 @@ function AnalyzeData(JsonResponse) {
// Calculate watch time occurrence (average times in which the user watches sth.)
let AverageWatchTimeOccurrence = [];
- const OccurrenceCounter = new Map([...new Set(AverageWatchTimes)].map(
+ const WatchTimeOccurrenceCounter = new Map([...new Set(AverageWatchTimes)].map(
x => [x, AverageWatchTimes.filter(y => y === x).length]
));
for (let i = 0; i < 24; i++) {
- AverageWatchTimeOccurrence.push(OccurrenceCounter.get(i));
+ AverageWatchTimeOccurrence.push(WatchTimeOccurrenceCounter.get(i));
}
+ // Calculate the most watched series/movie
+ let TitleCount = [];
+ const UnsortedTitleOccurrenceCounter = EveryWatched.reduce((prev, curr) => (prev[curr] = ++prev[curr] || 1, prev), {});
+ const SortedTitleOccurrenceCounter = sortObject(UnsortedTitleOccurrenceCounter);
+
+ // log
+ console.table(IndividualTitles);
console.table(IndividualSeries);
console.table(IndividualMovies);
- console.table(AverageWatchTimes);
console.table(AverageWatchTimeOccurrence);
+ console.table(SortedTitleOccurrenceCounter);
- RenderData(AverageWatchTimeOccurrence);
+ RenderData(AverageWatchTimeOccurrence, SortedTitleOccurrenceCounter);
}
-function RenderData(AverageWatchTimeOccurrenceArray) {
+function RenderData(AverageWatchTimeOccurrenceArray, TitleOccurrenceCounterObject) {
+ // Render day time chart
const WatchTimeChartElement = document.getElementById("WatchTimeChart").getContext("2d");
const WatchTimeChart = new Chart(WatchTimeChartElement, {
type: 'line',
data: {
labels: ["12am", "1am", "2am", "3am", "4am", "5am", "6am", "7am", "8am", "9am", "10am", "11am", "12pm", "1pm", "2pm", "3pm", "4pm", "5pm", "6pm", "7pm", "8pm", "9pm", "10pm", "11pm"],
datasets: [{
- label: "Average watches at daytime",
- backgroundColor: 'rgb(255, 99, 132)',
- borderColor: 'rgb(255, 99, 132)',
+ label: "Watches at daytime",
+ backgroundColor: "rgb(255, 99, 132)",
+ borderColor: "rgb(255, 99, 132)",
+ cubicInterpolationMode: "monotone",
+ pointRadius: 0,
+ pointHitRadius: 10,
data: AverageWatchTimeOccurrenceArray
}]
},
-
options: {}
});
-} \ No newline at end of file
+
+ // Render and calculate most watched chart
+ const MostWatchedChartElement = document.getElementById("MostWatchedChart").getContext("2d");
+ var MostWatchedChartData = {
+ labels: [],
+ datasets: [{
+ label: "Most watched",
+ backgroundColor: "rgba(75,192,192,0.4)",
+ borderColor: "rgba(75,192,192,1)",
+ data: []
+ }]
+ };
+ Chart.pluginService.register({
+ beforeInit: function (chart) {
+ var data = chart.config.data;
+ for (var key in TitleOccurrenceCounterObject) {
+ if (TitleOccurrenceCounterObject.hasOwnProperty(key)) {
+ data.labels.push(key);
+ data.datasets[0].data.push(TitleOccurrenceCounterObject[key]);
+ }
+ }
+ }
+ });
+ var MostWatchedChart = new Chart(MostWatchedChartElement, {
+ type: 'bar',
+ data: MostWatchedChartData,
+ options: {
+ scales: {
+ yAxes: [{
+ ticks: {
+ beginAtZero: true
+ }
+ }]
+ }
+ }
+ });
+}
+
+function sortObject(list) {
+ var sortable = [];
+ for (var key in list) {
+ sortable.push([key, list[key]]);
+ }
+ sortable.sort(function(a, b) {
+ return (a[1] < b[1] ? -1 : (a[1] > b[1] ? 1 : 0));
+ });
+ var orderedList = {};
+ for (var i = 0; i < sortable.length; i++) {
+ orderedList[sortable[i][0]] = sortable[i][1];
+ }
+ return orderedList;
+ } \ No newline at end of file