• Stars
    star
    371
  • Rank 115,103 (Top 3 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 10 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Ember Data addon to support nested JSON documents

Ember Data Model Fragments

CI NPM Version Ember Observer Score

This package provides support for sub-models that can be treated much like belongsTo and hasMany relationships are, but whose persistence is managed completely through the parent object.

⚠️ Deprecated APIs have been removed. See the changelog for more information on breaking changes.

Compatibility

This project makes extensive use of private Ember Data APIs and is therefore sensitive to minor changes in new Ember Data releases, regardless of semver guarantees. Every effort is made to maintain compatibility with the latest version, but updates always take time. See the contributing section if you'd like to help out :shipit:

Use the following table to decide which version of this project to use with your app:

Ember Data Model Fragments Node.JS
>= v3.5.x < v3.12.x v4.x 10+
>= v3.13.x < v3.27.x v5.x 12+
>= v3.28.x < v4.6.x v6.x 14+
>= v4.7.x Not Compatible

Installation

To install as an Ember CLI addon:

$ ember install ember-data-model-fragments

You may then start creating fragments with:

$ ember generate fragment foo someAttr:string anotherAttr:boolean

Which will create the module app/models/foo.js which exports a Fragment class with the given attributes.

Example

// app/models/person.js

import Model from "@ember-data/model";
import {
  fragment,
  fragmentArray,
  array,
} from "ember-data-model-fragments/attributes";

export default class PersonModel extends Model {
  @fragment("name") name;
  @fragmentArray("address") addresses;
  @array() titles;
}
// app/models/name.js

import Fragment from "ember-data-model-fragments/fragment";
import { attr } from "@ember-data/model";

export default class NameFragment extends Fragment {
  @attr("string") first;
  @attr("string") last;
}
// app/models/address.js

import Fragment from "ember-data-model-fragments/fragment";
import { attr } from "@ember-data/model";

export default class AddressFragment extends Fragment {
  @attr("string") street;
  @attr("string") city;
  @attr("string") region;
  @attr("string") country;
}

With a JSON payload of:

{
  "person": {
    "id": "1",
    "name": {
      "first": "Tyrion",
      "last": "Lannister"
    },
    "addresses": [
      {
        "street": "1 Sky Cell",
        "city": "Eyre",
        "region": "Vale of Arryn",
        "country": "Westeros"
      },
      {
        "street": "1 Tower of the Hand",
        "city": "King's Landing",
        "region": "Crownlands",
        "country": "Westeros"
      }
    ],
    "titles": ["Imp", "Hand of the King"]
  }
}

The name attribute can be treated similar to a belongsTo relationship:

const person = store.peekRecord("person", "1");
const name = person.get("name");

person.get("hasDirtyAttributes"); // false
name.get("first"); // 'Tyrion'

name.set("first", "Jamie");
person.get("hasDirtyAttributes"); // true

person.rollbackAttributes();
name.get("first"); // 'Tyrion'

// New fragments are created through the store and assigned directly
person.set(
  "name",
  store.createFragment("name", {
    first: "Hugor",
    last: "Hill",
  })
);
person.get("hasDirtyAttributes"); // true

// Fragments can also be set with hashes
person.set("name", {
  first: "Tyrion",
  last: "Lannister",
});
person.get("hasDirtyAttributes"); // false

The addresses attribute can be treated similar to a hasMany relationship:

const person = store.peekRecord("person", "1");
const addresses = person.get("addresses");
const address = addresses.get("lastObject");

person.get("hasDirtyAttributes"); // false
address.get("country"); // 'Westeros'

address.set("country", "Essos");
person.get("hasDirtyAttributes"); // true

person.rollbackAttributes();
address.get("country"); // 'Westeros'

// Fragments can be created and added directly through the fragment array
addresses.get("length"); // 2
addresses.createFragment({
  street: "1 Shy Maid",
  city: "Rhoyne River",
  region: "Free Cities",
  country: "Essos",
});
addresses.get("length"); // 3
person.get("hasDirtyAttributes"); // true

// Or with arrays of objects
person.set("addresses", [
  {
    street: "1 Great Pyramid",
    city: "Meereen",
    region: "Slaver's Bay",
    country: "Essos",
  },
]);

The titles attribute can be treated as an Ember.Array:

const person = store.peekRecord("person", "1");
const titles = person.get("titles");

person.get("hasDirtyAttributes"); // false
titles.get("length"); // 2

titles.pushObject("Halfman");
titles.get("length"); // 3
person.get("hasDirtyAttributes"); // true

person.rollbackAttributes();
titles.get("length"); // 2

Default Values

Ember Data attributes support a defaultValue config option that provides a default value when a model is created through store#createRecord(). Similarly, fragment and fragmentArray properties support a defaultValue option:

// app/models/person.js

import Model from "@ember-data/model";
import {
  fragment,
  fragmentArray,
  array,
} from "ember-data-model-fragments/attributes";

export default class PersonModel extends Model {
  @fragment("name", { defaultValue: { first: "Faceless", last: "Man" } }) name;
  @fragmentArray("address") addresses;
  @array("string") titles;
}

Since JavaScript objects and arrays are passed by reference, the value of defaultValue is copied using Ember.copy in order to prevent all instances sharing the same value. If a defaultValue option is not specified, fragment properties default to null and fragmentArray properties default to an empty array. Note that this may cause confusion when creating a record with a fragmentArray property:

const person = store.createRecord('person');
const addresses = person.get('addresses'); // null

// Fails with "Cannot read property 'createFragment' of null"
addresses.createFragment({
  ...
});

Like attr, the defaultValue option can be a function that is invoked to generate the default value:

// app/models/person.js

import Model from "@ember-data/model";
import { fragment } from "ember-data-model-fragments/attributes";

export default class PersonModel extends Model {
  @fragment("name", {
    defaultValue() {
      return {
        first: "Unsullied",
        last: new Date().toString(),
      };
    },
  })
  name;
}

Serializing

Serializing records with fragment attributes works using a special Transform that serializes each fragment or fragment array. This results in fragments being nested in JSON as expected, and avoids the need for any custom serialization logic for most cases. This also means that model fragments can have their own custom serializers, just as normal models can:

// app/models/name.js

import Fragment from "ember-data-model-fragments/fragment";
import { attr } from "@ember-data/model";

export default class NameFragment extends Fragment {
  @attr("string") given;
  @attr("string") family;
}
// apps/serializers/name.js
// Serializers for fragments work just as with models

import JSONSerializer from "@ember-data/serializer/json";

export default class NameSerializer extends JSONSerializer {
  attrs = {
    given: "first",
    family: "last",
  };
}

Since fragment deserialization uses the value of a single attribute in the parent model, the normalizeResponse method of the serializer is never used. And since the attribute value is not a full-fledged JSON API response, JSONAPISerializer cannot be used with fragments. Because of this, auto-generated fragment serializers do not use the application serializer and instead use JSONSerializer.

If common logic must be added to auto-generated fragment serializers, apps can register a custom serializer:-fragment with the application in an initializer.

// app/serializers/fragment.js

import JSONSerializer from "@ember-data/serializer/json";

export default class FragmentSerializer extends JSONSerializer {}
// app/initializers/fragment-serializer.js

import FragmentSerializer from "../serializers/fragment";

export function initialize(application) {
  application.register("serializer:-fragment", FragmentSerializer);
}

export default {
  name: "fragment-serializer",
  initialize: initialize,
};

If custom serialization of the owner record is needed, fragment snapshots can be accessed using the Snapshot#attr method. Note that this differs from how relationships are accessed on snapshots (using belongsTo/hasMany methods):

// apps/serializers/person.js
// Fragment snapshots are accessed using `snapshot.attr()`

import JSONSerializer from "@ember-data/serializer/json";

export default JSONSerializer.extend({
  serialize(snapshot, options) {
    const json = super.serialize(...arguments);

    // Returns a `Snapshot` instance of the fragment
    const nameSnapshot = snapshot.attr("name");

    json.full_name =
      nameSnapshot.attr("given") + " " + nameSnapshot.attr("family");

    // Returns a plain array of `Snapshot` instances
    const addressSnapshots = snapshot.attr("addresses");

    json.countries = addressSnapshots.map(function (addressSnapshot) {
      return addressSnapshot.attr("country");
    });

    // Returns a plain array of primitives
    const titlesSnapshot = snapshot.attr("titles");

    json.title_count = titlesSnapshot.length;

    return json;
  },
});

Nesting

Nesting of fragments is fully supported:

// app/models/user.js

import Model, { attr } from "@ember-data/model";
import { fragmentArray } from "ember-data-model-fragments/attributes";

export default class UserModel extends Model {
  @attr("string") name;
  @fragmentArray("order") orders;
}
// app/models/order.js

import Fragment from "ember-data-model-fragments/fragment";
import { attr } from "@ember-data/model";
import { fragmentArray } from "ember-data-model-fragments/attributes";

export default class OrderFragment extends Fragment {
  @attr("string") amount;
  @fragmentArray("product") products;
}
// app/models/product.js

import Fragment from "ember-data-model-fragments/fragment";
import { attr } from "@ember-data/model";

export default class ProductFragment extends Fragment {
  @attr("string") name;
  @attr("string") sku;
  @attr("string") price;
}

With a JSON payload of:

{
  "id": "1",
  "name": "Tyrion Lannister",
  "orders": [
    {
      "amount": "799.98",
      "products": [
        {
          "name": "Tears of Lys",
          "sku": "poison-bd-32",
          "price": "499.99"
        },
        {
          "name": "The Strangler",
          "sku": "poison-md-24",
          "price": "299.99"
        }
      ]
    },
    {
      "amount": "10999.99",
      "products": [
        {
          "name": "Lives of Four Kings",
          "sku": "old-book-32",
          "price": "10999.99"
        }
      ]
    }
  ]
}

Dirty state propagates up to the parent record, rollback cascades down:

const user = store.peekRecord("user", "1");
const product = user.get("orders.firstObject.products.lastObject");

user.get("hasDirtyAttributes"); // false
product.get("price"); // '299.99'

product.set("price", "1.99");
user.get("hasDirtyAttributes"); // true

user.rollbackAttributes();
user.get("hasDirtyAttributes"); // false
product.get("price"); // '299.99'

However, note that fragments do not currently support belongsTo or hasMany properties. See the Limitations section below.

Polymorphism

Ember Data: Model Fragments has support for reading polymorphic fragments. To use this feature, pass an options object to fragment or fragmentArray with polymorphic set to true. In addition the typeKey can be set, which defaults to 'type'.

The typeKey option might be a String or a Function returning a String. If you use a function, the data and the owner will be passed as parameter.

The typeKey's value must be the lowercase name of a class that is assignment-compatible to the declared type of the fragment attribute. That is, it must be the declared type itself or a subclass. Additionally, the typeKey's value must be a field on the parent class.

In the following example the declared type of animals is animal, which corresponds to the class Animal. Animal has two subclasses: Elephant and Lion, so to typeKey's value can be 'animal', 'elephant' or 'lion'.

// app/models/zoo.js

import Model, { attr } from "@ember-data/model";
import { fragment, fragmentArray } from "ember-data-model-fragments/attributes";

export default class ZooModel extends Model {
  @attr("string") name;
  @attr("string") city;
  @fragmentArray("animal", { polymorphic: true, typeKey: "$type" }) animals;
  @fragment("animal", {
    polymorphic: true,
    typeKey: (data) => `my-model-prefix-${data.name}`,
  })
  bestAnimal;
}
// app/models/animal.js

import Fragment from "ember-data-model-fragments/fragment";
import { attr } from "@ember-data/model";

export default class AnimalFragment extends Fragment {
  @attr("string") $type;
  @attr("string") name;
}
// app/models/elephant.js

import AnimalFragment from "./animal";
import { attr } from "@ember-data/model";

export default class ElephantFragment extends AnimalFragment {
  @attr("number") trunkLength;
}
// app/models/lion.js

import AnimalFragment from "./animal";
import { attr } from "@ember-data/model";

export default class LionFragment extends AnimalFragment {
  @attr("boolean") hasManes;
}

The expected JSON payload is as follows:

{
  "Zoo": {
    "id": "1",
    "name": "Winterfell Zoo",
    "city": "Winterfell",
    "animals": [
      {
        "$type": "lion",
        "name": "Simba",
        "hasManes": false
      },
      {
        "$type": "lion",
        "name": "Leonard",
        "hasManes": true
      },
      {
        "$type": "elephant",
        "name": "Trunky",
        "trunkLength": 10
      },
      {
        "$type": "elephant",
        "name": "Snuffles",
        "trunkLength": 9
      }
    ]
  }
}

Serializing the fragment type back to JSON is not currently supported out of the box. To serialize the polymorphic type, create a custom serializer to perform manual introspection:

// app/serializers/animal.js

import JSONSerializer from "@ember-data/serializer/json";
import ElephantFragment from "app/models/elephant";
import LionFragment from "app/models/elephant";

export default class AnimalSerializer extends JSONSerializer {
  serialize(record, options) {
    const json = super.serialize(...arguments);

    if (record instanceof ElephantFragment) {
      json.$type = "elephant";
    } else if (record instanceof LionFragment) {
      json.$type = "lion";
    } else {
      json.$type = "animal";
    }

    return json;
  }
}
// app/serializers/elephant.js

import AnimalSerializer from "./animal";

export default AnimalSerializer;
// app/serializers/lion.js

import AnimalSerializer from "./animal";

export default AnimalSerializer;

TypeScript

TypeScript declarations are included out of the box. For additional type safety for createFragment, push, etc. you can index your fragment classes in the FragmentRegistry:

// app/models/address.ts

import Fragment from "ember-data-model-fragments/fragment";
import { attr } from "@ember-data/model";

export default class AddressFragment extends Fragment {
  @attr("string")
  declare street: string;

  @attr("string")
  declare city: string;

  @attr("string")
  declare region: string;

  @attr("string")
  declare country: string;
}

declare module "ember-data-model-fragments/types/registries/fragment" {
  export default interface FragmentRegistry {
    address: AddressFragment;
  }
}

Limitations

Conflict Resolution

There is a very good reason that support for id-less embedded records has not been added to Ember Data: merging conflicts is very difficult. Imagine a scenario where your app requests a record with an array of simple embedded objects, and then a minute later makes the same request again. If the array of objects has changed – for instance an object is added to the beginning – without unique identifiers there is no reliable way to map those objects onto the array of records in memory.

This plugin handles merging fragment arrays by swapping out the data of existing fragments. For example, when a record is fetched with a fragment array property, a fragment model is created for each object in the array. Then, after the record is reloaded via reload or save, the data received is mapped directly onto those existing fragment instances, adding or removing from the end when necessary. This means that reordering the array will cause fragment objects' data to swap, rather than simply reordering the array of fragments in memory. The biggest implication of this behavior is when a fragment in a fragment array is dirty and the parent model gets reloaded. If the record is then saved, the change will likely affect the wrong object, causing data loss. Additionally, any time a reference to a model fragment is held onto, reloading can give it a completely different semantic meaning. If your app does not persist models with fragment arrays, this is of no concern (and indeed you may wish to use the EmbeddedRecordMixin instead).

Filtered Record Arrays

Another consequence of id-less records is that an ID map of all fragment instances of a given type is not possible. This means no store.all('<fragment_type>'), and no ability to display all known fragments (e.g. names or addresses) without iterating over all owner records and manually building a list.

Relationships to Models

Currently, fragments cannot have normal belongsTo or hasMany relationships. This is not a technical limitation, but rather due to the fact that relationship management in Ember Data is in a state of flux and would require accessing private (and changing) APIs.

Testing

Building requires Ember CLI and running tests requires Test 'Em, which can all be installed globally with:

$ yarn global add ember-cli

Then install NPM packages and start the development test server:

$ yarn
$ ember test --server

It is also possible to run the tests in a headless fashion. This requires PhantomJS 2 to be installed.

$ ember test

# Using `yarn test` will invoke `ember try:testall`.
# This will test each version of ember supported by this addon.
$ yarn test

Contributing

When reporting an issue, follow the Ember guidelines. When contributing features, follow Github guidelines for forking and creating a new pull request. All existing tests must pass (or be suitably modified), and all new features must be accompanied by tests to be considered.

More Repositories

1

ember-electron

⚑ Build, test, compile and package desktop apps with Ember and Electron
JavaScript
806
star
2

ember-cp-validations

Ember computed property based validations
JavaScript
443
star
3

ember-changeset

Ember.js flavored changesets, inspired by Ecto
JavaScript
431
star
4

ember-moment

JavaScript
399
star
5

ember-infinity

⚑ Simple, flexible Infinite Scroll for Ember CLI Apps.
JavaScript
377
star
6

ember-metrics

Send data to multiple analytics integrations without re-implementing new API
JavaScript
367
star
7

ember-cli-flash

Simple, highly configurable flash messages for ember-cli
JavaScript
355
star
8

ember-light-table

Lightweight, contextual component based table for Ember
JavaScript
312
star
9

ember-data-factory-guy

Factories and helper functions for (unit, integration, acceptance) testing + development scenarios with Ember Data
JavaScript
302
star
10

ember-sortable

Sortable UI primitives for Ember.js
JavaScript
295
star
11

ember-burger-menu

An off-canvas sidebar component with a collection of animations and styles using CSS transitions
JavaScript
279
star
12

ember-cli-sass

Use node-sass to preprocess your ember-cli app's files, with support for sourceMaps and include paths
JavaScript
276
star
13

ember-notify

Notification messages for your Ember.js app
JavaScript
264
star
14

ember-collection

An efficient incremental rendering component for Ember.js with support for custom layouts and large lists
JavaScript
236
star
15

ember-changeset-validations

Validations for ember-changeset
JavaScript
219
star
16

ember-file-upload

File uploads for Ember apps
TypeScript
201
star
17

emberx-select

Select component for Ember based on the native html select element.
JavaScript
200
star
18

ember-keyboard

An Ember.js addon for the painless support of keyboard events
JavaScript
177
star
19

ember-pikaday

A datepicker component for Ember CLI projects.
JavaScript
159
star
20

ember-impagination

An Ember Addon that puts the fun back in asynchronous, paginated datasets
JavaScript
122
star
21

active-model-adapter

Adapters and Serializers for Rails's ActiveModel::Serializers
TypeScript
102
star
22

ember-cli-hot-loader

An early look at what hot reloading might be like in the ember ecosystem
JavaScript
99
star
23

ember-autoresize

Autoresize for Ember Components
JavaScript
88
star
24

ember-cli-windows

🚀 Improve Ember-Cli Performance on Windows
JavaScript
79
star
25

ember-set-helper

A better `mut` helper
JavaScript
68
star
26

ember-inputmask

Ember wrapper around Inputmask.js
JavaScript
68
star
27

ember-collapsible-panel

An unopinionated, zero-dependency panel and accordion
JavaScript
57
star
28

ember-qunit-nice-errors

Because expected true, result false is not enough!
JavaScript
56
star
29

ember-cli-ifa

Ember CLI addon for injecting fingerprinted asset map file into Ember app
JavaScript
54
star
30

emberx-file-input

A tiny Ember component which does one thing and only: select files beautifully.
JavaScript
52
star
31

ember-cognito

AWS Amplify/Cognito and ember-simple-auth integration
JavaScript
32
star
32

ember-validators

A collection of EmberJS validators
JavaScript
24
star
33

ember-cli-bugsnag

Integrates Bugsnag reporting service into your Ember CLI app.
JavaScript
20
star
34

ember-stripe-elements

A simple Ember wrapper for Stripe Elements
JavaScript
18
star
35

ember-popper-modifier

An Ember modifier for working with Popper.js.
TypeScript
14
star
36

ember-launch-darkly

A modern Ember addon to wrap the Launch Darkly service
JavaScript
13
star
37

ember-require-module

Dynamically require modules
JavaScript
7
star
38

ember-indexeddb-adapter

Ember Data adapter for IndexedDB
JavaScript
4
star
39

program-guidelines

Checklist and guidelines for the Adopted Ember Addons org.
JavaScript
3
star
40

ember-cli-deploy-new-relic-sourcemap

Ember CLI Deploy plugin to deploy source maps to new relic
JavaScript
2
star