Incluir campos personalizados de Composer al guardar borrador

Recently, I started looking into a bug with the Events plugin where the events data shown on the composer is lost if the post is saved to drafts.

I tried to fix the issue and soon found out that there’s no API exposed by Discourse which allows us to do that.

I think this is an important feature from a UX standpoint with many potential use cases other than what I’m faced with.

For that, I am making a PR, which fixes this issue by introducing a new method in the Composer Model called serializeToDraft. This method will add those custom fields while saving the post to draft. Also, those fields will be set to the composer model when the draft is reopened.

@angus is helping me out on this PR by reviewing the code and suggesting the important improvements to be made.

I would like to know the thoughts of the Discourse team on this feature.

I agree we should have a clean mechanism for plugins to add and retrieve draft info associated with a post.

Me and @angus have put together a PR to address this here.

There are some things I dont understand: why is serializeToDraft part of the plugin api while serializeOnCreate and serializeToTopic are not? under what circumstance is serializeToDraft useful without the other two and vice versa? shouldnt there be a wrapper that does the serialization on both post/topic and also the draft?

Yes, agreed. You can go ahead and make a PR for those ones too.

Me encontré con otro problema: ¿qué hay del método saveDraft()? De alguna manera, debe haber un observador para los campos agregados con serializeToDraft(), similar a este:

De lo contrario, el borrador no se enviará al endpoint si solo cambian los campos de borrador personalizados.
Por lo tanto, saveDraft() también debería formar parte de la API, o en realidad esto debería abstraerse de alguna manera.
También encontré este observador dataChanged en composermodel. Creo que es muy extraño que tengamos dos observadores vigilando lo mismo. La lógica dentro de este observador probablemente también debería activarse para los campos de borrador personalizados. También me pregunto cuál de los dos observadores se ejecutará primero y cuáles son las implicaciones.