signal-desktop/ts/util/missingCaseError.ts

25 lines
797 B
TypeScript
Raw Normal View History

2018-04-13 20:25:52 +00:00
/**
* @prettier
*/
2018-04-12 21:19:13 +00:00
// `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':
2018-04-15 01:11:40 +00:00
// return <MediaGridItem/>;
2018-04-12 21:19:13 +00:00
// case 'documents':
2018-04-15 01:11:40 +00:00
// return <DocumentListItem/>;
2018-04-12 21:19:13 +00:00
// 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}`);