Skip to content

Commit 1b8b497

Browse files
authored
fix: dont trust ember-inflector (#9497)
1 parent 5a700c9 commit 1b8b497

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

packages/request-utils/src/deprecation-support.ts

+16-4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { dependencySatisfies, importSync, macroCondition } from '@embroider/macr
44

55
import { DEPRECATE_EMBER_INFLECTOR } from '@warp-drive/build-config/deprecations';
66

7+
import { defaultRules as WarpDriveDefaults } from './-private/string/inflections';
78
import { irregular, plural, singular, uncountable } from './string';
89

910
if (DEPRECATE_EMBER_INFLECTOR) {
@@ -44,11 +45,22 @@ if (DEPRECATE_EMBER_INFLECTOR) {
4445
// lower cased string
4546
uncountable: Record<string, boolean>;
4647
};
48+
49+
// ember-inflector mutates the default rules arrays
50+
// with user supplied rules, so we keep track of what
51+
// is default via our own list.
52+
const defaultPluralKeys = new Set<string>();
53+
const defaultSingularKeys = new Set<string>();
54+
WarpDriveDefaults.plurals.forEach(([regex]) => {
55+
defaultPluralKeys.add(regex.toString());
56+
});
57+
WarpDriveDefaults.singular.forEach(([regex]) => {
58+
defaultSingularKeys.add(regex.toString());
59+
});
60+
4761
const { defaultRules } = Inflector as unknown as { defaultRules: DefaultRules };
4862
const { rules } = inflector as unknown as { rules: InternalRules };
4963

50-
const pluralMap = new Map(defaultRules.plurals);
51-
const singularMap = new Map(defaultRules.singular);
5264
const irregularMap = new Map<string, string>();
5365
const toIgnore = new Set<string>();
5466
const uncountableSet = new Set(defaultRules.uncountable);
@@ -65,7 +77,7 @@ if (DEPRECATE_EMBER_INFLECTOR) {
6577

6678
// load plurals
6779
rules.plurals.forEach(([regex, replacement]) => {
68-
if (pluralMap.has(regex)) {
80+
if (defaultPluralKeys.has(regex.toString())) {
6981
return;
7082
}
7183

@@ -89,7 +101,7 @@ if (DEPRECATE_EMBER_INFLECTOR) {
89101

90102
// load singulars
91103
rules.singular.forEach(([regex, replacement]) => {
92-
if (singularMap.has(regex)) {
104+
if (defaultSingularKeys.has(regex.toString())) {
93105
return;
94106
}
95107

0 commit comments

Comments
 (0)