As the Ember Community approaches delivery of long awaited features enabling tree-shaking, ember-data needs to take some steps to enable this feature to shed the weight of features that consuming applications do not use.
The first step is to ensure that the packages ember-data provides are properly encapsulated. In many cases, this will both enable support for tree-shaking once available to the broader community and enable manually opting for a subset of packages.
Later steps will ensure that ember-data relies on explicit imports (whether automatically generated at build-time or declared by consuming applications) where currently we rely on resolver lookups.
ember-data without @ember-data/serializerThe serializer package provides reference serializer implementations and a base serializer class that are not required for applications that choose to write a custom serializer implementing the minimal serializer interface. This includes the EmbeddedRecordsMixin and the base Transform class.
Transforms, while specified via attr available from @ember-data/model are a concept specific to these reference serializers and not used anywhere else within ember-data. Custom serializers thus may or may not choose to use them via the same mechanism (owner.lookup('transform:<name>')). Lastly the Transform base class merely shows the interface required for transforms but is not required to be used as a base class.
Action Items
-default and -json-api serializer (use app re-exports instead)-default serializer fallback in Store.serializerForAdapter.serializer and Adapter.defaultSerializer fallbacks (which currently default to -json-api.Model.toJSON and support the scenario for quick debug-mode inspection via debugData() method which in DEBUG would print a similar object to the current toJSON method.-rest serializer fallback usage in tests-json-api serializer fallback usage in tests-default serializer fallback usage in testsember-data without @ember-data/adapterThe adapter package provides reference adapter implementations and a base adapter class that are not required for applications that choose to write a custom adapter implementing the minimal adapter interface.
Action Items
-rest and -json-api adapter (use re-export pattern for -json-api adapter)Store.defaultAdapter (-json-api) and the -json-api adapter fallback behavior-rest adapter which is only available for tests at this point unless consumers manually call adapterFor('-rest').findMany is optionalfindBelongsTo is optionalfindHasMany is optionalshouldReloadRecord is optionalshouldBackgroundReloadRecord is optionalshouldReloadAll is optionalshouldBackgroundReloadAll is optionalisInvalidError flag or specific message instead of instanceof InvalidError in storeerrorsArrayToHash uses the private store versionember-data without @ember-data/modelWhile at the time of writing this quest @ember-data/model is the only model class available for use with ember-data based on public APIs, the introduction of custom Model Classes will mean that users who install @ember-data/model alternatives via addon or by writing their own should be able to consume ember-data without using a package which provides a model implementation they do not use.
Enabling use without @ember-data/model requires much more groundwork than that needed for the adapter and serializer package.
Model Action Items
Model from the store package into the Model package.@hasMany and @belongsTo into the Model package.-private/system/relationships/ext.js in @ember-data/store into the Model packageManyArray and PromiseManyArray into the Model package. See RFC notesPromiseBelongsTo into the Model package.Model specific _modelForMixin implementation into the store from the Model package (this provides the multi-inheritance polymorphism feature which some aspects of ember-data currently support).BelongsToReference.push receiving a Model instanceIdentifiers RFC.Record to RecordIdentifier to occur within @belongsTo and @hasManyInternalModel Action Items
Reference.internalModel propertyStore.getReference to not lookup the associated InternalModel to generate the reference.Model package.InternalModelRecordData Errors RFCRequest State RFC.InternalModel into the Model package.InternalModel Cleanup Action Items
Once the items in InternalModel Action Items are complete, we can move the instantiation and lookup logic in the Store into the Model package.
InternalModel only for @ember-data/model when using the instantiateRecord hook.Store._internalModelForId usage in favor of Identifier based logic.ember-data without @ember-data/relationship-layerThe relationship-layer package is currently deeply entangled with @ember-data/model's Model implementation. Even though we can encapsulate the imports to/from these packages, users would not be able to use @ember-data/model without also using @ember-data/relationship-layer. Additionally, in its current form the relationship-layer is not abstracted away from the specifics of the implementation of Model making is largely unusable with other Model implementations. Changes to address this are needed but are outside the scope of this quest, and until such time as they occur users wishing to drop this package would need to drop both this and the Model package together.
-private/system/relationships/state in @ember-data/store into a new relationship-layer package. See RFC notesbelongsToReference and HasManyReference into relationship-layer from store.internalModel to pull information from the RecordIdentifier or the Store for type id hasRecord and getRecord()-request-manager service for the store to use to refactor our current network request flows ontoember-data without @ember-data/debugProvides the DataAdapter for the ember-inspector
detect should not require Modelember-data without @ember-data/record-dataProvides the default RecordData implementation
RecordData into this packagestore package to implement createRecordDataForcreateStore and setupStorecreateStore-default serializer if moduleFor style tests are still supported-default serializer when this condition is detectedembroider is pursuing a strategy in which consuming applications opt in to enabling tree-shaking of specific kinds of features once they have determined for their own application that this is allowable.
To this end, users of ember-data would also opt in to tree shaking, possibly on a per-primitive basis.
Models - build time generated imports, nothing would be shaken except when possible for users opting into the "megamorphic model" case once that becomes available.
Adapters/Serializers - in the near-term, deprecating various fallbacks will allow us to shake out the implementations provided by default once tree-shaking is enabled more generally. Here, as with models, we would generate at build time a list of the user's adapters as a list of static imports. Any default implementations not imported by user adapters would then be dropped.
In the long-term, adapters would be deprecated in favor of user-supplied network middlewares. Such middlewares, including those provided by addons, would be imported and registered with the request-manager service directly. Since these are static imports being registered to a service, in the long term no custom infrastructure would be needed to support tree-shaking.
Also in the long-term, serializers would be deprecated in favor of either their corresponding "adapter" replacement handling these concerns or in favor of middlewares specific to normalization and serialization concerns. Similarly, in the long term no custom infra for ensuring static imports for tree-shaking needs would be required.
Transforms - There are three ways for a user to utilize a transform today: attr(<transformName>), owner.lookup('transform:<transformName>') and direct import of a transform followed by Transform.create(). Of these, the third already plays nicely with tree-shaking. For attr and lookup usage we will need to enforce "static string usage" for lookup and and attr(), at which point we can use this to generate an import file of only those transforms that are actually in-use.
Also note, if none of the default serializers is in use and there is no project usage of lookup('transform:<transformName>') then it is likely we can drop all transforms even when referenced by attr.
lookup and attrlookup and attr transform usagesDefaultRecordData/DefaultModel - we would export our default setup within the app/ directory. An end user or addon configuring their own Model or RecordData would result in overriding this.
ember-datadefaultStore behavior in Embercontroller/route@lifeart hate to tell you this but we've got the codemod and lint rules mostly ready to go already.
rfc-data: https://github.com/ember-data/ember-data-rfc395-data
codemod: https://github.com/dcyriller/ember-data-codemod
I think we still need to update the lint plugin to pull from this rfc-data
@runspired good news! @dcyriller should we move codemod into https://github.com/ember-codemods ?
//cc @rwjblue
// // #topic-codemods
I created an issue to discuss that over in the codemod repo...
@lifeart good idea, sure I'll do that. Let me fix a bug and initiate the migration.
There is node a lint rule PR here: https://github.com/ember-cli/eslint-plugin-ember/pull/450
Is this up to date? It looks like there has been little progress since December 2019.