-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: enable eraseable syntax #31
Conversation
To enable eraseable syntax we have to get rid of So we need to stick with some pattern for consistency as an alternate. Look at the example enum below. enum OutlierSensitivity = {
Mild = 1.5,
Strict = 3.0,
}
type EnumLike<T> = T[keyof T]; So now we have split this information into type and values. Pattern 1 - capital case enum + camelCase values const outlierSensitivity = {
Mild: 1.5,
Strict: 3.0,
} as const;
type OutlierSensitivity = EnumLike<typeof outlierSensitivity>;
Pattern 2 - Capital case values + Options suffix type const OutlierSensitivity = {
Mild: 1.5,
Strict: 3.0,
} as const;
type OutlierSensitivityOptions = EnumLike<typeof outlierSensitivity>; Pattern 3 - Capital case values + E prefix type const OutlierSensitivity = {
Mild: 1.5,
Strict: 3.0,
} as const;
type EOutlierSensitivity = EnumLike<typeof outlierSensitivity>; Please suggest which one you prefer or suggest any other pattern you like. |
Performance Report✔️ no performance regression detected Full benchmark results
|
imo something like pattern 2 is good with me. maybe with the type having then we have code like: const OutlierSensitivity = {
Mild: 1.5,
Strict: 3.0,
} as const;
type OutlierSensitivityOption = EnumLike<typeof outlierSensitivity>;
function average(data: number[], sensitivity: OutlierSensitivityOption): boolean {
...
}
const a = average([...], OutlierSensitivity.Mild); |
I tend to agree with this pattern but would suggest appending |
The option 2 is good, the only problem is naming convention. We stick with the |
The reason we'd keep pascal case for "enum" variable names is because they're treated like a namespace (or rather, like an enum lol). They aren't treated as normal variables. Similar reason we uppercase constants. const Sensitivity = {Mild: 1, Strict: 3} as const;
type SensitivityOption = EnumOption<typeof Sensitivity>;
const sensitivity = Sensitivity.Mild; |
We already have random export type TypeJson<T> = {
toJson: (data: T) => unknown; // server
fromJson: (data: unknown) => T; // client
}; export type LodestarThreadType = "main" | "network" | "discv5"; How about type OutlierSensitivityEnum = EnumLike<typeof outlierSensitivity>;
// or
type EnumOutlierSensitivity = EnumLike<typeof outlierSensitivity>; |
Might be irrelevant but I want to mention this example in Google Style Guide https://google.github.io/styleguide/tsguide.html#identifiers-constants
However the purpose in this example is to define this as constant, not for replacing an enum. Among the three options, I prefer 2, since we already have a convention of having PascalCase of const denoting namespace that is widely used in Lodestar. My 2 cents will be to rename Strong opinion against using single character to denote things eg. |
Discussion for enum naming is summarized here ChainSafe/lodestar#7574 |
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.
Just one thing and the question but looks good overall
@@ -23,6 +23,7 @@ | |||
"esModuleInterop": true, | |||
// Babel builds source, Typescript is used only for .d.ts files | |||
"incremental": true, | |||
"preserveWatchOutput": true | |||
"preserveWatchOutput": true, | |||
"erasableSyntaxOnly": true |
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.
Just to check this does not alter the output it just enforces that the syntax meets the erasable syntax specs?
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.
The output will just be changed for the code that we changed. There will be no implicit change in the compiled JS.
src/compare/index.ts
Outdated
// Try first latest commit in branch | ||
return await provider.readLatestInBranch(compareWith.branch); | ||
} | ||
} | ||
} | ||
|
||
export function renderCompareWith(compareWith: CompareWith): string { | ||
export function renderCompareWith(compareWith: CompareWithType): string { |
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.
just noting here that while adding a suffix to the type is ok, I don't think using Type
as suffix is ideal since we use that for ssz types already, so maybe Options
/ Opts
might be better?
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 am fine with either, it's just that we had a consensus on this pattern earlier ChainSafe/lodestar#7574
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.
the pattern would still be the same, just different suffix, see comment from NC, he voted for option 4 but voiced something similar here ChainSafe/lodestar#7574 (comment)
we are probably fine with using Type
as suffix, just wanna point this out so we consider it at least
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 am fine with either suffix, as long as everyone is aligned with it.
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.
Please no Options
.... its a "type"....
Co-authored-by: Matthew Keil <[email protected]>
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.
LGTM
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.
🙈 LGTM!!! 🥸
src/history/provider.ts
Outdated
GaCache = "GaCache", | ||
S3 = "S3", | ||
} | ||
export const HistoryProviderTypeEnum = { |
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 see you just did the minimal diff here. But consider removing Type
from the const and type
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 was afraid to change that considering that may trigger another discussion. :)
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.
lgtm
Motivation
For future adoption of Typescript support in NodeJS, update the types.
Description
Steps to test or reproduce