Open avcourt opened 1 month ago
Thank you very much for opening up this issue! I am currently a bit overwhelmed by the many requests that arrive each week, so please forgive me, if I fail to respond personally. I am still very likely to at least skim read your request and I'll probably try to fix all (real) bugs if possible and I will likely review every single PR being made (please, give me a heads up if you intent to do so) and I will try to work on popular requests (please upvote via thumbs up on the original issue) whenever possible, but trying to respond to every single issue over the last years has been kind of draining and I need to adjust my approach for this project to remain fun for me and to make any progress with actually coding new stuff. Thanks for your understanding!
Hello there avcourt! 👋
Thank you and congratulations 🎉 for opening your very first issue in this project! 💖
In case you want to claim this issue, please comment down below! We will try to get back to you as soon as we can. 👀
For more open ended discussions and/or specific questions, please visit the discussions page. 💖
I also would like to see this. We could add it to the project context menu (and move project hide and show to a sub menu). We probably should also provide the same option for tags.
I would like to work on this issue. Can you asign this to me?
I would like to work on this feature, can someone help me on how to do this?
I am assigning this to @Sinon11901 since he asked first. I hope that is alright @dantep77 !?
Feel free to asign it to @dantep77.
@dantep77 you probably want to check the SideNavComponent to get started. Let me know if you have any more questions.
Ok thank you! I'll get started on this and let you know if I have any questions
Hey so I moved the project visibility to a submenu and created a submenu for sorting the projects. I have a couple questions. Where should i write the function to sort the projects and how should i access the list of projects? This is my first contribution so thank you for your help!
Where should i write the function to sort the projects and how should i access the list of projects?
Maybe you can create a separate file for it? That would make testing it easier :)
Resorting the projects is best done via a new action (in the project.actions.ts
wired to the project.reducer.ts
. For persistence you also need to add this action to syncProjectToLs$
inside the project.effect.ts
. You can trigger the action via this._store$.dispatch(actionName())
.
For understanding this better, it's probably best to look around the code and try to understand what is happening.
Description:
It would be extremely helpful to have an option to organize projects when adding a task. Currently, the projects seem to appear in the order they were created, with no option of sorting this list. Perhaps this can be configured in some other manner I have yet to find.
Proposed Feature:
Provide sorting options for projects when adding tasks, such as:
Use Case:
For users managing multiple projects, having the ability to organize the list of projects would significantly improve workflow efficiency. Instead of scrolling through a long, unsorted list, users could find their desired project quickly, improving overall productivity.
Possible Implementation:
Notes