-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Improve TypeScript types by removing [k: string]: any
from LexicalNode
#5223
Improve TypeScript types by removing [k: string]: any
from LexicalNode
#5223
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
5e311b1
to
8f59fad
Compare
I think the failing collab tests are just flaky, based on trying them locally. The failing mac tests were a network error.
|
Looks like another flaky collab test, I can reproduce the flakiness locally. Seems to fail more often than not with FIrefox but I haven't reproduced a failure with chromium.
|
More flaky tests in isCollab, here's a few of them
|
8c841df
to
e913dc1
Compare
9a569db
to
c10340d
Compare
c10340d
to
fa9bb80
Compare
Thanks for this - would be great to get it merged. |
Happy to do whatever I can to speed that along, short of rewriting the collaboration support to be consistent in tests 😅 |
yea don't worry about those tests. I skimmed this and I don't see an issue, but since it's a larger change let me just make sure the rest of the core team has a chance to object. I'll ping internally after the holidays. |
This is one of the things that was necessary in this PR: #3931 However, it seems better that this PR addresses it in isolation. Very cool! |
Let me know if there's anything I can do to move this along. I'm willing to do the work of rebasing and resolving conflicts once or twice if that gets it into a release. |
I actually just pinged internally about this and I don't think there are any objections here. If you don't mind rebasing, I will approve and merge. Thanks! |
fa9bb80
to
50c138c
Compare
This refactoring improves the ability for TypeScript to catch errors, particularly typos, because otherwise any unknown method would pass the type checker. I did find one bug in LinkNode (facebook#5221) and some tests that were using textNode.length instead of textNode.__text.length. The most awkward part was adding an explicit type to the constructors for the classes to implement Klass<T> more precisely. I think that subclasses shouldn't typically need to do this since the superclass' type will generally be sufficient. Another perhaps controversial addition was adding branded types for isNestedListNode and $isRootOrShadowRoot so that a more precise type could be refined with a predicate in a way that doesn't make TypeScript try and infer the wrong thing (e.g. if `f(x): x is Node` returns false then it will also infer `!(x is Node)` but that is not desired when we are looking for something more precise than the type alone.
50c138c
to
fad9109
Compare
Should be good to go now, if there's any feedback or unexpected test failures I'm happy to address them |
Thanks! This one is actually a little suspicious, because it's failing consistently across collab suites: [1] 1 failed Typically with flakiness on collab we'll see most suites pass, or a couple fail with different tests. Usually the same test failing across multiple suites (and runs, since I re-ran) is indicative of a problem somewhere. Not sure if you have any ideas of what it could be off the top of your head. |
I don't think that is a regression in this PR, I can reproduce a consistent failure of that test locally from main and several older tags. I couldn't find any tag where this test passed. I did not do an exhaustive search, just a few in the v0.12.x and v0.11.x series by hand. |
Scratch that, I was running the tests wrong (forgot to start the collab server) and can repro a success now. Will look closer! |
fad9109
to
2c5b210
Compare
@acywatson so it turns out that this test is timing dependent, doesn't have its own sleep in the right place, but it worked because it was dependent on a distant bug which caused an unintentional unconditional sleep. I had fixed that bug because the type was wrong (parentheses in the wrong place for an await expression). I restored the unconditional sleep and now it works again. See 2c5b210 |
Beautiful! Thank you. We really need to sit down and have a look at the test setup holistically. |
This change causes the append method to not be recognized as a type.
Does this mean we are doing this the wrong way? |
Yeah, there's no type level guarantee that getFirstChild is an ElementNode |
@alicercedigital There are a couple ways to do this that TypeScript would not complain about. The reason it worked before is because
root.getFirstChild<ElementNode>()?.append($createTextNode(payload)); This is unsound in general, and exactly what you were doing before at runtime, but RootNode's children should only be ElementNode so it's not an issue in practice unless there are other bugs.
const parent = root.getFirstChild();
if ($isElementNode(parent)) {
parent.append($createTextNode(payload));
}
root.getFirstChild()?.getTopLevelElement()?.append($createTextNode(payload)); |
Thank you for the careful and explanatory response! |
This refactoring improves the ability for TypeScript to catch errors, particularly typos, because otherwise any unknown method would pass the type checker. I did find one bug in LinkNode (#5221) and some tests that were using textNode.length instead of textNode.__text.length.
The most awkward part was adding an explicit type to the constructors for the classes to implement Klass more precisely. I think that subclasses shouldn't typically need to do this since the superclass' type will generally be sufficient.
Another perhaps controversial addition was adding branded types for isNestedListNode and $isRootOrShadowRoot so that a more precise type could be refined with a predicate in a way that doesn't make TypeScript try and infer the wrong thing (e.g. if
f(x): x is Node
returns false then it will also infer!(x is Node)
but that is not desired when we are looking for something more precise than the type alone.