These docs are for a different version of Gadget than what the example-app app is using.

Switch to the correct version

Record - GadgetRecord 

When working with an instance of a record in Gadget (either results returned from the client package or the context.record in your code effects), you are working with a GadgetRecord. GadgetRecord is a wrapper class around the properties of your object that provides additional helper functionality such as change tracking.

GadgetRecord properties 

Every GadgetRecord shares a common set of Gadget system properties such as id, updatedAt, createdAt, and state. In addition to these Gadget system properties, any model fields you've added to your model will also be included in the GadgetRecord. These properties can be get and set via their apiIdentifier.

JavaScript
1const user = await api.user.findOne("123");
2
3// Gadget system properties
4console.log(user.id); // "1"
5console.log(user.state); // "created"
6console.log(user.createdAt); // Tue Jun 15 2021 10:30:59 GMT-0400
7console.log(user.updatedAt); // Tue Jun 15 2021 12:18:01 GMT-0400
8
9// Model field properties
10console.log(user.name); // "Jane Doe"
11console.log(user.email); // "[email protected]"

Change tracking (dirty tracking) 

GadgetRecord instances track changes made to their local state, and provide a change tracking API for determining what properties have changed (locally) on a record.

You can use this change tracking in your own applications via the client package in the following manner:

JavaScript
1const user = await api.user.findOne("123");
2
3user.name = "A new name";
4
5const { changed, current, previous } = user.changes("name");
6
7console.log(changed); // true
8console.log(current); // "A new name";
9console.log(previous); // "The old name";

By working with this single GadgetRecord instance user in your frontend, you could use the change tracking API to determine if there is anything that needs to be persisted via one of your actions.

Additionally, you are also working with GadgetRecord instances when using the context.record in your run effects, conditions, and validations.

If you wanted to determine whether or not a change was made to the record in a run effect of an update action, you could do the following:

JavaScript
1export async function run({ params, record, logger, api, connections }) {
2 if (record.changed("title")) {
3 const { current, previous } = record.changes("title");
4
5 console.log(current); // the new attribute set via params
6 console.log(previous); // the current value in the database
7 }
8 // ... rest of your code
9}

GadgetRecord API 

The GadgetRecord API extends your records with helper functions to make working with records easier.

Get all changes to the record 

Get a list of all changes, keyed by field apiIdentifier since this record was instantiated.

JavaScript
1const record = new GadgetRecord({ title: "Old title", body: "Old body" });
2record.title = "New title";
3record.body = "Old body";
4record.price = 123.45;
5console.log(record.changes());
6//{
7// title: { changed: true, current: "New title", previous: "Old title" },
8// price: { changed: true, current: 123.45, previous: undefined }
9//}

Get changes to one field of the record 

Get any changes made to a specific apiIdentifier of the record since this record was instantiated.

JavaScript
const record = new GadgetRecord({ title: "Old title" });
record.title = "New title";
console.log(record.changes("title"));
// { changed: true, current: "New title", previous: "Old title" }

Determine whether or not any fields changed on the record 

Determine if any changes have been made to any keys on the record.

JavaScript
const record = new GadgetRecord({ title: "Old title" });
record.title = "New title";
console.log(record.changed()); // true

Determine if one field changed on the record 

Determine if a specific apiIdentifier changed on the record.

JavaScript
const record = new GadgetRecord({ title: "Old title" });
record.title = "New title";
console.log(record.changed("title")); // true

Revert all changes to the record 

Resets the record state to the state it was instantiated with. All changes are reverted.

JavaScript
1const record = new GadgetRecord({ title: "Old title", body: "Old body" });
2record.title = "New title";
3record.body = "New body";
4record.price = 123.45;
5console.log(record.changes());
6//{
7// title: { changed: true, current: "New title", previous: "Old title" },
8// body: { changed: true, current: "New body", previous: "Old body" },
9// price: { changed: true, current: 123.45, previous: undefined }
10//}
11console.log(record.title); // "New title"
12console.log(record.body); // "New body"
13
14record.revertChanges();
15console.log(record.changes()); // {}
16console.log(record.changed()); // false
17
18console.log(record.title); // "Old title"
19console.log(record.body); // "Old body"

Flush changes to the record 

Flushes all changes to the record and resets the state of change tracking to the current state of the record.

JavaScript
1const record = new GadgetRecord({ title: "Old title", body: "Old body" });
2record.title = "New title";
3record.body = "New body";
4record.price = 123.45;
5console.log(record.changes());
6//{
7// title: { changed: true, current: "New title", previous: "Old title" },
8// body: { changed: true, current: "New body", previous: "Old body" },
9// price: { changed: true, current: 123.45, previous: undefined }
10//}
11console.log(record.title); // "New title"
12console.log(record.body); // "New body"
13
14record.flushChanges();
15console.log(record.changes()); // {}
16console.log(record.changed()); // false
17
18console.log(record.title); // "New title"
19console.log(record.body); // "New body"

Get a JSON representation of the record 

Return a JSON representation of the keys (by apiIdentifier) and values of your record.

JavaScript
1const record = new GadgetRecord({
2 title: "A title",
3 tags: ["Cool", "New", "Stuff"],
4 price: 123.45,
5});
6console.log(record.toJSON());
7//{
8// "title": "A title",
9// "tags": ["Cool", "New", "Stuff"],
10// "price": 123.45
11//}

Get and set properties that share the same name as GadgetRecord functions 

If the apiIdentifier of your model field has the same name as one of the GadgetRecord functions described above, you will need to work with it via the getField and setField functions.

JavaScript
1const record = new GadgetRecord({ title: "Something", changed: true });
2
3console.log(record.changed()); // false, change tracking function uses changed()
4console.log(record.getField("changed")); // true
5record.setField("changed", false);
6console.log(record.getField("changed")); // false

ChangeTracking contexts 

GadgetRecord change tracking allows you to track changes on the record in different contexts. By default, all functions use the ChangeTracking.SinceLoaded context. Gadget also uses the ChangeTracking.SinceLastPersisted context to differentiate between changes that have already been persisted by the Create record and Update record effects, and changes that have been made to the record since the start of action execution.

For developers to worry less about the exact order in which their effects are run, the change tracking API assumes the ChangeTracking.SinceLoaded context by default. You may also inquire about changes since ChangeTracking.SinceLastPersisted by adding it as an option to your change tracking function calls.

JavaScript
1import {
2 GadgetRecord,
3 ChangeTracking,
4} from "@gadget-client/example-app/src/GadgetRecord";
5
6function changedProperties(model: ModelBlob, record: GadgetRecord<BaseRecord>) {
7 const changes = record.changes();
8 const attributes = Object.keys(changes).reduce((attrs, key) => {
9 attrs[key] = record[key];
10 return attrs;
11 }, {});
12 return attributes;
13}
14
15const record = new GadgetRecord({ id: "123", title: "Something old" });
16
17record.title = "Something new";
18await api.record.update(record.id, { ...changedProperties(record) });
19record.flushChanges(ChangeTracking.SinceLastPersisted); // this applies the current state of the record to the ChangeTracking.SinceLastPersisted change tracking context
20
21console.log(record.changed(ChangeTracking.SinceLastPersisted)); // false since these changes have been flushed
22
23console.log(record.changed()); // true, ChangeTracking.SinceLoaded context hasn't changed
24console.log(record.changed(ChangeTracking.SinceLoaded)); // true; equivalent to above
25
26console.log(record.changes()); // { title: { changed: true, current: "Something new", previous: "Something old" } }
27console.log(record.changes(ChangeTracking.SinceLoaded)); // same as above
28console.log(record.changes(ChangeTracking.SinceLastPersisted)); // {}, because we flushed it above
29
30record.revertChanges(); // reverts changes to the record, in accordance with the ChangeTracking.SinceLoaded context
31record.revertChanges(ChangeTracking.SinceLoaded); // equivalent to line above, no effect
32
33console.log(record.title); // "Something old"
34console.log(record.changed()); // false
35console.log(record.changes()); // {}
36
37console.log(record.changed(ChangeTracking.SinceLastPersisted)); // true; reverted since we last persisted
38console.log(record.changes("title", ChangeTracking.SinceLastPersisted)); // { changed: true, current: "Something old", previous: "Something new" }

Working with GadgetRecord in code effects 

When writing custom code effects, conditions, and model field validations you have access to a shared GadgetRecord in context.

Most commonly, you will be working with the context.record inside custom code effects. Gadget will instantiate an instance of a GadgetRecord when it starts executing your action. This same instance will be shared between all validations and effects that run during that action.

The typical GadgetRecord lifecycle is as follows:

  1. Instantiate a new GadgetRecord. All fields are undefined, no changes are tracked.
  2. Run the Apply params effect. This effect is the first effect by default in your Create and Update actions. After this effect runs, your context.record will have changes() that correspond to the current state of the record.
  3. Run the Create Record or Update Record effect. These effects will first validate your record and then, if valid, persist the record in your database. They will also clear the changes() state of the record after persisting it.