Skip to main content
Version: 6.0

schema.Values

Like Array, Values are unbounded in size. The definition here describes the types of values to expect, with keys being any string.

Describes a map whose values follow the given schema.

  • definition: required A singular schema that this array contains or a mapping of schema to attribute values.
  • schemaAttribute: optional (required if definition is not a singular schema) The attribute on each entity found that defines what schema, per the definition mapping, to use when normalizing. Can be a string or a function. If given a function, accepts the following arguments:
    • value: The input value of the entity.
    • parent: The parent object of the input array.
    • key: The key at which the input array appears on the parent object.

Instance Methods

  • define(definition): When used, the definition passed in will be merged with the original definition passed to the Values constructor. This method tends to be useful for creating circular references in schema.
Naming

Values is named after Object.values() as its schemas are used for the value of an Object.

Usage

Fixtures
GET /items
{"firstThing":{"id":1},"secondThing":{"id":2}}
ItemPage.tsx
export class Item extends Entity {
readonly id: number = 0;
pk() {
return `${this.id}`;
}
}
export const getItems = new RestEndpoint({
path: '/items',
schema: new schema.Values(Item),
});
function ItemPage() {
const items = useSuspense(getItems);
return <pre>{JSON.stringify(items, undefined, 2)}</pre>;
}
render(<ItemPage />);
Live Preview
Loading...
Store
    • {} 0 keys
      • {} 0 keys
        • {} 0 keys
          • {} 0 keys
            • {} 0 keys
              • 0

            Polymorphic types

            If your input data is an object that has values of more than one type of entity, but their schema is not easily defined by the key, you can use a mapping of schema, much like schema.Union and schema.Array.

            note

            If your data returns an object that you did not provide a mapping for, the original object will be returned in the result and an entity will not be created.

            string schemaAttribute

            Fixtures
            GET /feed
            [{"id":1,"type":"link","url":"https://ntucker.true.io","title":"Nate site"},{"id":10,"type":"post","content":"good day!"}]
            api/Feed.ts
            export abstract class FeedItem extends Entity {
            readonly id: number = 0;
            declare readonly type: 'link' | 'post';
            pk() {
            return `${this.id}`;
            }
            }
            export class Link extends FeedItem {
            readonly type = 'link' as const;
            readonly url: string = '';
            readonly title: string = '';
            }
            export class Post extends FeedItem {
            readonly type = 'post' as const;
            readonly content: string = '';
            }
            export const getFeed = new RestEndpoint({
            path: '/feed',
            schema: new schema.Values(
            {
            link: Link,
            post: Post,
            },
            'type',
            ),
            });
            FeedList.tsx
            import { getFeed, Link, Post } from './api/Feed';
            function FeedList() {
            const feedItems = useSuspense(getFeed);
            return (
            <div>
            {Object.entries(feedItems).map(([key, item]) => (
            <div key={item.pk()}>
            {key}:{' '}
            {item.type === 'link' ? (
            <LinkItem link={item} />
            ) : (
            <PostItem post={item} />
            )}
            </div>
            ))}
            </div>
            );
            }
            function LinkItem({ link }: { link: Link }) {
            return <a href={link.url}>{link.title}</a>;
            }
            function PostItem({ post }: { post: Post }) {
            return <span>{post.content}</span>;
            }
            render(<FeedList />);
            Live Preview
            Loading...
            Store
              • {} 0 keys
                • {} 0 keys
                  • {} 0 keys
                    • {} 0 keys
                      • {} 0 keys
                        • 0

                      function schemaAttribute

                      The return values should match a key in the definition. Here we'll show the same behavior as the 'string' case, except we'll append an 's'.

                      Fixtures
                      GET /feed
                      [{"id":1,"type":"link","url":"https://ntucker.true.io","title":"Nate site"},{"id":10,"type":"post","content":"good day!"}]
                      api/Feed.ts
                      export abstract class FeedItem extends Entity {
                      readonly id: number = 0;
                      declare readonly type: 'link' | 'post';
                      pk() {
                      return `${this.id}`;
                      }
                      }
                      export class Link extends FeedItem {
                      readonly type = 'link' as const;
                      readonly url: string = '';
                      readonly title: string = '';
                      }
                      export class Post extends FeedItem {
                      readonly type = 'post' as const;
                      readonly content: string = '';
                      }
                      export const getFeed = new RestEndpoint({
                      path: '/feed',
                      schema: new schema.Values(
                      {
                      links: Link,
                      posts: Post,
                      },
                      (input: Link | Post, parent: unknown, key: string) => `${input.type}s`,
                      ),
                      });
                      FeedList.tsx
                      import { getFeed, Link, Post } from './api/Feed';
                      function FeedList() {
                      const feedItems = useSuspense(getFeed);
                      return (
                      <div>
                      {Object.entries(feedItems).map(([key, item]) => (
                      <div key={item.pk()}>
                      {key}:{' '}
                      {item.type === 'link' ? (
                      <LinkItem link={item} />
                      ) : (
                      <PostItem post={item} />
                      )}
                      </div>
                      ))}
                      </div>
                      );
                      }
                      function LinkItem({ link }: { link: Link }) {
                      return <a href={link.url}>{link.title}</a>;
                      }
                      function PostItem({ post }: { post: Post }) {
                      return <span>{post.content}</span>;
                      }
                      render(<FeedList />);
                      Live Preview
                      Loading...
                      Store
                        • {} 0 keys
                          • {} 0 keys
                            • {} 0 keys
                              • {} 0 keys
                                • {} 0 keys
                                  • 0