Agora-Project / agora-meteor

Meteor based implementation of Agora project. Agora: Solving online discussion.
GNU Affero General Public License v3.0
16 stars 3 forks source link

client side data rendundancy #47

Closed Angular-Angel closed 6 years ago

Angular-Angel commented 7 years ago

The client currently stores data on posts in like four different places - once in the post collection, once in a local collection called visiblePosts which holds the posts that the user is zoomed in enough to see text for, once in a local collection called localPostPositions which holds their local layout information, and once in an array variable which also holds much of their layout information. This is messy and redundant, and should be cleaned up somehow.

Angular-Angel commented 6 years ago

I think this is resolved well enough for now.