Hey folks,
this is to share and discuss the MVP solution of a problem that has been mentioned by the community frequently:
Users are tired of creating their presentations by arranging objects and text boxes on a canvas. The solution approach to this is converting presentations from tools that enable structuring content in more convenient ways. Massive success has been achieved with Notion and Markdown already. Now trying a new approach as this has been frequently requested: Trello.
Currently launched Wunderpresentation for Trello in beta mode which works as follows
Just the beginning. What do you think?
@danielpichel Wonder you are prepared to share how you did the Authorize Trello button. While I have built custom power up and it has a Authorize capability I am trying to do this outside of the Power Up framework just on a web app to simplify my enrolment process. Presumably there is a some kind of client.JS and some HTML.
@milynnusHappy to help out here. It has been easier than I assumed inittially. This is using the Trello REST API. They have this great documentation here. First step is the authorization of the client and with the token reveived, all other REST requests can be conducted. Does this make sense to you?
@danielpichel now that I revisited my earlier work, I was able to use the client.js to invoke the authorisation and get the token. At this point, I cannot save the token like what I would do with a t.set('member', 'private', 'trello_token', token) since this is all on a webpage and not in Trello unlike when using a Power Up.
@danielpichel I have been doing documentation on Trello boards. I have tried your wunderpresentation and was wondering how can I serve out the pages either via a link or a link to an endpoint that return the pages via a http response? I really do not want to write my own script to convert cards to HTML if I can help it.