1.1.1 • Published 6 years ago
typescript-actions v1.1.1
typescript-actions
Typescript actions/reducers based on classes
Installation
// NPM
npm install --save typescript-actions
// YARN
yarn add typescript-actions
Modify .tsconfig
{
"compilerOptions": {
...
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
...
}
}
Add simple store
import {action, ActionBase, apiAction, nameof, PromiseOrVoid} from 'typescript-actions/dist';
export interface ICounterStore extends IStoreBase {
result: number;
}
export const initialCounterStore: ICounterStore = {
...baseInitialStore,
result: 0,
};
Action example
import {action, ActionBase, apiAction, nameof, PromiseOrVoid} from 'typescript-actions/dist';
export interface ICounterActions {
increment(): void;
decrement(): void;
}
export class CounterActions extends ActionBase implements ICounterActions {
@action()
public increment(): void {
this.dispatch({
name: this.actionName,
payload: null
});
}
@action()
public decrement(): void {
this.dispatch({
name: this.actionName,
payload: null
});
}
public getStoreName(): string {
return nameof<IGlobalStore>('counter') as string;
}
}
Reducer example
import {ReducerBase} from 'typescript-actions/dist';
export class CounterReducer extends ReducerBase<ICounterStore> implements ICounterActions {
public getStoreName() {
return nameof<IGlobalStore>('counter');
}
@reducer()
public increment(): void {
this.setState({
result: this.store.result + 1
});
}
@reducer()
public decrement(): void {
this.setState({
result: this.store.result - 1
});
}
}
1.1.1
6 years ago
1.0.78
6 years ago
1.0.77
6 years ago
1.0.76
6 years ago
1.0.75
6 years ago
1.0.74
6 years ago
1.0.73
6 years ago
1.0.72
6 years ago
1.0.71
6 years ago
1.0.70
6 years ago
1.0.69
6 years ago
1.0.68
6 years ago
1.0.67
6 years ago
1.0.66
6 years ago
1.0.65
6 years ago
1.0.64
6 years ago
1.0.63
6 years ago
1.0.62
6 years ago
1.0.61
6 years ago
1.0.60
6 years ago
1.0.59
6 years ago
1.0.58
6 years ago
1.0.57
6 years ago
1.0.56
6 years ago
1.0.55
6 years ago
1.0.54
6 years ago
1.0.53
6 years ago
1.0.52
6 years ago
1.0.51
6 years ago
1.0.50
6 years ago
1.0.49
6 years ago
1.0.48
6 years ago
1.0.47
6 years ago
1.0.46
6 years ago
1.0.45
6 years ago
1.0.44
6 years ago
1.0.43
6 years ago
1.0.42
6 years ago
1.0.41
6 years ago
1.0.40
6 years ago
1.0.39
6 years ago
1.0.35
6 years ago
1.0.32
6 years ago
1.0.30
6 years ago
1.0.29
6 years ago
1.0.27
6 years ago
1.0.12
6 years ago
1.0.10
6 years ago
1.0.9
6 years ago
1.0.8
6 years ago
1.0.7
6 years ago
1.0.6
6 years ago
1.0.5
6 years ago
1.0.4
6 years ago
1.0.3
6 years ago
1.0.2
6 years ago
1.0.1
6 years ago
1.0.0
6 years ago