forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[7.x] Utility types (elastic#41246) (elastic#43108)
* feat: 🎸 add @kbn/utility-types * feat: 🎸 improve @kbn/utility-types * chore: 🤖 move @kbn/utility-types to dev deps * chore: 🤖 change @kbn/utility-types build setup * fix: 🐛 implement review suggestions * feat: 🎸 add ShallowPromise type * Update packages/kbn-utility-types/README.md Co-Authored-By: Luke Elmers <[email protected]> * test: 💍 add tests for utility-types * chore: 🤖 add utility-types tests to TypeScript config * test: 💍 remove negative tests to not cause TypeScript fail * chore: 🤖 remove ref to type defs to try fix CI tests * Update packages/kbn-utility-types/index.ts Co-Authored-By: Spencer <[email protected]> * chore: 🤖 add TS types index to fix `grunt run:test_projects` * chore: 🤖 use similar tsconfig.json as in other packages * chore: 🤖 add "clean" script * chore: 🤖 add kbn:bootstrap script
- Loading branch information
Showing
13 changed files
with
281 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# `@kbn/utility-types` | ||
|
||
TypeScript utility types for usage in Kibana. | ||
|
||
- This package re-exports a subset of the items in [`utility-types`](https://github.com/piotrwitek/utility-types) | ||
- You can also add more utility types here. | ||
|
||
|
||
## Usage | ||
|
||
```ts | ||
import { UnwrapPromise } from '@kbn/utility-types'; | ||
|
||
type A = Promise<string>; | ||
type B = UnwrapPromise<A>; // string | ||
``` | ||
|
||
|
||
## Reference | ||
|
||
- `UnwrapPromise<T>` — Returns wrapped type of a promise. | ||
- `UnwrapObservable<T>` — Returns wrapped type of an observable. | ||
- `ShallowPromise<T>` — Same as `Promise` type, but it flat maps the wrapped type. | ||
- `ObservableLike<T>` — Minimal interface for an object resembling an `Observable`. |
This file contains 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import { PromiseType } from 'utility-types'; | ||
|
||
/** | ||
* Returns wrapped type of a promise. | ||
*/ | ||
export type UnwrapPromise<T extends Promise<any>> = PromiseType<T>; | ||
|
||
/** | ||
* Minimal interface for an object resembling an `Observable`. | ||
*/ | ||
export interface ObservableLike<T> { | ||
subscribe(observer: (value: T) => void): void; | ||
} | ||
|
||
/** | ||
* Returns wrapped type of an observable. | ||
*/ | ||
export type UnwrapObservable<T extends ObservableLike<any>> = T extends ObservableLike<infer U> | ||
? U | ||
: never; | ||
|
||
/** | ||
* Converts a type to a `Promise`, unless it is already a `Promise`. Useful when proxying the return value of a possibly async function. | ||
*/ | ||
export type ShallowPromise<T> = T extends Promise<infer U> ? Promise<U> : Promise<T>; |
This file contains 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "@kbn/utility-types", | ||
"version": "1.0.0", | ||
"private": true, | ||
"license": "Apache-2.0", | ||
"main": "target", | ||
"types": "target/index.d.ts", | ||
"scripts": { | ||
"build": "tsc", | ||
"kbn:bootstrap": "tsc", | ||
"kbn:watch": "tsc --watch", | ||
"test": "tsd", | ||
"clean": "rimraf target" | ||
}, | ||
"dependencies": { | ||
"utility-types": "^3.7.0" | ||
}, | ||
"devDependencies": { | ||
"tsd": "^0.7.4" | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import { expectType } from 'tsd'; | ||
import { ShallowPromise } from '../index'; | ||
|
||
type P1 = ShallowPromise<string>; | ||
type P2 = ShallowPromise<ShallowPromise<string>>; | ||
type P3 = ShallowPromise<ShallowPromise<ShallowPromise<string>>>; | ||
type P4 = ShallowPromise<ShallowPromise<ShallowPromise<number>>>; | ||
|
||
expectType<P1>(Promise.resolve<string>('a')); | ||
expectType<P2>(Promise.resolve<string>('a')); | ||
expectType<P3>(Promise.resolve<string>('a')); | ||
expectType<P4>(Promise.resolve<number>(123)); |
This file contains 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import { expectType } from 'tsd'; | ||
import { UnwrapObservable, ObservableLike } from '../index'; | ||
|
||
type STRING = UnwrapObservable<ObservableLike<string>>; | ||
|
||
expectType<STRING>('adf'); |
This file contains 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import { expectType } from 'tsd'; | ||
import { UnwrapPromise } from '../index'; | ||
|
||
type STRING = UnwrapPromise<Promise<string>>; | ||
type TUPLE = UnwrapPromise<Promise<[number, number]>>; | ||
|
||
expectType<STRING>('adf'); | ||
expectType<TUPLE>([1, 2]); |
This file contains 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"declaration": true, | ||
"declarationDir": "./target", | ||
"outDir": "./target", | ||
"stripInternal": true, | ||
"declarationMap": true, | ||
"types": [ | ||
"jest", | ||
"node" | ||
] | ||
}, | ||
"include": ["index.ts", "test-d/**/*"], | ||
"exclude": [ | ||
"target" | ||
] | ||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.