-
Notifications
You must be signed in to change notification settings - Fork 4
Add bare-bones implementation of facts page #101
Conversation
259b367 to
33b2808
Compare
Smarker
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
| const FluxMixin = Fluxxor.FluxMixin(React); | ||
| const StoreWatchMixin = Fluxxor.StoreWatchMixin("FactsStore"); | ||
|
|
||
| export const FactsList = createReactClass({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rather than using createReactClass, could you use class FactsList extends React.Component instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes definitely that would be a good change. That's a bigger blast-radius than what I'd like to do right now. Will take a note to do this as a follow-up after we progress this feature.
| `; | ||
|
|
||
| const variables = { | ||
| pipelinekeys |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Assuming that event time and keyword tags will also be integrated as variables?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we do that, how will the view differ from the activity feed?
For now this is just rendering a pinterest-style board of events for all pipelines, in reverse chronological order. We can add more features (like filtering) once we're more stabilized and have a clearer understanding of the requirements of the facts page as compared to the newsfeed component.
33b2808 to
afb1123
Compare
For now this is just rendering a pinterest-style board of events for all pipelines, in reverse chronological order.
We can add more features (like filtering or infinite scroll) once we're more stabilized, collected some real-world data and have a clearer understanding of the requirements of the facts page as compared to the newsfeed component.
Related backend changes: