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

Add argument to pageConnect callback function #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Add argument to pageConnect callback function #1

wants to merge 1 commit into from

Conversation

shoonia
Copy link

@shoonia shoonia commented Nov 23, 2019

Add the argument object with all method for callback function with pageConnect as { store, connect, repeaterConnect }. It will be helpful for better code split in Corvid project.

Example. Split code with public folder:

public/redux.js

import { createStore } from 'redux';
import { createConnect } from 'corvid-redux';

function reducer(state = 0, action) {
  switch (action.type) {
    case 'INCREMENT':
      return state + 1;
    case 'DECREMENT':
      return state - 1;
    default:
      return state;
  }
}

export const store = createStore(reducer);
export const { pageConnect } = createConnect(store);

HOME PAGE

import { pageConnect } from 'public/redux';

// we have all methods here
pageConnect(({ store, connect, repeaterConnect }) => {
  connect((state) => ({ text: `${state}` }))($w('#counter'));

  $w('#increment').onClick(() => store.dispatch({ type: 'INCREMENT' }));
  $w('#decrement').onClick(() => store.dispatch({ type: 'DECREMENT' }));
});

Add the object with all method for callback function with `pageConnec`t as `{ store, connect, repeaterConnect }`. It will be helpful for better code split in Corvid project.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant