Skip to content

Commit

Permalink
Merge pull request #353 from datamade/feature/serializer
Browse files Browse the repository at this point in the history
Add doc about serializing with DRF outside of DRF
  • Loading branch information
smcalilly authored Apr 12, 2024
2 parents 68cce3f + 5514928 commit 73556a6
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ _In alphabetical order and including links to external repository-based document
- [Forms](django/forms.md)
- [Translation](django/translation.md)
- [Wagtail](django/wagtail/)
- [Serializing GeoJSON data](django/serializing-data.md)
- [Docker](docker/)
- [Docker for local development](docker/local-development.md)
- [Templates for containerizing your application](docker/templates/)
Expand Down
72 changes: 72 additions & 0 deletions django/serializing-data.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Using Django Rest Framework serializers for data serialization
Django Rest Framework can be useful for serializing data beyond the context of an API endpoint. We find it helpful whenever we're serializing json for use in a React component, like when you need to pass GeoJSON to a map or your data objects have nested relationships.

[Django Rest Framework's documentation](https://www.django-rest-framework.org/api-guide/serializers/) is the best place to learn about the serializer classes, but this document shows how we use this pattern within the DataMade stack.

## Use cases
- Serializing GeoJSON or JSON data for use in a Django template or React component that's [baked into the Django template](/django/django-react-integration.md)
- Serializing a queryset with nested relationships
- This helps with database efficiency because you can leverage `prefetch_related` and then serialize all of the related data in a cleaner way. [This blog post is a good resource to learn about that](https://hakibenita.com/django-rest-framework-slow).


## Examples:
In the IL NWSS project, we serialized GeoJSON data and linked needed data that is related to the model. I can't share the private repo link since not everybody has access, so these are the relevant changes we made:

### models.py
```python
from django.contrib.gis.db import models'


class SewershedArea(models.Model):
"""Simplified version of the geo model"""
treatment_plant = ParentalKey(
WastewaterTreatmentPlant,
related_name='sewershed_area',
on_delete=models.CASCADE,
primary_key=True,
)
boundary = models.GeometryField(blank=True, null=True, srid=3435, dim=2)
```

### serializers.py
```python
from rest_framework_gis.serializers import (
GeoFeatureModelSerializer,
GeometrySerializerMethodField,
)


class SewershedAreaGeoSerializer(GeoFeatureModelSerializer):
class Meta:
model = SewershedArea
fields = ('pk', 'boundary', 'plant_name', 'plant_url', 'plant_city', 'site_id')
geo_field = 'boundary'

boundary = GeometrySerializerMethodField()

plant_name = serializers.SerializerMethodField()
plant_url = serializers.SerializerMethodField()
plant_city = serializers.SerializerMethodField()
site_id = serializers.SerializerMethodField()

def get_boundary(self, obj):
return obj.boundary.transform(4326, clone=True)

def get_plant_name(self, obj):
return obj.treatment_plant.name

def get_plant_url(self, obj):
return obj.treatment_plant.get_absolute_url()

def get_plant_city(self, obj):
return obj.treatment_plant.city

def get_site_id(self, obj):
return obj.treatment_plant.site_id
```

### Use the data
You can use the serialized data in at least two ways:
1. Serialize the GeoJSON data in your view and pass it into the context, so that you can access that data within the template and pass it into your React component as props (as described in [this how-to documentation](/django/django-react-integration.md#set-react-props-and-root-element-on-the-window-object))

2. Setup an API endpoint with Django Rest Framework

0 comments on commit 73556a6

Please sign in to comment.