Table.mapToClass()
Map the table to an existing javascript class
Syntax
Parameters
structure: Object !Deprecated
Definition of the properties available on instances of the class
deprecated, optional
Return Value
Same constructor function as given as argument.
Remarks
Makes any object extracted from this table become instanceof
your given constructor function so that prototype methods and properties are possible to call on the extracted objects. Works with both ES5 and ES6 classes. Under the hood, the raw database objects are shallow copied into new instances of your class constructed via Object.create (constructor.prototype).
Applies only to instances returned by Table.get(), Table.toArray(), Table.each(), Collection.toArray(), Collection.each(), Collection.first(), Collection.last() but not for callbacks that are part of the filtering query: Collection.filter(), Collection.and() and Collection.modify() or if Collection.raw() is being used. In all the latter cases, the methods will emit plain javascript Object instances directly from the database without cloning it into an instance of the mapped class.
Notably does not apply to any of the hook functions (Table.hook('creating'), Table.hook('updating'), Table.hook('reading'), Table.hook('deleting')). To resolve the objects passed to these hooks to the appropriate class, first clone the base object, then apply key changes, then use Object.create. Everything except the Object.create
step is demonstrated in the Dexie.Observable addon.
NOTICE!
Structure argument (deprecated) only helps with code completion and documentation of the class. It will not instantiate properties on the instances returned from the database.
Given constructor function wont be invoked for instances returned from database. Only the inheritance chain will be applied so that methods attached to constructor.prototype can be called upon and the
instanceof
operator will return true for the constructor.