1.1.655 • Published 5 years ago

rrsx v1.1.655

Weekly downloads
409
License
-
Repository
github
Last release
5 years ago

Rctx

Example

//Test component
import { importContexts } from 'rctx';
import TestContext from './test-context.ctx';
const TestComponent = props => {
  const { testContext } = props;
  const { add } = testContext;
  return <div onClick={add}>hello world</div>;
};
export default injectContexts(TestComponent, {
  testContext: TestContext
});
	//Test Context
import { ContextComponent createContext ContextStore } from  'rctx';
class  TestContext  extends  ContextComponent{
	state = {value:0}
	add  = () => {
		this.setState(prevState  => {
			return { value:  prevState.value  +  1 };
		});
	}
   }
export  default  createContext(TestContext, { store:  new  ContextStore() /*If you want to preserve the state when component unmount*/ });
//App
import TestContext from './test-context.ctx';
import { importContexts } from 'rctx';
class App extends Component {
  render() {
    return <TestComponent />;
  }
}

export default importContexts(App, [TestContext]);
1.1.655

5 years ago

1.1.654

5 years ago

1.1.653

5 years ago

1.1.652

5 years ago

1.1.651

5 years ago

1.1.65

5 years ago

1.1.649

5 years ago

1.1.648

5 years ago

1.1.647

5 years ago

1.1.646

5 years ago

1.1.645

5 years ago

1.1.644

5 years ago

1.1.643

5 years ago

1.1.642

5 years ago

1.1.641

5 years ago

1.1.640

5 years ago

1.1.639

5 years ago

1.1.638

5 years ago

1.1.637

5 years ago

1.1.636

5 years ago

1.1.635

5 years ago

1.1.634

5 years ago

1.1.633

5 years ago

1.1.632

5 years ago

1.1.631

5 years ago

1.1.630

5 years ago

1.1.629

5 years ago

1.1.628

5 years ago

1.1.627

5 years ago

1.1.626

5 years ago

1.1.625

5 years ago

1.1.624

5 years ago

1.1.623

5 years ago

1.1.622

5 years ago

1.1.621

5 years ago

1.1.620

5 years ago

1.1.619

5 years ago

1.1.618

5 years ago

1.1.617

5 years ago

1.1.616

5 years ago

1.1.615

5 years ago

1.1.614

5 years ago

1.1.613

5 years ago

1.1.612

5 years ago

1.1.611

5 years ago

1.1.61

5 years ago

1.1.60

5 years ago

1.1.59

5 years ago

1.1.589

5 years ago

1.1.588

5 years ago

1.1.587

5 years ago

1.1.586

5 years ago

1.1.585

5 years ago

1.1.584

5 years ago

1.1.583

5 years ago

1.1.582

5 years ago

1.1.581

5 years ago

1.1.58

5 years ago

1.1.57

5 years ago

1.1.56

5 years ago

1.1.55

5 years ago

1.1.54

5 years ago

1.1.53

5 years ago

1.1.52

5 years ago

1.1.51

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago