Skip to content

Commit 628a930

Browse files
committed
chore: improve schema-record documentation
1 parent 0c3484c commit 628a930

File tree

2 files changed

+88
-20
lines changed

2 files changed

+88
-20
lines changed

packages/schema-record/README.md

+17-15
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,37 @@
11
<p align="center">
22
<img
33
class="project-logo"
4-
src="./logos/NCC-1701-a-blue.svg#gh-light-mode-only"
5-
alt="WarpDrive"
6-
width="120px"
7-
title="WarpDrive" />
4+
src="./logos/github-header.svg#gh-light-mode-only"
5+
alt="WarpDrive | Boldly go where no app has gone before"
6+
title="WarpDrive | Boldly go where no app has gone before"
7+
/>
88
<img
99
class="project-logo"
10-
src="./logos/NCC-1701-a.svg#gh-dark-mode-only"
11-
alt="WarpDrive"
12-
width="120px"
13-
title="WarpDrive" />
10+
src="./logos/github-header.svg#gh-dark-mode-only"
11+
alt="WarpDrive | Boldly go where no app has gone before"
12+
title="WarpDrive | Boldly go where no app has gone before"
13+
/>
1414
</p>
1515

1616
<h3 align="center">Your Data, Managed.</h3>
1717
<p align="center">🌲 Get back to Nature 🐿️ Or shipping 💚</p>
1818

19-
SchemaRecord is:
20-
2119
- ⚡️ Fast
2220
- 📦 Tiny
2321
- ✨ Optimized
2422
- 🚀 Scalable
2523
- ⚛️ Universal
2624
- ☢️ Reactive
2725

28-
This package provides reactive capabilities for your resource data.
29-
It works together with a [*Warp***Drive**](https://github.com/emberjs/data/)
30-
[Cache](https://github.com/emberjs/data/blob/main/packages/core-types/src/cache.ts)
31-
and associated Schemas to simplify the most complex parts of your
32-
app's state management.
26+
SchemaRecord is a reactive object that transforms raw data from an [associated cache](https://github.com/emberjs/data/blob/main/packages/core-types/src/cache.ts) into reactive data backed by Signals.
27+
28+
The shape of the object and the transformation of raw cache data into its
29+
reactive form is controlled by a resource schema.
30+
31+
Resource schemas are simple JSON, allowing them to be defined and delivered from anywhere.
32+
33+
The capabilities that SchemaRecord brings to [*Warp***Drive**](https://github.com/emberjs/data/)
34+
will simplify even the most complex parts of your app's state management.
3335

3436
## Installation
3537

packages/schema-record/src/index.ts

+71-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,75 @@
11
/**
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
773
*
874
* @module @warp-drive/schema-record
975
* @main @warp-drive/schema-record

0 commit comments

Comments
 (0)