PowerlineApp / powerline-rn

GNU Affero General Public License v3.0
0 stars 6 forks source link

Social Text-as-Image Support #186

Closed jterps08 closed 6 years ago

jterps08 commented 6 years ago

We want to give users the ability to share their content to other platforms. However, since we do not have a web app yet, we need to provide a workaround. https://github.com/nmcteam/image-with-text is one such solution.

This function will allow a user to turn the text of an item (e.g. a post) into an image, which can then be shared to a third-party social network (e.g. FB/Twtr/Insta). More information to be provided on Slack.

At a high level, this is the user story:

  1. User selects New Post from New Item Menu
  2. User writes post (new max character limit on frontend is 3000 characters)
  3. User checks box that says "Share this to FB?"
  4. App sends optional flag with post "convertTexttoImage=True"
  5. User sends post.
  6. Once user sends post, backend processes new post normally
  7. Backend also looks at "ConvertTexttoImage"
  8. If true, backend converts text to image as explained in Slack.
  9. Backend provides image back to frontend.
  10. Frontend sends image to selected third-party social network(s) on behalf of user

A few rules / requirements:

jterps08 commented 6 years ago

Closed as 74