Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow to transform container props based on component props #36

Merged
merged 1 commit into from
Jun 4, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/addons/container.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React from 'react';
import Container from '../Container';
import getDisplayName from './getDisplayName';

function defaultTransformProps({ state, actions }) {
return { ...state, ...actions };
function defaultTransformProps({ props, state, actions }) {
return { ...props, ...state, ...actions };
}

export default function container(
Expand All @@ -14,10 +14,11 @@ export default function container(
static displayName = `ReduxContainer(${getDisplayName(DecoratedComponent)})`;

render() {
const {props} = this

return (
<Container actions={actions} stores={stores}>
{props => <DecoratedComponent {...this.props}
{...transformProps(props)} />}
{({state, actions}) => <DecoratedComponent {...transformProps({props, state, actions})} />}
</Container>
);
}
Expand Down