|
1 | 1 | /**
|
2 |
| - * This package provides reactive capabilities for your resource data. |
3 |
| - * It works together with a [*Warp***Drive**](https://github.com/emberjs/data/) |
4 |
| - * [Cache](../classes/<Interface>%20Cache) |
5 |
| - * and associated Schemas to simplify the most complex parts of your |
6 |
| - * app's state management. |
| 2 | + * <h3 align="center">Your Data, Managed.</h3> |
| 3 | + * <p align="center">🌲 Get back to Nature 🐿️ Or shipping 💚</p> |
| 4 | + * |
| 5 | + * - ⚡️ Fast |
| 6 | + * - 📦 Tiny |
| 7 | + * - ✨ Optimized |
| 8 | + * - 🚀 Scalable |
| 9 | + * - ⚛️ Universal |
| 10 | + * - ☢️ Reactive |
| 11 | + * |
| 12 | + * SchemaRecord is a reactive object that transforms raw data from an [associated cache](../classes/<Interface>%20Cache) |
| 13 | + * into reactive data backed by Signals. |
| 14 | + * |
| 15 | + * The shape of the object and the transformation of raw cache data into its |
| 16 | + * reactive form is controlled by a resource schema. |
| 17 | + * |
| 18 | + * Resource schemas are simple JSON, allowing them to be defined and delivered from anywhere. |
| 19 | + * |
| 20 | + * The capabilities that SchemaRecord brings to [*Warp***Drive**](https://github.com/emberjs/data/) |
| 21 | + * will simplify even the most complex parts of your app's state management. |
| 22 | + * |
| 23 | + * ## Installation |
| 24 | + * |
| 25 | + * |
| 26 | + * Install using your javascript package manager of choice. For instance |
| 27 | + * with [pnpm](https://pnpm.io/) |
| 28 | + * |
| 29 | + * ```cli |
| 30 | + * pnpm add @warp-drive/schema-record |
| 31 | + * ``` |
| 32 | + * |
| 33 | + * ## Getting Started |
| 34 | + * |
| 35 | + * If this package is how you are first learning about WarpDrive/EmberData, we |
| 36 | + * recommend starting with learning about [Requests](../modules/@ember-data%2Frequest) |
| 37 | + * and the [Store](../modules/@ember-data%2Fstore). |
| 38 | + * |
| 39 | + * ## 🚀 Setup |
| 40 | + * |
| 41 | + * SchemaRecord integrates with WarpDrive via the Store's resource lifecycle hooks. |
| 42 | + * When WarpDrive needs to create a new record instance to give reactive access to |
| 43 | + * a resource in the cache, it calls `instantiateRecord`. When it no longer needs |
| 44 | + * that instance, it will call `teardownRecord`. |
| 45 | + * |
| 46 | + * ```diff |
| 47 | + * import Store from '@ember-data/store'; |
| 48 | + * +import { instantiateRecord, teardownRecord, registerDerivations, SchemaService } from '@warp-drive/schema-record'; |
| 49 | + * |
| 50 | + * class AppStore extends Store { |
| 51 | + * |
| 52 | + * + createSchemaService() { |
| 53 | + * + const schema = new SchemaService(); |
| 54 | + * + registerDerivations(schema); |
| 55 | + * + return schema; |
| 56 | + * + } |
| 57 | + * |
| 58 | + * + instantiateRecord(identifier, createArgs) { |
| 59 | + * + return instantiateRecord(this, identifier, createArgs); |
| 60 | + * + } |
| 61 | + * |
| 62 | + * + teardownRecord(record) { |
| 63 | + * + return teardownRecord(record); |
| 64 | + * + } |
| 65 | + * } |
| 66 | + * ``` |
| 67 | + * |
| 68 | + * Any Store API that returns a record instance will use the `instantiateRecord` |
| 69 | + * hook configured above to instantiate a SchemaRecord once this is in place. |
| 70 | + * After that, its up to you what SchemaRecord can do. |
| 71 | + * |
| 72 | + * ## Start Using |
7 | 73 | *
|
8 | 74 | * @module @warp-drive/schema-record
|
9 | 75 | * @main @warp-drive/schema-record
|
|
0 commit comments