Move top-level functions to Signal.Util
This commit is contained in:
parent
5ec8b1c6e1
commit
c46e1a1519
7 changed files with 12 additions and 4 deletions
24
ts/util/missingCaseError.ts
Normal file
24
ts/util/missingCaseError.ts
Normal file
|
@ -0,0 +1,24 @@
|
|||
/**
|
||||
* @prettier
|
||||
*/
|
||||
// `missingCaseError` is useful for compile-time checking that all `case`s in
|
||||
// a `switch` statement have been handled, e.g.
|
||||
//
|
||||
// type AttachmentType = 'media' | 'documents';
|
||||
//
|
||||
// const type: AttachmentType = selectedTab;
|
||||
// switch (type) {
|
||||
// case 'media':
|
||||
// return <ImageThumbnail/>;
|
||||
// case 'documents':
|
||||
// return <DocumentListEntry/>;
|
||||
// default:
|
||||
// return missingCaseError(type);
|
||||
// }
|
||||
//
|
||||
// If we extended `AttachmentType` to `'media' | 'documents' | 'links'` the code
|
||||
// above would trigger a compiler error stating that `'links'` has not been
|
||||
// handled by our `switch` / `case` statement which is useful for code
|
||||
// maintenance and system evolution.
|
||||
export const missingCaseError = (x: never): TypeError =>
|
||||
new TypeError(`Unhandled case: ${x}`);
|
Loading…
Add table
Add a link
Reference in a new issue