mwanji / essayist

A blogging app for the tent.io protocol
10 stars 2 forks source link

After favoriting an essay, the favorite button is not changed #47

Open tjreo opened 11 years ago

tjreo commented 11 years ago

After I favorite an essay, I expect the favorite button to reflect the new status.

If I click THAT button, I expect my favorite to be removed.

mwanji commented 11 years ago

This is because there are actually two ways the essay page is displayed. If you go directly to an essay page, then the button will update and you'll see the new "reaction" underneath. If you go via "My Feed", it won't. On "My Feed" I preload each of the essays and use pushState to display it quickly, but I don't load the comments (the page is slow enough as it is), so I can't know if you've favourited the Essay or not.

In short, this will work consistently when I start loading comments asynchronously and doing more caching.