A light but scalable
view-model
library with react hooks.
# yarn
yarn add stated-bean
# npm
npm i stated-bean
- OOP: easy to integrate with DI(dependency inject) framework together
- Familiar API: just provider and hooks
- Small size:
- Written in TypeScript
GitHub Pages: Integration with injection-js
import { useBean } from 'stated-bean';
const CounterModel = {
count: 0,
decrement() {
this.count--;
},
increment() {
this.count++;
},
};
function CounterDisplay() {
const counter = useBean(() => CounterModel);
return (
<div>
<button onClick={counter.decrement}>-</button>
<span>{counter.count}</span>
<button onClick={counter.increment}>+</button>
</div>
);
}
function App() {
return (
<StatedBeanProvider>
<CounterDisplay />
</StatedBeanProvider>
);
}
import { StatedBean, Stated useBean } from 'stated-bean';
@StatedBean()
class CounterModel {
@Stated()
count = 0;
increment() {
this.count++;
}
decrement() {
this.count--;
}
}
function CounterDisplay() {
const counter = useBean(CounterModel);
return (
// ...
);
}
The named bean singleton bean can be resolved via useInject
with the special name.
@StatedBean('SpecialName')
class NamedBean {}
@StatedBean({ singleton: true })
class SingletonBean {}
const model = useBean(CounterModel, { name: 'SpecialName' });
The beans was stored in the StatedBeanContainer
witch be created by the StatedBeanProvider
and bind to the React context.
useInject
will find the named bean from the container or it's parent container.
@StatedBean({ singleton: true })
class UserModel {
@Stated()
user = { name: 'jack' };
}
function App() {
return (
<StatedBeanProvider providers={[UserModel]}>
<UserDisplay />
</StatedBeanProvider>
);
}
function UserDisplay() {
const model = useInject(UserModel);
return model.user.name;
}
@StatedBean()
class InputModel implements InitializingBean {
@Props('initialValue')
@Stated()
value: number;
@ObservableProps()
value$: BehaviorSubject<number>;
afterProvided() {
this.value$.subscribe(v => {
this.value = v;
});
}
}
function Input(props: InputProps) {
const model = useBean(InputModel, { props });
return (
// input component
);
}
@StatedBean()
class SearchModel {
@Effect()
search() {
return fetchUsers();
}
}
const UserTable() {
const model = useBean(SearchModel);
const { loading, error } = useObserveEffect(model, "search");
if (loading) {
return <Loading />;
}
return (
// ...user table
);
}
Signature: @StatedBean(name?: string | symbol): ClassDecorator
Indicates that an annotated class is a StatedBean
. The name
may indicate a suggestion for the bean name. Its default value is Class.name
.
Signature: @Stated(): PropertyDecorator
Indicates that an annotated property is Stated
. Its reassignment will be observed and notified to the container.
Signature: @AfterProvided(): MethodDecorator
The AfterProvided
decorator is used on a method that needs to be executed after the StatedBean
be instanced to perform any initialization.
Signature: @Effect(name?: string | symbol): MethodDecorator
The Effect
decorator is used on a method that can get the execution state by useObserveEffect
.
Signature: @Props(name?: string): PropertyDecorator
@ObservableProps(name?: string): PropertyDecorator
The Props
decorator is used on a property that can sync the value from props.
The ObservableProps
decorator is used on a BehaviorSubject
property. You can subscribe the next new props value.
Signature: useBean<T>(typeOrSupplier: ClassType<T> | () => T, name?: string | symbol): T
The useBean
will create an instance of the stated bean with a new StatedBeanContainer
and listen for its data changes to trigger the re-rendering of the current component.
Signature: useInject<T>(type: ClassType<T>, option: UseStatedBeanOption<T> = {}): T
The useInject
will get the instance of the stated bean from the StatedBeanContainer
in the context and listen for its data changes to trigger the re-rendering of the current component.
option = {
name: string | symbol; // get/create the instance with special name
dependentFields: Array<string | symbol>; // do re-render when the special property changed
};
Signature: useObserveEffect(bean: StatedBeanType, name: string | symbol): EffectAction
observe the execution state of the method which with @Effect
.
The StatedBeanProvider
is responsible for creating an instance of the stated bean and dispatching an event after data changes.
StatedBeanProviderProps
interface StatedBeanProviderProps {
types?: ClassType[];
beans?: Array<StatedBeanType<unknown>>;
beanProvider?: BeanProvider;
application?: StatedBeanApplication;
}