The twitter api does not directly support threads. We can still infer the start, end, and membership of a thread from the in_reply_to_status_id field. While displaying tweets it might be beneficial to indicate that they are part of a thread.
Here is how I would like to implement this:-
To mimic's Twitter desktops implementation of thread display we would need to add a pseudo div after the user avatar for adding a bar. The tweet data will have following boolean fields
isThreadStart, isThreadMember and isThreadEnd
The twitter api does not directly support threads. We can still infer the start, end, and membership of a thread from the
in_reply_to_status_idfield. While displaying tweets it might be beneficial to indicate that they are part of a thread.Here is how I would like to implement this:-
To mimic's Twitter desktops implementation of thread display we would need to add a pseudo div after the user avatar for adding a bar. The tweet
datawill have following boolean fieldsisThreadStart,isThreadMemberandisThreadEnd