rxjs-docs icon indicating copy to clipboard operation
rxjs-docs copied to clipboard

Method Signature Suggestions/Thoughts

Open DiedrikDM opened this issue 7 years ago • 3 comments

Hi everybody,

I have a couple of thoughts on trying to improve the Method Signature and I would like to get some extra feedback/thoughts from others.

public access modifier

In our new documentation every method currently starts with the public access modifier. In my opinion this is not really that helpful. All of the methods in the documentation are - as far as I know - public. So why not remove public from the signature?

parameter types

In the documentation we're adding the type of every parameter in the method signature. In my opinion this does not really help that much. Especially because the types of most parameters are either simple to deduce based on the name of the parameter or are complex types where additional research would still be necessary. Adding to that is the fact that we're adding every parameter and its type to a table where people can look up further explanation on the parameter. Here is an example: fromEvent(target: EventTargetLike, eventName: string, options: EventListenerOptions, selector: SelectorMethodSignature): Observable

  • If I look at the options parameter, the fact that it is an EventListenerOptions object could help me in figuring out that it has to do with the addEventListener function, but when I'm completely new to rxjs, I'm not sure if I'll understand it like that without additional research.
  • Also the SelectorMethodSignature type, doesn't really explain that much more than what the name of the parameter doesn't explain by itself.
  • The return type of the method however (the fact that it returns Observable) is a keeper in my opinion.

As per #168 I'm fine with deducing the type of every parameter based on further documentation, but maybe we could add that information when hovering over a parameter in the signature?

Other people's thoughts?

DiedrikDM avatar Feb 16 '18 09:02 DiedrikDM

As an example fromEvent would become: static fromEvent(target, eventName, options, selector): Observable

DiedrikDM avatar Feb 16 '18 09:02 DiedrikDM

Thanks for this proposal @DiedrikDM . You got definetly some points. I totally agree about the access modifier with you. But I think that the parameter list should be well described due to the wide range of possibilities. But I think a link to the type would be helpful too.

niklas-wortmann avatar Feb 22 '18 13:02 niklas-wortmann

I agree with @JWO719. For a beginner, it can be difficult to determine exactly what the method is looking for.

knitcodemonkey avatar Feb 25 '18 21:02 knitcodemonkey