: Platforms like Figma allow users to pin comments to specific locations on a canvas.
: Use a "Reply" system to keep conversations organized, similar to Microsoft Excel's threaded comments. LEAVE A COMMENT
If you are developing this feature within a larger codebase, consider these architectural tips: Guide to comments in Figma : Platforms like Figma allow users to pin
To develop a commenting feature, you need to bridge the gap between the frontend UI (where users type) and the backend database (where messages are stored). 1. Define the User Experience and a parent_id (for replies).
: Create a comment model that includes fields for user_id , timestamp , content , and a parent_id (for replies).