Demo: http://yllieth.github.io/angular-http-status/app/index.html
Angular stuff to easily convert status text into its HTTP code and vice versa.
I only care about real Http statuses, so I used the list from http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml where each code is attached to a RFC.
bower install angular-http-status --save
Once the lib is downloaded, add a reference in your index.html
`<script type="application/javascript" src="../bower_components/angular-http-status/angular-http-status.js"></script>`
npm install angular-http-status --save
Once the lib is downloaded, add a reference in your index.html
`<script type="application/javascript" src="node_modules/angular-http-status/angular-http-status.js"></script>`
```
angular
.module('YOUR-ANGULAR-APP-NAME', [
'ngHttpStatus'
])
.config(...
```
It's an object with status text as keys and status codes as values, like:
{
"CONTINUE": 100, // RFC7231 @6.2.1 : https://tools.ietf.org/html/rfc7231#section-6.2.1"SWITCHING_PROTOCOLS": 101, // RFC7231 @6.2.2 : https://tools.ietf.org/html/rfc7231#section-6.2.2"PROCESSING": 102, // RFC2518 : https://tools.ietf.org/html/rfc2518"..."Once you adds HttpCodes as dependency in a controller / service / ..., you cas use it like:
if(rejection.status===HttpCodes.UNAUTHORIZED){$state.go('login')}Defines the following methods:
toString({Number} status): takes a valid HTTP status code and returns its meaning (undefinedif given status isn't in the list)
Here is the code of the controller used for the demo app:
angular.module('demo-angular-http-status',['ngHttpStatus']).controller('demoCtrl',function(HttpCodes,HttpStatus){this.code=200;this.text='Ok';this.statusCodes=HttpCodes;this.toString=function(status){returnHttpStatus.toString(status);};this.toStatus=function(meaning){varstatusText=meaning.toUpperCase().replace(' ','_');returnangular.isDefined(HttpCodes[statusText])
? HttpCodes[statusText]
: '<< Invalid key '+statusText+' >>'}});- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request