collection icon indicating copy to clipboard operation
collection copied to clipboard

An easier way to do collections in Cycle.js

Results 10 collection issues
Sort by recently updated
recently updated
newest added

Hi, I would like to implement a list that features sorting and filtering. Currently I am stuck at filtering. The list itself works when only doing ```Collection.pluck(todoListItems$, item => item.DOM);```...

I am currently re-writing `@cycle/collection` in typescript (#28). In the process, I am asking myself a few questions about the API design. The main question I have is: do we...

http://github.com/cyclejs/time I'm keen to try this out, I think we could have a faster and clearer test suite. Are you cool with that @Hypnosphi, @FeliciousX?

While using something like `Collection.gather(Task, sources, fetchedTasks$, 'uid')` , I have to make sure `fetchedTasks$` has objects where the property item is actually named item$. No idea why. This requires...

See http://stackoverflow.com/questions/41910459/in-cycle-js-collections-how-does-the-second-sources-stream-relate-to-the-first/41915677#41915677 for related question that might help improve docs further

Hi, would be great to have a typescript definition file. I think it's hard to make it perfect due to the fact that cyclejs tries to be stream-library independent (entailing...

Imagine a chat app which implements offline support: - you can "send" messages and they're added to the queue and shown immediately (optimistic updates) - when the client reconnects, it...

Here's a question or something to consider. I was staring at the Collection API and thinking about the 3rd parameter, `add$`. It assumes the add events are given from the...

It would be an interesting test to create an example that has a collection of components with thousands of items. The goal of virtual scrolling is to render only the...

help wanted