report by day ok
This commit is contained in:
parent
aeed94e3dc
commit
d2d3f32c8a
137
app.js
137
app.js
|
@ -1,7 +1,8 @@
|
|||
const fs = require('node-fs')
|
||||
const sourceFilePath = 'source/tasks.json';
|
||||
const statsMonth = {
|
||||
count: 0
|
||||
const stats = {
|
||||
countAllTasks: 0,
|
||||
tasksByDay: {}
|
||||
}
|
||||
// prendre le json source représentant les tâches DONE
|
||||
console.log(' ### lecture de source/emacs_json.json');
|
||||
|
@ -19,22 +20,61 @@ fs.stat(sourceFilePath, function (err, stat) {
|
|||
});
|
||||
|
||||
// parcourir les tâches
|
||||
function sortTasksFromJson(statObject){
|
||||
function sortTasksFromJson(statObject) {
|
||||
console.log('sortTasksFromJson')
|
||||
fs.readFile(sourceFilePath, 'utf8', function (err,data) {
|
||||
fs.readFile(sourceFilePath, 'utf8', function (err, data) {
|
||||
if (err) {
|
||||
return console.log(err);
|
||||
}
|
||||
let dataTransformed = JSON.parse(data);
|
||||
console.log('data keys ', Object.keys(dataTransformed))
|
||||
if(dataTransformed["contents"]){
|
||||
if (dataTransformed["contents"]) {
|
||||
|
||||
|
||||
countTasks = dataTransformed["contents"].length
|
||||
console.log('yes data !' , countTasks)
|
||||
console.log('element' , dataTransformed["contents"]["0"])
|
||||
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 {
|
||||
console.log('no' , elem['properties']['raw-value'])
|
||||
}
|
||||
})
|
||||
|
||||
// console.log('element', dataTransformed["contents"]["0"])
|
||||
|
||||
} else {
|
||||
console.log('no content')
|
||||
}
|
||||
// console.log(data);
|
||||
writeHtmlOutput()
|
||||
});
|
||||
|
||||
|
||||
|
@ -43,6 +83,81 @@ function sortTasksFromJson(statObject){
|
|||
|
||||
|
||||
// sortir un html présentant les périodes de temps et les tâches réalisées
|
||||
function writeHtmlOutput(){
|
||||
console.log('writeHtmlOutput')
|
||||
}
|
||||
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) => {
|
||||
tasksOfTheDay += ` <li>
|
||||
<h2 class="subtitle is-1">
|
||||
<span class="keyword"> ${dayObj.todoKeyword}</span>
|
||||
<span class="title"> ${dayObj.title} </span>
|
||||
</h2>
|
||||
<p class="tags">
|
||||
${dayObj.itags}
|
||||
</p>
|
||||
</li>`
|
||||
})
|
||||
htmlOut += `
|
||||
<h1 class="title is-1">
|
||||
<span class="day-ref">
|
||||
|
||||
${dayRefString}
|
||||
</span>
|
||||
<span class="counter pull-right badge">
|
||||
${stats.tasksByDay[dayRefString].length}
|
||||
</span>
|
||||
|
||||
</h1>
|
||||
<div class="day-detail">
|
||||
<ul>
|
||||
${tasksOfTheDay}
|
||||
</ul>
|
||||
</div>
|
||||
`
|
||||
})
|
||||
htmlOut += `
|
||||
</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;
|
||||
}, {});
|
||||
}
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
"nodemon": "^2.0.19"
|
||||
},
|
||||
"scripts" : {
|
||||
"start" : "nodemon app.js"
|
||||
"start" : "node app.js"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue