Model
The Model<T>
class is a foundational building block for defining reactive entities within the ReactiveModel library.
It provides a structured way to declare reactive properties, manage validation, handle lifecycle states, and work with
event-driven behavior.
This class is intended to be extended to define domain-specific data models, such as users, products, or configuration objects.
📦 Basic Usage
🧱 Constructor
Parameters
properties
: An array of property names or descriptors to be made reactive.Additional key-value pairs can be passed to initialize values.
🛠️ Key Methods
set(properties: Partial<T>): { updated: boolean; errors?: PropertyValidationErrors<T> }
set(properties: Partial<T>): { updated: boolean; errors?: PropertyValidationErrors<T> }
Updates one or more reactive properties. Automatically validates against the schema if defined.
Triggers
"change"
and"set.executed"
events if at least one property is updated.Returns an object indicating whether any update occurred and any validation errors.
getProperty<K>(key: K): T[K]
getProperty<K>(key: K): T[K]
Returns the current value of a given reactive property.
property
(alias of getProperty
)
property
(alias of getProperty
)setProperty(key: string, value: any): void
setProperty(key: string, value: any): void
Directly updates a specific reactive property without validation.
getProperties(): Partial<T>
getProperties(): Partial<T>
Returns a plain object with the current values of all defined reactive properties.
validate(props: Partial<T>)
validate(props: Partial<T>)
Runs validation against the schema (if defined) and returns { valid, errors }
.
revert()
revert()
Restores the model's state to its initialValues
.
saveChanges()
saveChanges()
Saves the current values as the new initialValues
, clearing the draft/unpublished state.
📡 Events
The Model
extends from @beyond-js/events
. Events can be subscribed using on
and dispatched with trigger
.
Event Types
change
: Fired when any reactive property changes<property>.changed
: Fired when a specific property is updatedready
: Fired when the model’sready
flag is set totrue
set.executed
: Fired after successful property updates viaset()
🔄 State Properties
fetching
Indicates ongoing loading or remote ops
loaded
True once data is fully loaded
ready
Emits "ready"
when set to true
processing
True if a process is ongoing
processed
Set to true when a process completes
isDraft
True if no initial values were provided
initialValues
Snapshot of values at initialization
unpublished
True if current state differs from initial
🧪 Schema Support
If a schema
getter is defined returning a z.object(...)
, validation is applied during set()
and manual validation.
🧩 Nested Models Example
Last updated