-
Notifications
You must be signed in to change notification settings - Fork 21
Fix typo in enum-like code sample #627
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
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,15 +35,15 @@ In most cases, enums are unnecessary. A readonly (`as const`) object coupled wit | |
| avoids both code generation and type inconsistencies. | ||
|
|
||
| ```ts | ||
| const CipherType = Object.freeze({ | ||
| export const CipherType = Object.freeze({ | ||
| Login: 1, | ||
| SecureNote: 2, | ||
| Card: 3, | ||
| Identity: 4, | ||
| SshKey: 5, | ||
| } as const); | ||
|
|
||
| export type CipherType = _CipherType[keyof typeof CipherType]; | ||
| export type CipherType = (typeof CipherType)[keyof typeof CipherType]; | ||
|
Comment on lines
+38
to
+46
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably worth mentioning, this specific example is not what |
||
| ``` | ||
|
|
||
| This code creates a `type CipherType` that allows arguments and variables to be typed similarly to | ||
|
|
@@ -62,6 +62,9 @@ let value: CipherType = CipherType.Login; | |
| // โ Do not: use type inference | ||
| const array = [CipherType.Login]; // infers `number[]` | ||
| let value = CipherType.Login; // infers `1` | ||
|
|
||
| // โ Do not: use type assertions | ||
| let value = CipherType.Login as CipherType; // this operation is unsafe | ||
| ``` | ||
|
|
||
| ::: | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 wondering about side-by-side exported const and type declarations with the same name, so I gave it a go. It's still surprising to me that in this case
import { CipherType } from "@bitwarden/common/vault/enums";brings in both concerns, but yeah, it works... nicely!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 didn't consider this... ๐คฏ handy though!
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 way that the symbols work is not unlike C namespaces. Both namespaces end up being imported. You don't need to specify them, however, because whether the symbol is in
typeordataposition can be inferred.Uh oh!
There was an error while loading. Please reload this page.
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 wonder if there are any cases where it can't be inferred... (I couldn't think of any)? ๐ค