mvc
Index
Classes
Functions
Type Aliases
- BaseControllerContext
- BaseService
- BaseViewModel
- Controller
- ControllerClassDeclaration
- ControllerContext
- ControllerDeclaration
- ControllerFactory
- ControllerParams
- ControllerParamsContext
- ExtensionFn
- ExtensionParams
- ExtensionParamsProvider
- InferViewPropsFromControllerContext
- ViewBinding
- ViewControllerContext
- ViewModel
- ViewModelClassDeclaration
- ViewModelDeclaration
- ViewModelFactory
- ViewPropAtoms
- ViewProps
- ViewProxy
- ViewStatus
Type Aliases
BaseControllerContext
Type declaration
optionalparams?: unknown
scope: Scope
BaseService
Base service type which is implemented by controllers
BaseViewModel
Controller
Effects and business logic controller.
Implementation of the controller must provide destroy()
method. It should
be used for closing subscriptions and disposing resources.
Type parameters
- TService: BaseService = BaseService
ControllerClassDeclaration
ControllerContext
Type parameters
- TContext: BaseControllerContext
ControllerDeclaration
Base declaration for a controller
Type parameters
- TContext: BaseControllerContext
- TService: BaseService
ControllerFactory
Factory function for a controller
Type parameters
- TContext: BaseControllerContext
- TService: BaseService
Type declaration
Parameters
context: ControllerContext<TContext>
Returns PartialController<TService> | undefined | void
ControllerParams
Parameters for a controller
ControllerParamsContext
ExtensionFn
Extension function for a controller
It extends a controller context with additional data
Type parameters
- TSourceContext: BaseControllerContext
- TContextExtension: BaseControllerContext
Type declaration
Parameters
sourceContext: TSourceContext
The source context
optionalextensionParams: ExtensionParams
Additional parameters for the extension
Returns TSourceContext & TContextExtension
ExtensionParams
Parameters for an extension
ExtensionParamsProvider
Provider for arbitrary extension parameters
It extends extension parameters with additional data and returns them. An extension can use this data during creation of a controller context.
Type declaration
Parameters
params: ExtensionParams
Returns ExtensionParams
InferViewPropsFromControllerContext
Utility type to infer the view props from the controller context
Type parameters
- TContext: BaseControllerContext
- ElseType
ViewBinding
ViewBinding is the binding between the controller and the view
Type parameters
- TProps: ViewProps
Type declaration
readonlyonMount: Signal<void>
Signals that the view has been mounted
readonlyonUnmount: Signal<void>
Signals that the view has been unmounted.
readonlyonUpdate: Signal<Partial<TProps>>
Signals that the view has been updated.
Partial
<TProps>is the properties that were updated.readonlyprops: ViewPropAtoms<TProps>
View's props
readonlystatus: Atom<ViewStatus>
ViewControllerContext
ViewModel
Type parameters
ViewModelClassDeclaration
Type parameters
- TViewModel: BaseViewModel
- TContext: ViewControllerContext<InferViewModelProps<TViewModel>>
Type declaration
Returns BaseViewController<TViewModel, TContext>
Parameters
providers: readonly ExtensionParamsProvider[]
Returns BaseViewController<TViewModel, TContext>
optionalreadonly__viewModelType?: TViewModel
ViewModelDeclaration
Type parameters
- TViewModel: BaseViewModel
- TContext: ViewControllerContext<InferViewModelProps<TViewModel>>
Type declaration
Returns Controller<TViewModel>
Parameters
providers: readonly ExtensionParamsProvider[]
Returns Controller<TViewModel>
ViewModelFactory
Type parameters
- TContext: BaseControllerContext
- TViewModel: BaseViewModel
Type declaration
Parameters
context: ControllerContext<TContext>
Returns Omit<TViewModel, props>
ViewPropAtoms
ViewPropAtoms are the atoms wit View's props that are provided to the controller by the ViewBinding
Type parameters
- TProps: ViewProps
ViewProps
ViewProps are the properties that are provided to the view
ViewProxy
ViewProxy implements the binding between the controller and the view.
It can be used to represent a view inside unit tests for the controller.
Type parameters
- TProps: ViewProps
Base context for a controller