dandimrod
(Daniel Diment)
September 1, 2024, 8:08pm
1
I’ve created a new plugin that can generate kanban boards with the query system:
* [TODO] help with things 📅 2022-11-26 #test [user:test]
* [ON GOING] help
```kanban
template:
template
query:
task where page = @page.name
columns:
- id: TODO
title: ToDo
- id: ON GOING
title: On Going
- id: DONE
title: Done
options:
dragItems: false
dragTables: false
```
Will show as:
At the moment it just renders it, but I hope I can make changes that you make on the board to reflect on the list of tasks.
To install run the {[Plugs: Add]} command and paste in: github:dandimrod/silverbullet-kanban/kanban.plug.js
Link to the repository
As always, any feedback is appreciated!
8 Likes
zef
(Zef Hemel)
September 5, 2024, 8:30pm
2
This looks very promising. Can’t wait to try this out!
nikolasdi
(Nikolas)
September 10, 2024, 12:44am
3
Thanks a lot for this, it looks great! It shows like this for me though:
How did the scroll bars get there?
dandimrod
(Daniel Diment)
September 10, 2024, 8:41am
4
@nikolasdi Hmm, what resolution are you using in your screen? By default it takes as much space as the rest of the notes, so the use of scrollbars are unavoidable, but the vertical scroll is a bit weird there. I’m thinking on adding a fullscreen button that would make the kanban fullscreen so it is easier to manipulate, hope I can add it into a new release soon, I’ll let you know then!
nikolasdi
(Nikolas)
September 10, 2024, 12:09pm
5
Resolution is 1920x1080.
Problem was solved however by adding “responsivePercentage: true” to the options. The board autoadjust and shows no scrollbars.
zef
(Zef Hemel)
September 10, 2024, 12:58pm
6
Added to the website Plugs/Kanban
2 Likes