The post composer handles text, media, and mentions.
Component structure:
CreatePost
├── TextArea (auto-expanding)
├── MediaUploader
├── MentionSuggestions
└── SubmitButton
Features to consider:
- Character limit with counter
- Drag-and-drop media upload
- @ mentions with autocomplete
- Link preview generation
State:
{ text: '', media: [], mentions: [], isSubmitting: false }
Optimistic creation: Add post to feed immediately, update with server ID on success.