Skip to content

Commit f8ad07a

Browse files
committed
Clean up backports
1 parent cfc8292 commit f8ad07a

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

packages/active-record/src/-private/builders/query.ts

-2
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,11 @@ import { copyForwardUrlOptions, extractCacheOptions } from './-utils';
6262
*/
6363
export function query<T>(
6464
type: TypeFromInstance<T>,
65-
// eslint-disable-next-line @typescript-eslint/no-shadow
6665
query?: QueryParamsSource,
6766
options?: ConstrainedRequestOptions
6867
): QueryRequestOptions<T, CollectionResourceDataDocument<T>>;
6968
export function query(
7069
type: string,
71-
// eslint-disable-next-line @typescript-eslint/no-shadow
7270
query?: QueryParamsSource,
7371
options?: ConstrainedRequestOptions
7472
): QueryRequestOptions;

packages/json-api/src/-private/builders/query.ts

-4
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,11 @@ import { ACCEPT_HEADER_VALUE, copyForwardUrlOptions, extractCacheOptions } from
7171
*/
7272
export function query<T extends TypedRecordInstance>(
7373
type: TypeFromInstance<T>,
74-
// eslint-disable-next-line @typescript-eslint/no-shadow
7574
query?: QueryParamsSource<T>,
7675
options?: ConstrainedRequestOptions
7776
): QueryRequestOptions<T, CollectionResourceDataDocument<T>>;
7877
export function query(
7978
type: string,
80-
// eslint-disable-next-line @typescript-eslint/no-shadow
8179
query?: QueryParamsSource,
8280
options?: ConstrainedRequestOptions
8381
): QueryRequestOptions;
@@ -159,13 +157,11 @@ export function query(
159157
*/
160158
export function postQuery<T>(
161159
type: TypeFromInstance<T>,
162-
// eslint-disable-next-line @typescript-eslint/no-shadow
163160
query?: QueryParamsSource,
164161
options?: ConstrainedRequestOptions
165162
): PostQueryRequestOptions<T, CollectionResourceDataDocument<T>>;
166163
export function postQuery(
167164
type: string,
168-
// eslint-disable-next-line @typescript-eslint/no-shadow
169165
query?: QueryParamsSource,
170166
options?: ConstrainedRequestOptions
171167
): PostQueryRequestOptions;

packages/request/src/-private/context.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ export class Context {
159159
#owner: ContextOwner;
160160
declare request: ImmutableRequestInfo;
161161
declare id: number;
162-
private declare _isCacheHandler: boolean;
163-
private declare _finalized: boolean;
162+
declare private _isCacheHandler: boolean;
163+
declare private _finalized: boolean;
164164

165165
constructor(owner: ContextOwner, isCacheHandler: boolean) {
166166
this.id = owner.requestId;

packages/rest/src/-private/builders/query.ts

-2
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,11 @@ import { copyForwardUrlOptions, extractCacheOptions } from './-utils';
6262
*/
6363
export function query<T>(
6464
type: TypeFromInstance<T>,
65-
// eslint-disable-next-line @typescript-eslint/no-shadow
6665
query?: QueryParamsSource,
6766
options?: ConstrainedRequestOptions
6867
): QueryRequestOptions<T, CollectionResourceDataDocument<T>>;
6968
export function query(
7069
type: string,
71-
// eslint-disable-next-line @typescript-eslint/no-shadow
7270
query?: QueryParamsSource,
7371
options?: ConstrainedRequestOptions
7472
): QueryRequestOptions;

pnpm-lock.yaml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/fastboot/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
"@ember/string": "^3.1.1",
6969
"@ember/test-helpers": "5.1.0",
7070
"@ember/test-waiters": "^3.1.0",
71+
"@embroider/macros": "^1.16.10",
7172
"@glimmer/component": "^1.1.2",
7273
"@glimmer/tracking": "^1.1.2",
7374
"@ember-data/request": "workspace:*",

tests/main/tests/helpers/reactive-context.gts

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { get } from '@ember/helper';
1+
import { helper } from '@ember/component/helper';
22
import type { TestContext } from '@ember/test-helpers';
33
import { render } from '@ember/test-helpers';
44
import Component from '@glimmer/component';
@@ -27,6 +27,10 @@ export async function reactiveContext<T extends Model>(
2727
_fields.push(field.name);
2828
});
2929

30+
const lowPolyGet = helper(([obj, prop]: [obj: ReactiveComponent, prop: string]): string => {
31+
return obj[prop];
32+
});
33+
3034
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
3135
interface ReactiveComponent extends Record<string, string> {}
3236
class ReactiveComponent extends Component {
@@ -38,7 +42,7 @@ export async function reactiveContext<T extends Model>(
3842
<div class="reactive-context">
3943
<ul>
4044
{{#each this.__allFields as |prop|}}
41-
<li>{{prop}}: {{get this prop}}</li>
45+
<li>{{prop}}: {{lowPolyGet this prop}}</li>
4246
{{/each}}
4347
</ul>
4448
</div>

0 commit comments

Comments
 (0)