org-report-stats/app.js

171 lines
4.9 KiB
JavaScript
Raw Normal View History

2022-07-20 16:03:28 +02:00
const fs = require('node-fs')
const sourceFilePath = 'source/tasks.json';
2022-07-20 16:56:17 +02:00
const stats = {
countAllTasks: 0,
tasksByDay: {}
2022-07-20 16:03:28 +02:00
}
// prendre le json source représentant les tâches DONE
console.log(' ### lecture de source/emacs_json.json');
fs.stat(sourceFilePath, function (err, stat) {
if (err == null) {
console.log(`File ${sourceFilePath} exists`);
sortTasksFromJson(stat)
} else if (err.code === 'ENOENT') {
// file does not exist
console.error(`le fichier ${sourceFilePath} est introuvable. Impossible d en extraire des infos.`)
} else {
console.log('Some other error: ', err.code);
}
});
// parcourir les tâches
2022-07-20 16:56:17 +02:00
function sortTasksFromJson(statObject) {
2022-07-20 16:03:28 +02:00
console.log('sortTasksFromJson')
2022-07-20 16:56:17 +02:00
fs.readFile(sourceFilePath, 'utf8', function (err, data) {
2022-07-20 16:03:28 +02:00
if (err) {
return console.log(err);
}
let dataTransformed = JSON.parse(data);
console.log('data keys ', Object.keys(dataTransformed))
2022-07-20 16:56:17 +02:00
if (dataTransformed["contents"]) {
2022-07-20 16:03:28 +02:00
2022-07-20 16:56:17 +02:00
countTasks = dataTransformed["contents"].length
stats.countAllTasks = countTasks;
console.log('yes data !', countTasks)
console.log('first', dataTransformed["contents"][0])
dataTransformed["contents"].forEach((elem) => {
if (elem['title'] && elem['title'][0]) {
console.log(' - ', elem['title'][0])
}
if (elem['properties'] && elem['properties']['closed']) {
let title = elem['properties']['raw-value'];
let tags = elem['tags'] ? elem['tags'] : [];
let closeDate = elem['properties']['closed']['end'];
let todoKeyword = elem['drawer']['ARCHIVE_TODO'];
let itags = elem['drawer']['ARCHIVE_ITAGS'];
// jour, 11 premiers caractères
let day = closeDate.substring(0, 10);
if (!stats.tasksByDay[day]) {
stats.tasksByDay[day] = []
}
stats.tasksByDay[day].push({
title,
closeDate,
tags,
todoKeyword,
day,
itags
})
// console.log(' ' + title)
} else {
2022-07-20 17:01:53 +02:00
console.log('no', elem['properties']['raw-value'])
2022-07-20 16:56:17 +02:00
}
})
// console.log('element', dataTransformed["contents"]["0"])
} else {
console.log('no content')
2022-07-20 16:03:28 +02:00
}
// console.log(data);
2022-07-20 16:56:17 +02:00
writeHtmlOutput()
2022-07-20 16:03:28 +02:00
});
// les répartir dans des tableaux selon les périodes de temps
}
// sortir un html présentant les périodes de temps et les tâches réalisées
2022-07-20 16:56:17 +02:00
function writeHtmlOutput() {
console.log('writeHtmlOutput', stats.countAllTasks)
let daysListRef = Object.keys(stats.tasksByDay).sort()
let htmlOut = `
<html>
<head>
<title>
Rapport d'activité
</title>
<meta charset="UTF-8" />
<style>
@import "https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css";
</style>
</head>
<body>
<div id="report_days" class="container content">
`
daysListRef.forEach((dayRefString) => {
let tasksOfTheDay = '';
stats.tasksByDay[dayRefString].forEach((dayObj) => {
2022-07-20 17:01:53 +02:00
let graphicKeyword = '✅'
if ('DONE' !== dayObj.todoKeyword) {
graphicKeyword = dayObj.todoKeyword;
}
2022-07-20 16:56:17 +02:00
tasksOfTheDay += ` <li>
<h2 class="subtitle is-1">
2022-07-20 17:01:53 +02:00
<span class="keyword"> ${graphicKeyword}</span>
2022-07-20 16:56:17 +02:00
<span class="title"> ${dayObj.title} </span>
</h2>
2022-07-20 17:01:53 +02:00
<p class="tag is-light is-primary">
2022-07-20 16:56:17 +02:00
${dayObj.itags}
</p>
</li>`
})
htmlOut += `
2022-07-20 17:01:53 +02:00
<div class="box">
2022-07-20 16:56:17 +02:00
<h1 class="title is-1">
2022-07-20 17:01:53 +02:00
<span class="day-ref">
${dayRefString}
</span>
<span class="counter pull-right badge">
${stats.tasksByDay[dayRefString].length}
</span>
2022-07-20 16:56:17 +02:00
</h1>
2022-07-20 17:01:53 +02:00
2022-07-20 16:56:17 +02:00
<div class="day-detail">
2022-07-20 17:01:53 +02:00
<ul>
${tasksOfTheDay}
</ul>
</div>
</div> `
2022-07-20 16:56:17 +02:00
})
htmlOut += `
2022-07-20 17:01:53 +02:00
2022-07-20 16:56:17 +02:00
</div>
</body>
</html>
`
fs.writeFile('output/output.json', JSON.stringify(stats), function (err, data) {
if (err) {
return console.log(err);
}
console.log('wrote output json', data)
})
fs.writeFile('output/output.html', htmlOut, function (err, data) {
if (err) {
return console.log(err);
}
console.log('wrote output html', data)
})
}
function sortObj(obj) {
return Object.keys(obj).sort().reduce(function (result, key) {
result[key] = obj[key];
return result;
}, {});
}