Table.mapToClass()

Map the table to an existing javascript class

Syntax

table.mapToClass(constructor[, structure])

Parameters

constructor: FunctionJavascript constructor function
structure: Object !DeprecatedDefinition of the properties available on instances of the classdeprecated, 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.

Sample (ES6)

import Dexie from 'dexie';

var db = new Dexie("FriendsDB");
db.version(1).stores({
    friends: "++id,name,shoeSize,address.city"
});

class Friend {
    log() {
        console.log(JSON.stringify(this));
    }
}

db.friends.mapToClass (Friend);

db.friends.where("name").startsWithIgnoreCase("d").each(function(friend) {
    assert (friend instanceof Friend);
    friend.log();
}).catch(function (e) {
    console.error(e);
});

Sample (Typescript)

import Dexie from 'dexie';

export class FriendsDB extends Dexie {
    friends: Dexie.Table<Friend, number>;

    constructor() {
        super("FriendsDB");
        this.version(1).stores({
            friends: "++id,name,shoeSize,address.city"
        });
        this.friends.mapToClass (Friend);
    }
}

export class Friend {
    name: string;
    shoeSize: number;
    cars: [{
        brand: string,
        model: string
    }];
    address: {
        street: string,
        city: string,
        country: string
    }

    log() {
        console.log(JSON.stringify(this));
    }
}

db.friends.where("name").startsWithIgnoreCase("d").each(function(friend) {
    assert (friend instanceof Friend);
    friend.log();
}).catch(function (e) {
    console.error(e);
});

Table of Contents