last two blog posts
This commit is contained in:
parent
464a8a9b98
commit
588089c6e5
|
@ -16,7 +16,7 @@ First off, I don't know any JavaScript 🙈. It's a gap in my (beginner) program
|
|||
|
||||
But for some reason, I **wasn't** able to do both after each other ➰. Finally, I found a solution: I had to do both at the same time 🙃 Basically, I found an answer without understanding the answer 💢. But, for the time being, a quick and dirty solution to my very personal problem is good enough. As I start learning JavaScript, I could reinvestigate this script further. For now, here is the code I have, which I still have to edit [per the very nice and helpful comments the creator of the ObsidianSimpleTimeTracker-plugin gave me](https://github.com/Ellpeck/ObsidianSimpleTimeTracker/issues/58).
|
||||
|
||||
The next thing would be to build this out to a neat table, to actually give the overview that I want (this still produces a list that is too long). There's always room for improvement 👷.
|
||||
The next thing would be to build this out to a neat table, to actually give the overview that I want (this still produces a list that is too long). I could explore `dv.table()`, which [should be able to take an array of data](https://blacksmithgu.github.io/obsidian-dataview/api/code-reference/), like tracker entry names and time duration I gathered before. There's always room for improvement 👷.
|
||||
|
||||
```js
|
||||
let api = dv.app.plugins.plugins["simple-time-tracker"].api;
|
||||
|
|
80
content/posts/little-challenges.md
Normal file
80
content/posts/little-challenges.md
Normal file
|
@ -0,0 +1,80 @@
|
|||
+++
|
||||
title = 'Incremental learning with little challenges'
|
||||
date = "2024-10-21"
|
||||
updated = 2024-10-21
|
||||
[taxonomies]
|
||||
tags = ['programming', 'Obsidian', 'JavaScript']
|
||||
+++
|
||||
|
||||
# Baby steps
|
||||
|
||||
A little while ago, I wrote [a blog post](https://joostagterhoek.nl/posts/basic-javascript/) about my first experience with Obsidian, more specifically with DataviewJS. DataviewJS is an API in Obsidian that allows you to excute JavaScript and access the dataview indices and query engine. Basically, if the default Dataview query language to list, filter, sort or group data isn't enough for you, you're free to write your own logic. For me, the goal was to take all the time trackers created with the amazing ObsidianSimpleTimeTracker-plugin and show the worked hours per task or project. This worked, but not entirely in the tabular format I wanted.
|
||||
|
||||
# Fiddling
|
||||
|
||||
I was happy that my basic JavaScript fiddling worked, but it didn't yet provide me with what I needed: a solid overview of the hours worked per task or project, per day. As a security analyst I am increasingly more involved with various projects that require me to keep note of my worked hours. A table would be the optimal overview for what would be a very long list of data per worked day, over the course of multiple weeks and months.
|
||||
|
||||
# Execution flow
|
||||
|
||||
Eventually, I managed to fix my issue and organize the output of every daily time tracker in a single row, with formatted time values (xh, xxm xxs) per project or task. As I know in advance what my daily tasks are, I didn't have to make this part dynamic. But it did present me with the problem of how to have a row entry for each day, where I wasn't sure what project or task I worked on that day. Basically, if I have project 1, 2, 3 and 4, how can I make sure the table rows for Tuesday (worked only on project 1) and Thursday (worked on projects 2, 3 and 4) are the same? What helped me, was think it all through: what data do I want to represent in the table, what data type do I need for that, how (and when) in my logic will I fill that data?
|
||||
|
||||
# The way I did it
|
||||
In the end, I chose for string values per entry name (name of a task or project) and their durations. Every time I iterate over an existing time tracker entry, I check for the entry name and fill the string value of the corresponding duration (`entry_name == duration, socc_duration = getTickerEntryDuration`, basically). Iterating over every existing tracker in my Obsidian vault, I first iterate over the individual tracker entries and fill the string variables as stated. Once this is done, I push these values to a premade JavaScript object, with key-value pairs like `date: dateBasedOnObsidianNoteName, socc:socc_duration`. Then, I build an Obsidian Dataview table with the `dv.table()` function, which I pass this dynamically updated JavaScript object, which then displays rows for each iterated tracker and its entries.
|
||||
|
||||
# The code
|
||||
|
||||
Enough jabbering, where's the code? Here it is, which results in this nice looking table, that displays best in a Canvas view.
|
||||
|
||||
The code:
|
||||
```js
|
||||
let api = dv.app.plugins.plugins["simple-time-tracker"].api;
|
||||
|
||||
|
||||
const duration = [{datum: '', socc: '', tdw: '', cloud: '', studie: '', pauze: ''}]
|
||||
|
||||
let entry_date = ''
|
||||
let entry_name = ''
|
||||
let entry_duration = ''
|
||||
|
||||
let socc_duration = ''
|
||||
let cloud_duration = ''
|
||||
let tdw_duration = ''
|
||||
let studie_duration = ''
|
||||
let pauze_duration = ''
|
||||
|
||||
|
||||
for(let page of dv.pages('"tijd-bijhouden"').sort(p => p.file.name, 'desc')) {
|
||||
// load trackers in the file with the given path
|
||||
|
||||
let trackers = await api.loadAllTrackers(page.file.path);
|
||||
|
||||
if (trackers.length)
|
||||
|
||||
for (let {section, tracker} of trackers) {
|
||||
let number_of_trackers = tracker.entries.length;
|
||||
for( let i = 0; i < number_of_trackers; i++) {
|
||||
if (tracker.entries[i])
|
||||
entry_date = page.file.name
|
||||
entry_name = tracker.entries[i]['name']
|
||||
if (entry_name == 'socc')
|
||||
socc_duration = api.formatDuration(api.getDuration(tracker.entries[i]))
|
||||
else if (entry_name == 'cloud')
|
||||
cloud_duration = api.formatDuration(api.getDuration(tracker.entries[i]))
|
||||
else if (entry_name == 'tdw')
|
||||
tdw_duration = api.formatDuration(api.getDuration(tracker.entries[i]))
|
||||
else if (entry_name == 'studie')
|
||||
studie_duration = api.formatDuration(api.getDuration(tracker.entries[i]))
|
||||
else if (entry_name == 'pauze')
|
||||
pauze_duration = api.formatDuration(api.getDuration(tracker.entries[i]))
|
||||
|
||||
}
|
||||
|
||||
duration.push({datum: page.file.name, socc: socc_duration, cloud: cloud_duration, tdw: tdw_duration, studie: studie_duration, pauze: pauze_duration})
|
||||
}
|
||||
}
|
||||
|
||||
dv.table(['datum', 'socc', 'cloud', 'tdw', 'studie', 'pauze'], duration.map(r => [r.datum, r.socc, r.cloud, r.tdw, r.studie, r.pauze]));
|
||||
```
|
||||
|
||||
Edited screenshot of the code in action:
|
||||
![](/little-challenges_2024-10-21_17-24-01.png)
|
BIN
static/images/little-challenges_2024-10-21_17-24-01.png
Normal file
BIN
static/images/little-challenges_2024-10-21_17-24-01.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
Loading…
Reference in New Issue
Block a user