Model
The model definition is based on plain object with a JSON-like structure, which provides default values for the instances. The model definition creates its own global space for the data. The store identifies the space by the reference to the definition, so no register step is required, which should be done programmatically. You just define the model structure, and start using it with the store.
The model might be a singleton with only one instance, or it can have multiple instances with unique identifiers. Each instance of the model is immutable, so updating its state always produces a new version of the model. However, models can reference each other. The instance itself does not have to be updated if its related model changes - the immutable is only the bound, not the values.
Type
The store supports three types of the models:
Singleton with only one instance
Enumerables with multiple instances
Listing enumerable models
Each type creates its own space for the cache in the memory.
Singleton & Enumerables
The id
property indicates if the model has multiple instances, or it is a singleton. The only valid value for the id
field is true
. Otherwise, it should not be defined at all. For example, you may need only one instance of the Profile
model of the current logged in user, but it can reference an enumerable User
model.
The value of the identifier can be a string
, or an object
record (a map of primitive values, which is normalized and serialized to string
representation). The object record allows identifying models by multiple parameters rather than on string id. For example, SearchResult
model definition can be identified by { query: "", order: "asc", ... }
map of values.
By default, the store generates identifier for enumerable models by the UUIDv4 generator. It means that memory-based models have unique ids out of the box. The external storage can use client-side generated id or return own identifier.
Listing Enumerables
The model definition must be a plain object by the design. However, the store supports a special type, which returns an array with list of model instances. This type is represented by the enumerable model wrapped in the array - [Model]
. It creates own space for the data, and it can have multiple instances identified by a string
or an object
record just like other model definitions. For memory-based models it always returns all instances of the definition, but it can be used for models with external storage where the result depends on list
action (more information you can find in Storage section).
Wrapped definition creates the reference, so the listing does not have to be defined before usage. It will always reference the same definition:
The listing type fits best for the models, which can be represented as an array (like memory-based models):
If the listing requires additional metadata (like pagination, offset, etc.), you should create a separate model definition with a nested array of required models.
The listing type respects the cache
option of the model, but the loose
option is always turned on (it is the same feature as explained in the cache invalidation section for nested array). It means that the user's change to the model will invalidate the cache, and the next call for the list will fetch data again.
Structure
The model definition allows a subset of the JSON standard with minor changes. The model instance serializes to a form, which can be sent over the network without additional modification.
Primitive Value
The model definition supports primitive values of string
, number
, or boolean
type. The default value defines the type of the property (it works similarly to the transform feature of the property factory). For example, for strings, it is the String(value)
.
Validation
The store supports client-side validation for string
and number
primitive values, which is called for store.set()
action. If it fails, the instance won't be updated, and error will be attached to the instance. The rejected Error
instance contains err.errors
object, where all of the validation errors are listed by the property names (you can read more about how to use it in the Usage
section)
To set property with the validation use store.value()
method instead of passing the default value directly:
arguments:
defaultValue
-string
ornumber
valuevalidate
- a validation function -validate(val, key, model)
, which should returnfalse
, error message or throws when validation fails, or a RegExp instance. If omitted, the default validation is used, which fails for empty string and0
.errorMessage
- optional error message used when validation fails
returns:
a
String
orNumber
instance
Computed Value
The computed property value is based on other properties from the model. Its value is only calculated when the property is accessed for the first time (the result value is permanently cached). The property is non-enumerable to prevent serializing its value to the storage (for example, JSON.stringify()
won't use it).
Nested Object
The model definition supports two types of nested objects. They might be internal, where the value is stored inside the model instance, or they can be external as model instances bound by the id (with separate memory space).
The nested object structure is similar to the external model definition. It could be used as a primary model definition as well. The store must have a way to distinguish if the definition's intention is an internal structure or an external model definition. You can find how the store chooses the right option below.
Object Instance (Internal)
If the nested structure does not provide id
property, and it is not connected to the storage (by the [store.connect]
), the store assumes that this is the internal part of the parent model definition. As a result, the data will be attached to the model, and it is not shared with other instances. Each model instance will have its nested values. All the rules of the model definition apply, so nested objects can have their own deep nested structures, etc.
Model (External)
If the nested object is a model definition with id
property or it is connected to the storage, the store creates a dynamic binding to the model instance. Instead of setting value in-place, the property is set as a getter, which calls the store for a model instance by the id (for singletons, the identifier is always set to undefined
). Keep in mind that it is a one way relation. Only the parent model creates a connection to the nested model. The related model does not know about the connection out of the box - it has only properties defined in its definition.
The parent model storage can provide a model instance data or a valid identifier (object records are not supported as ids - they are used as a data source). Object data will update nested model instance. Otherwise, the identifier will be saved in the parent model. After all, calling that property will invoke the store to get a proper model instance by its definition. It means that you can create relations between storages, which don't share data. The store will take care to get the model instance for you.
To remove the relation, set the property to null
or undefined
(it only removes the relation, not the related model). In that case, the value of the nested external object will be set to undefined
.
Nested Array
The store supports nested arrays in a similar way to the nested objects described above. The first item of the array represents the type of structure - internal (primitives or object structures), or external reference to enumerable model definitions (by the id
property). Updating the nested array must provide a new version of the array. You cannot change a single item from the array in-place.
Primitives or Nested Objects (Internal)
If the first item of the array is a primitive or an internal object instance (according to the rules defined for nested objects), the array's content will be unique for each model instance. The default value of the nested array can have more items, which will be created using the first element's model definition.
Models (External)
If the first item of the array is an enumerable model definition, the property represents a list of external model instances mapped by their ids. The parent model's storage may provide a list of data for model instances or a list of identifiers. The update process and binding between models work the same as for a single external nested object.
Cache Invalidation
By default, the store does not invalidate the cached value of the parent model instance when nested external model changes. Because of the nature of the binding between models, when the nested model updates its state, the change will be reflected without a need to update the parent model's state.
However, the list might be related to the current state of nested models. For example, the model definition representing a paginated structure ordered by name must update when one of the nested model changes. After the change, the result pages might have a different order. To support that case, you can pass a second object to the nested array definition with loose
option:
To prevent an endless loop of fetching data, the cached value of the parent model instance only invalidates if the store.set
method is used. Updating the state of the nested model definition by fetching new values with store.get
action won't invalidate the parent model. Get action still respects the cache
option of the parent storage. If you need a high rate of accuracy of the external data, you should set a very low value of the cache
option in the storage, or even set it to false
.
Last updated
Was this helpful?