|
| 1 | +/** |
| 2 | + * @module @ember-data/legacy-compat/builders |
| 3 | + */ |
| 4 | +import { assert } from '@ember/debug'; |
| 5 | + |
| 6 | +import type Model from '@ember-data/model'; |
| 7 | +import { SkipCache } from '@ember-data/request'; |
| 8 | +import type { ImmutableRequestInfo } from '@ember-data/request/-private/types'; |
| 9 | +import { normalizeModelName } from './utils'; |
| 10 | + |
| 11 | +type QueryRequestInput<T extends string = string, RT = unknown[]> = ImmutableRequestInfo & { |
| 12 | + op: 'query'; |
| 13 | + data: { |
| 14 | + type: T; |
| 15 | + query: Record<string, unknown>; |
| 16 | + options: QueryBuilderOptions; |
| 17 | + }; |
| 18 | +}; |
| 19 | + |
| 20 | +type QueryBuilderOptions = { |
| 21 | + [K in string | 'adapterOptions']?: K extends 'adapterOptions' ? Record<string, unknown> : unknown; |
| 22 | +}; |
| 23 | + |
| 24 | +/** |
| 25 | + This function builds a request config for a given type and query object. |
| 26 | + When passed to `store.request`, this config will result in the same behavior as a `store.query` request. |
| 27 | + Additionally, it takes the same options as `store.query`. |
| 28 | +
|
| 29 | + All `@ember-data/legacy-compat` builders exist to enable you to migrate your codebase to using the correct syntax for `store.request` while temporarily preserving legacy behaviors. |
| 30 | + This is useful for quickly upgrading an entire app to a unified syntax while a longer incremental migration is made to shift off of adapters and serializers. |
| 31 | + To that end, these builders are deprecated and will be removed in a future version of Ember Data. |
| 32 | +
|
| 33 | + @method query |
| 34 | + @deprecated |
| 35 | + @public |
| 36 | + @static |
| 37 | + @for @ember-data/legacy-compat/builders |
| 38 | + @param {string} type the name of the resource |
| 39 | + @param {object} query a query to be used by the adapter |
| 40 | + @param {QueryBuilderOptions} [options] optional, may include `adapterOptions` hash which will be passed to adapter.query |
| 41 | + @return {QueryRequestInput} request config |
| 42 | +*/ |
| 43 | +export function queryBuilder<T extends Model>( |
| 44 | + type: string, |
| 45 | + query: Record<string, unknown>, |
| 46 | + options?: QueryBuilderOptions |
| 47 | +): QueryRequestInput<string, T[]>; |
| 48 | +export function queryBuilder( |
| 49 | + type: string, |
| 50 | + query: Record<string, unknown>, |
| 51 | + options?: QueryBuilderOptions |
| 52 | +): QueryRequestInput; |
| 53 | +export function queryBuilder( |
| 54 | + type: string, |
| 55 | + query: Record<string, unknown>, |
| 56 | + options: QueryBuilderOptions = {} |
| 57 | +): QueryRequestInput { |
| 58 | + assert(`You need to pass a model name to the query builder`, type); |
| 59 | + assert(`You need to pass a query hash to the query builder`, query); |
| 60 | + assert( |
| 61 | + `Model name passed to the query builder must be a dasherized string instead of ${type}`, |
| 62 | + typeof type === 'string' |
| 63 | + ); |
| 64 | + |
| 65 | + return { |
| 66 | + op: 'query' as const, |
| 67 | + data: { |
| 68 | + type: normalizeModelName(type), |
| 69 | + query, |
| 70 | + options: options, |
| 71 | + }, |
| 72 | + cacheOptions: { [SkipCache as symbol]: true }, |
| 73 | + }; |
| 74 | +} |
| 75 | + |
| 76 | +type QueryRecordRequestInput<T extends string = string, RT = unknown> = ImmutableRequestInfo & { |
| 77 | + op: 'queryRecord'; |
| 78 | + data: { |
| 79 | + type: T; |
| 80 | + query: Record<string, unknown>; |
| 81 | + options: QueryBuilderOptions; |
| 82 | + }; |
| 83 | +}; |
| 84 | + |
| 85 | +/** |
| 86 | + This function builds a request config for a given type and query object. |
| 87 | + When passed to `store.request`, this config will result in the same behavior as a `store.queryRecord` request. |
| 88 | + Additionally, it takes the same options as `store.queryRecord`. |
| 89 | +
|
| 90 | + All `@ember-data/legacy-compat` builders exist to enable you to migrate your codebase to using the correct syntax for `store.request` while temporarily preserving legacy behaviors. |
| 91 | + This is useful for quickly upgrading an entire app to a unified syntax while a longer incremental migration is made to shift off of adapters and serializers. |
| 92 | + To that end, these builders are deprecated and will be removed in a future version of Ember Data. |
| 93 | +
|
| 94 | + @method queryRecord |
| 95 | + @deprecated |
| 96 | + @public |
| 97 | + @static |
| 98 | + @for @ember-data/legacy-compat/builders |
| 99 | + @param {string} type the name of the resource |
| 100 | + @param {object} query a query to be used by the adapter |
| 101 | + @param {QueryBuilderOptions} [options] optional, may include `adapterOptions` hash which will be passed to adapter.query |
| 102 | + @return {QueryRecordRequestInput} request config |
| 103 | +*/ |
| 104 | +export function queryRecordBuilder<T extends Model>( |
| 105 | + type: string, |
| 106 | + query: Record<string, unknown>, |
| 107 | + options?: QueryBuilderOptions |
| 108 | +): QueryRecordRequestInput<string, T | null>; |
| 109 | +export function queryRecordBuilder( |
| 110 | + type: string, |
| 111 | + query: Record<string, unknown>, |
| 112 | + options?: QueryBuilderOptions |
| 113 | +): QueryRecordRequestInput; |
| 114 | +export function queryRecordBuilder( |
| 115 | + type: string, |
| 116 | + query: Record<string, unknown>, |
| 117 | + options?: QueryBuilderOptions |
| 118 | +): QueryRecordRequestInput { |
| 119 | + assert(`You need to pass a model name to the queryRecord builder`, type); |
| 120 | + assert(`You need to pass a query hash to the queryRecord builder`, query); |
| 121 | + assert( |
| 122 | + `Model name passed to the queryRecord builder must be a dasherized string instead of ${type}`, |
| 123 | + typeof type === 'string' |
| 124 | + ); |
| 125 | + |
| 126 | + return { |
| 127 | + op: 'queryRecord', |
| 128 | + data: { |
| 129 | + type: normalizeModelName(type), |
| 130 | + query, |
| 131 | + options: options || {}, |
| 132 | + }, |
| 133 | + cacheOptions: { [SkipCache as symbol]: true }, |
| 134 | + }; |
| 135 | +} |
0 commit comments