I’m a django developer. When I started working with angular I wanted to keep using DRY principles that I’m used to with Django Forms. For example defining validation, verbose_name, etc in your models. This guide should give you an overview of building a system with django-rest-framework (DRF) and angular. It should also give you some ideas on using the rest option method to pull in some data about your fields.
Disclaimer – I’m a angular noob, criticism of this approach is much appreciated.
The entire project is on github so please follow along. The guide assumes you understand angular basics.
Creating a rest api in django
http://www.django-rest-framework.org/
I won’t go into detail because their documentation is great. Run the project above and check out the options method if you haven’t already. We have some great info here like help_text, (some) validation, and verbose name is now called label.
Consuming the api in angular
Let’s create a django admin like form that will save on blur.
Most examples of angular forms I’ve seen are highly repetitive. This feels wrong when you’re used to the Django Forms framework. Luckily we can ask the options method for meta data about our forms. Here’s an interesting post about the “almost unused” options method. Our client side app still retains it’s decoupled nature from the server. The client doesn’t care whether DRF or typing monkeys are providing the options method. It just cares about what label to be using or whether the field is required.
<span class="help-block" ng-if="fieldOptions.help_text">{{ fieldOptions.help_text }}</span>
In this example we see a help_text span shows only when help text is available. Now our fields are becoming more generic looking. Generic and repetitive tasks can be automated. Let’s make a directive to automate what we can (Notice I’m using coffeescript, js is also provided in the github project).
app.directive "bscField", ->
scope:
fieldOptions: "="
fieldForm: "="
templateUrl: "/static/app/partials/field.html"
transclude: true
bscField can accept a few attributes and uses transclude to allow customization of input itself. It’s a great strategy for including css framework gunk too. Check out the field.html partial. We can use it like this.
Notice I am still repeating myself a good bit. Consider it a work in progress. The input itself actually can’t be done in the partial and still work with ng-forms. Details here.
The RestfulModel factory will handle all of our interactions with the rest api. It uses restangular. I choose restangular over ngResource because it seemed a little bit easier to work with. It supports patch of the box which will be nice for our edit one field at a time approach. I’ve also introduced a isSaving property to the Forms so we can indicate to the user when a form is being saved. You can use RestfulModel in a controller like this:
pollModel = new RestfulModel.Instance("polls")
pollModel.getOptions().then (options) ->
$scope.pollOptions = options
pollModel.getOne($routeParams.poll_id, $scope.form).then (poll) ->
$scope.poll = poll
$scope.savePoll = poll.saveForm
Notice we are really just tying a model to our scope so we can access our options (rest options method) and the poll itself. We’re also adding a save function to the scope that we can have trigger on blur. ngRoute is being used to determine the id of the poll we are on.
$routeProvider.when “/poll/:poll_id/”,
controller: “PollController”
templateUrl: ‘/static/app/partials/polls.html’,
It’s probably best to just play with the github project and ask any questions you have in comments. Or perhaps tell me why I’m insane for doing things this way.
Saving and Error Handling
DRF will return a 400 (BAD REQUEST) when you attempt to save something invalid. Best of all it returns a reason why!
{"int_field": ["Enter a whole number."]}
Our directive can show this (and other states) to the user.
Next Steps
This is an experiment of mine that I hope triggers some discussion on DRY principles and javascript frameworks. Hopefully it gives you some ideas and hope that you don’t have to redefine all your server side models again in javascript. I’ll be putting the concept into production in django sis this summer. If it goes well I may try releasing RestfulModel as a stand alone angular project.
I already linked your post on stackoverflow under my question about posibility of scafolding forms in JS frameworks using Django REST Framework OPTIONS.
http://stackoverflow.com/questions/24893509/js-framework-able-to-generate-forms-based-on-django-rest-api-opitons
If you would like to answer my question by providing some of your recent expiriences with DRY way of creatings forms via REST OPTIONS meta info, I will be glad to hear it 🙂
LikeLike