-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathviewset.py
207 lines (174 loc) · 6.02 KB
/
viewset.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
from django.utils.translation import gettext_lazy as _
from viewflow import Icon
from viewflow.contrib.import_export import ExportViewsetMixin
from viewflow.forms import Layout, FieldSet, Row, DependentModelSelect
from viewflow.urls import (
Application,
DetailViewMixin,
DeleteViewMixin,
ModelViewset,
ReadonlyModelViewset,
)
from . import models, filters, forms
class CityViewset(ExportViewsetMixin, DetailViewMixin, DeleteViewMixin, ModelViewset):
"""
A viewset for displaying, editing, deleting, and exporting city instances.
Attributes:
icon (Icon): An icon representing the viewset in the UI.
model (models.City): The model class this viewset works with.
list_columns (tuple): Columns to display in the list view.
list_filter_fields (tuple): Fields to provide filtering capabilities in the list view.
list_search_fields (list): Fields to provide search capabilities in the list view.
queryset: The queryset used for list, detail, and other actions, optimized with select_related.
form_widgets (dict, optional): Custom form widgets to use in forms. Uses AjaxModelSelect for country field to
enable AJAX based selection.
"""
icon = Icon("location_city")
model = models.City
list_columns = ("name", "country", "population")
list_filter_fields = (
"is_capital",
"country",
)
list_search_fields = ["name"]
queryset = model._default_manager.select_related("country")
try:
from viewflow.forms import AjaxModelSelect
form_widgets = {"country": AjaxModelSelect(lookups=["name__istartswith"])}
except ImportError:
# pro-only
pass
class ContinentViewset(ExportViewsetMixin, ModelViewset):
"""
A viewset for displaying and editing continent instances.
Provides capabilities to list, create, and edit continents along with exporting functionality.
Attributes:
icon (Icon): An icon representing the viewset in the UI.
model (models.Continent): The model class this viewset works with.
list_columns (tuple): Columns to display in the list view.
list_filter_fields (tuple): Fields to provide filtering capabilities in the list view.
create_form_layout (Layout): Defines the layout of the form used for creating a continent.
form_layout (Layout): Defines the layout of the form used for editing a continent.
Methods:
surrounded_oceans: Returns a string listing the names of oceans surrounding a continent.
"""
icon = Icon("terrain")
model = models.Continent
list_columns = (
"name",
"surrounded_oceans",
"countries_count",
"area",
"population",
)
list_filter_fields = ("oceans",)
create_form_layout = Layout(
"name",
FieldSet(
_("Details"),
"area",
Row("oceans", "hemisphere"),
Row("population", "population_density"),
),
)
form_layout = Layout(
"name",
FieldSet(
_("Details"),
"area",
Row("oceans", "hemisphere"),
Row("population", "population_density"),
),
FieldSet(
_("Fun facts"),
Row("largest_country", "biggest_mountain"),
Row("biggest_city", "longest_river"),
),
)
def surrounded_oceans(self, continent):
return ", ".join(ocean.name for ocean in continent.oceans.all())
surrounded_oceans.short_description = _("Surrounded oceans")
class CountryViewset(DeleteViewMixin, ModelViewset):
icon = Icon("nature_people")
update_form_class = forms.CountryForm
model = models.Country
list_columns = (
"tld",
"name",
"continent",
"became_independent_in_20_century",
"gay_friendly",
)
list_filter_fields = (
"continent",
"independence_day",
)
list_object_link_columns = ("tld", "name")
queryset = model._default_manager.select_related("continent").order_by("name")
def tld(self, country):
return "." + country.code.lower()
tld.short_description = "TLD"
def became_independent_in_20_century(self, country):
if country.independence_day:
return 1900 <= country.independence_day.year <= 2000
became_independent_in_20_century.short_description = _(
"Became independent in XX century"
)
became_independent_in_20_century.boolean = True
ocean_viewset = ReadonlyModelViewset(
app_name="ocean",
icon=Icon("directions_boat"),
model=models.Ocean,
list_columns=(
"name",
"area",
),
)
class SeaViewset(DeleteViewMixin, ModelViewset):
icon = Icon("beach_access")
model = models.Sea
list_columns = (
"name",
"parent_sea",
"ocean",
"sea_area",
)
list_filterset_class = filters.SeaFilterSet
form_layout = Layout(
"ocean",
Row("name", "parent"),
Row("area", "avg_depth", "max_depth"),
"basin_countries",
)
form_widgets = {
"parent": DependentModelSelect(
depends_on="ocean",
queryset=lambda parent: models.Sea.objects.filter(ocean=parent),
)
}
def parent_sea(self, sea):
return sea.parent
def sea_area(self, sea):
return None if sea.area == 0 else sea.area
sea_area.empty_value = "-"
sea_area.column_type = "numeric"
def get_queryset(self, request):
return self.model._default_manager.select_related("ocean", "parent")
@property
def list_filterset_initial(self):
ocean = models.Ocean.objects.filter(name="Atlantic").first()
if ocean:
return {"ocean": ocean.pk}
return None
class AtlasApp(Application):
title = "CRUD sample"
icon = Icon("extension")
app_name = "atlas"
permission = "atlas.can_view_city"
viewsets = [
CityViewset(),
ContinentViewset(),
CountryViewset(),
ocean_viewset,
SeaViewset(),
]