-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
types: make init
hooks types accurately reflect runtime behavior
#15331
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks mostly good to me, though some questions on deleted tests.
And yes, it would be good to have this in a minor instead of patch version.
schema.pre(['save', 'init'], function() { | ||
expectType<HydratedDocument<IDocument>>(this); | ||
}); | ||
|
||
schema.post(['save', 'init'], function(res) { | ||
expectType<HydratedDocument<IDocument>>(this); | ||
expectNotType<Query<any, any>>(res); | ||
}); | ||
|
||
schema.pre(['save', 'init'], { document: true, query: false }, function() { | ||
expectType<HydratedDocument<IDocument>>(this); | ||
}); | ||
|
||
schema.post(['save', 'init'], { document: true, query: false }, function(res) { | ||
expectType<HydratedDocument<IDocument>>(this); | ||
expectNotType<Query<any, any>>(res); | ||
}); | ||
|
||
schema.pre(['save', 'init'], { document: true, query: true }, function() { | ||
expectType<HydratedDocument<IDocument>>(this); | ||
}); | ||
|
||
schema.post(['save', 'init'], { document: true, query: true }, function(res) { | ||
expectType<HydratedDocument<IDocument>>(this); | ||
expectNotType<Query<any, any>>(res); | ||
}); | ||
|
||
schema.pre(['save', 'init'], { document: false, query: true }, function() { | ||
expectType<never>(this); | ||
}); | ||
|
||
schema.post(['save', 'init'], { document: false, query: true }, function(res) { | ||
expectType<never>(this); | ||
expectNotType<Query<any, any>>(res); | ||
}); | ||
|
||
schema.pre(['save', 'init'], { document: false, query: false }, function() { | ||
expectType<never>(this); | ||
}); | ||
|
||
schema.post(['save', 'init'], { document: false, query: false }, function(res) { | ||
expectType<never>(this); | ||
expectNotType<Query<any, any>>(res); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didnt write about this before, but should those maybe also be restored for just save
-array case? (which is possible, though weird and should likely not be used)
Fix #15301
Summary
Init hooks are special because they are synchronous, so there's no
next
callback. Also, the first parameter toinit
hooks is the raw data being hydrated, not the hydrated Mongoose document. This PR fixes that, although in the interest of caution it might be better to put this change in a minor release. WDYT @hasezoey ?Examples