You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been utilizing a gem called timeline_fu to collect events on certain models. This gem however, doesn't handle any returns of the data, and I've had to write a ridiculous query to fetch it all in the manner I need it. I've got a use case like the following:
News Feed Example:
Mike Uploaded 2 Images: - 30 seconds ago
<thumbnail> <thumbnail>
Joe Added Sue to the Project - 5 minutes ago
Joe Uploaded 15 images: - 5 minutes ago
<thumbnail> <thumbnail> <etc...>
Joe Added Mike to the Project - Yesterday
Each event is it's own record, and each image in an event it's also it's own record. Currently, I have to run a very nasty query to merge things like upload events per user to a single feed item. My question is, does chronologic handle anything like this, or, if not would it be worth trying to add it in as opposed to crazy database vendor specific sql queries?
I've been utilizing a gem called timeline_fu to collect events on certain models. This gem however, doesn't handle any returns of the data, and I've had to write a ridiculous query to fetch it all in the manner I need it. I've got a use case like the following:
News Feed Example:
Each event is it's own record, and each image in an event it's also it's own record. Currently, I have to run a very nasty query to merge things like upload events per user to a single feed item. My question is, does chronologic handle anything like this, or, if not would it be worth trying to add it in as opposed to crazy database vendor specific sql queries?