Skip to content
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

Define type of Container.get() return value with generic #416

Merged
merged 2 commits into from
Apr 6, 2018

Conversation

viacheslaff
Copy link
Contributor

Following suggestion by @markvincze, I've changed Container.get() signature from get(name: string): any; to get<T>(name: string): T;.

This not only allows to leverage type safety of TypeScript, but requires to use it.

Previously Container type was optional

const console: Console = container.get('console');
console.log()

Now if you don't specify <Console> it'll default to {} (empty object type) and console.log() won't compile. This is not ideal but unfortunately I don't know the way to require generic type in TS. Nevertheless it achieves the goal of making type required, because without using the type you pretty much cannot use the value received from the container.

const console = container.get<Console>('console');
console.log() // works
const console = container.get('console');
console.log() // error TS2339: Property 'log' does not exist on type '{}'

@viacheslaff viacheslaff requested review from fahad19, markvincze and a team April 6, 2018 09:31
@codecov
Copy link

codecov bot commented Apr 6, 2018

Codecov Report

Merging #416 into master will not change coverage.
The diff coverage is 100%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #416   +/-   ##
=======================================
  Coverage   97.74%   97.74%           
=======================================
  Files         111      111           
  Lines        4251     4251           
=======================================
  Hits         4155     4155           
  Misses         96       96
Impacted Files Coverage Δ
packages/frint/src/App.spec.ts 100% <100%> (ø) ⬆️
packages/frint/src/App.ts 99.35% <100%> (ø) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 8f412ae...532158e. Read the comment docs.

@@ -36,7 +43,7 @@ export default [
name: 'console',
cascade: true,
useFactory: function useFactory() {
const fakeConsole = {
const fakeConsole: FakeConsole = {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fahad19 there're two extra fields which are accessed (logs and errors) in tests to check what was written to it. There's no way to check what output was using Console interface. Example:

https://github.com/frintjs/frint/pull/416/files#diff-68fd994dbdfd5ab333b569081667684fR28

@viacheslaff viacheslaff merged commit cf59ed4 into master Apr 6, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants