Open MikeKMiller opened 2 months ago
I think Hypefury has it, but I was never quite fond of it. Let's see if it gets some upvotes :)
Hypefury has the ability to create threads..... but only by character count. Meaning you have to have 280 characters for it to split it, not simply by a delimiter.
Is the X integration working for you guys currently?? When I try to link my X account, clicking the "X" icon in the Add Channel
modal simply directs me to a 404 error page. Specifically, url.com/undefined
. The other sites which I've setup such as Reddit work fine. It's just X.
Is the X integration working for you guys currently?? When I try to link my X account, clicking the "X" icon in the
Add Channel
modal simply directs me to a 404 error page. Specifically,url.com/undefined
. The other sites which I've setup such as Reddit work fine. It's just X.
Yes, after I added the X API credentials in the docker compose environment section.
Which API type did you setup, X has two types, curious if that could be why?
@nevo-david I would like to give this a try!
I plan to implement this feature the following way:
///
) the editor splits and opens a comment tab just below the working tab, as if 'Add comment' has been pressed.After having a look at the source, I've gathered this can be fixed on the frontend. AddEditModal
seems to be relevant in managing editor data, adding comment tabs and defining callbacks, and I plan to specifically modify the changeValue
callback function.
changeValue
only sets the model content at the called index to the newly changed editor content.changeValue
will split the content at the delimiter, and insert new model items to the list with regards to the split array.trimEnd
applied, the last will have trimStart
applied, and anyhing else will be trim
med front and back.changeValue
preserves the number of elements in the model list. I don't know if this is regarded as an invariant anywhere, if it is please tell me and I will try to come up with another solution.///
in the post, while if the delimiter were configurable the user could choose whatever sequence they plan on not using.If you approve of my plan, please assign me or otherwise show me your approval so I can get started on the PR! If not, please don't hesitate to tell me, this is my first contribution to open source and I may have made mistakes I'm not aware of. I would hate to accidentally sabotage a codebase as my first 'contribution'.
🔖 Feature description
It would be great to have a feature that enables the creation of X/Twitter threads by posting all the content in a single post using a specific delimiter (like "///") to indicate where tweets should be split.
🎤 Why is this feature needed ?
In my use case, I often post longer content that fits better as a Twitter thread rather than a single tweet. Having a way to easily write everything in one place and split it up automatically would make the experience smoother and more efficient. It would reduce errors and time spent manually splitting posts.
✌️ How do you aim to achieve this?
It would be great if Postiz could detect a delimiter in the content and automatically split it into individual tweets, making it seamless to publish full threads in one go. This would add to Postiz’s flexibility for managing longer content, especially for Twitter users who rely heavily on threads for engagement.
🔄️ Additional Information
I’ve explored other tools that offer thread creation, but adding this feature to Postiz would streamline the process and reduce the need for additional apps. It’s just a thought that could really enhance the user experience!
👀 Have you spent some time to check if this feature request has been raised before?
Are you willing to submit PR?
None