Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

feat: warn when passing a string to $routeProvider.otherwise() #7794

Closed
btford opened this issue Jun 11, 2014 · 6 comments
Closed

feat: warn when passing a string to $routeProvider.otherwise() #7794

btford opened this issue Jun 11, 2014 · 6 comments

Comments

@btford
Copy link
Contributor

btford commented Jun 11, 2014

In your route configuration, it's easy to accidentally write:

$routeProvider.otherwise('/');

Thinking that it will behave like:

$routeProvider.otherwise({ redirectTo: '/' });

What will actually happen is that the app's routing will have no otherwise behavior.

$routeProvider.otherwise should either throw an error, or alias the string as the redirectTo property of the configuration. I have a slight preference towards a string parameter be the same as redirectTo.

Thoughts? @caitp @matsko @IgorMinar

@btford btford added this to the 1.3.0 milestone Jun 11, 2014
@btford btford self-assigned this Jun 11, 2014
@matsko
Copy link
Contributor

matsko commented Jun 11, 2014

I think it should not accept strings and only accept a key/value object. Aliasing it wouldn't do much help to reduce the amount of typing since .otherwise is only used once in an application.

@ealtenho
Copy link
Contributor

I'm taking a look at having $routeProvider.otherwise throw an error if passed a string.

@caitp
Copy link
Contributor

caitp commented Jun 12, 2014

ui-router lets you pass a string to "otherwise", and it's a very nice API. I'm more in favour of just making it redirect by default if the first param is a string... (https://github.com/angular-ui/ui-router/blob/master/src/urlRouter.js#L102-L106) --- since it's a pretty elegant api that way, and the most common use case is really creating an object with just redirectTo

ealtenho pushed a commit to ealtenho/angular.js that referenced this issue Jun 12, 2014
Allow .otherwise() to interpret a string parameter
as the redirectTo property to handle the common misinterpretation
that .otherwise() takes as a parameter the string to be matched
in the otherwise case.

Closes angular#7794
@ealtenho
Copy link
Contributor

Following comments by @btford and @caitp, I created a pull request allowing the alias. Thoughts?

@caitp
Copy link
Contributor

caitp commented Jun 12, 2014

I'm all for it, +1 @ealtenho

btford pushed a commit to btford/angular.js that referenced this issue Aug 28, 2014
Allow .otherwise() to interpret a string parameter
as the redirectTo property to handle the common misinterpretation
that .otherwise() takes as a parameter the string to be matched
in the otherwise case.

Closes angular#7794
@btford
Copy link
Contributor Author

btford commented Aug 28, 2014

Closed in 3b5d75c.

@btford btford closed this as completed Aug 28, 2014
btford pushed a commit that referenced this issue Aug 28, 2014
Allow `.otherwise()` to interpret a string parameter
as the `redirectTo` property

Closes #7794
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.