trailblazer/cells-rails

Can't merge custom context when using collection

bootleq opened this issue · 1 comments

I'm in a Rails project, using concept helper to do render:

concept('some/cell/index', collection: Song.all, context: {foo: :bar})

While I found the context hash will always be overwritten as {controller: ...}, but my expected result is a hash with foo key.

Some tracing:

Does my usage reasonable? If yes I think we can do a deep_merge to avoid options overwritten.

I just ran into a similar issue -- found a workaround... adding nil in the place of an object allowed me to work around this and get the object I expected from context:

= concept('deal/cell', nil, context: { fields: ff }).(:form)

Perhaps if you tried:

concept('some/cell/index', nil, collection: Song.all, context: {foo: :bar})

You'd be in luck?