This is a plugin to manage task dependencies with discourse.
It basically turns a category into a project and the topics in this category into tasks of this project.
You can define dependencies between tasks. Essentially which tasks need to finish before other tasks can begin. You can also define beginning dates, end dates and the task duration. It will automatically set the beginning and end dates of the dependent tasks if you change them somewhere.
It will also display earliest beginning date and latest end date in the category header.
The total project duration will also be computed. You can also lock tasks so that the automatic computation of beginning and end dates does not affect them.
This youtube video explains how to use it:
TODO:
show messages on mobile / narrow screens
add a topic list view to show tasks in topological order (+indent the dependers a little)
use message bus to notify other users of changes
add revision capability for project tasks
add support for subprojects (one subproject will be a task in one project but also its own category)
make the UI more beautiful (links instead of buttons etc)
I want to add own field like the title and tags, so that it can later be easily accessed in json form and can be easily manipulated/calculated , for searching etc
thats actually not a trival problem. On the one hand you have to handle a lot of cases in the frontend. I still havent handled all for this plugin. As you can see revision capability is still on the todo list. Then there also is the issue of saving the data and if its a wise idea to use the pluginstore or not. The topic is touched on in this thread:
I also wrote this plugin because I wanted to figure out if real tables can actually bring a big benefit. This whole dependency logic and the error checking in the backend with a rollback if its just a “dry” shot would not be possible using only the plugin store. I think its a trade off. For some use cases the pluginstore is enough. But I think to do more complex stuff there is no way around “real” tables. I also want to write a blogpost about this after i explored this a bit more. If we look at this in a more abstract way, what we want to do is this: We want to use discourse to collectively edit structured data. At the moment its really hard to “just add” a custom field to a post or topic, but I think it can be made easier. Another thing that I want to do is to rip out the composer editor completely and use the topic just for data entry. I dont know what will come of it, but here is some brainstorming:Why not create an OPEN SOURCE platform dedicated to open source drug discovery ? · Issue #581 · OpenSourceMalaria/OSM_To_Do_List · GitHub
Maybe these two types of plugins can also be combined like i explain in this github issue. So you enter data in topics that have no normal d-editor, but a specialized data entry editor and then you reference this data in topics that still have the d-editor. These other topics might also have some extra fields, like in this projects management plugin.
Take all off this with a grain of salt, as I havent had the time to properly try this out. I will create a write up about this when I am back from vacation
can you please post the error message so I can help you?
Also: this plugin uses its on tables, so you need to rerun migrations after installing. should be somthing like rake db:migrate please check the install guide for further details
Hello, thanks for trying again! On which version are you? The last version I tried it with is: 2.5.0.beta4 Its running on a testserver over here: Build House - cidian.social
Hi, new Discourse user here on community artistic platform. I am looking for a potential project management plugin for small projects within our Discourse community. Is this plugin still in use?
this was the first plugin I wrote to learn how to write discourse plugins. Its currently in an unfinished state. I haven’t decided in which direction I want to take this plugin, but I definitely want to continue working on it and repurpose the code I wrote. I would be glad if you can tell me about your use case. Also possibly via private message if thats more comfortable for you!
What is the current status of this plugin? I’d love to use it for my instance, but I’m wary of installing a plugin that is currently in an unknown state of development.
I am currently working on a rewrite of my basic editor plugin afterwards I might get back to this one. But I would have to rethink who would be the target group for this plugin. I would be glad to hear about what you would like to use it for. Same for anyone reading this: just write down how you would like to use discourse to manage your projects. Maybe we can brainstorm together