jbampton commented on a change in pull request #22671:
URL: https://github.com/apache/airflow/pull/22671#discussion_r840253509



##########
File path: airflow/www/views.py
##########
@@ -740,13 +742,12 @@ def index(self):
                 current_dags = all_dags
                 num_of_all_dags = all_dags_count
 
-            dags = (
-                current_dags.order_by(DagModel.dag_id)
-                .options(joinedload(DagModel.tags))
-                .offset(start)
-                .limit(dags_per_page)
-                .all()
+            sort_column = DagModel.__table__.c[arg_sorting_key]
+            current_dags = current_dags.order_by(
+                sort_column.is_(None), desc(sort_column) if 
arg_sorting_direction == "desc" else sort_column

Review comment:
       ```suggestion
                   sort_column.is_(None), desc(sort_column) if 
arg_sorting_direction == 'desc' else sort_column
   ```

##########
File path: airflow/www/views.py
##########
@@ -670,6 +670,8 @@ def index(self):
         arg_search_query = request.args.get('search')
         arg_tags_filter = request.args.getlist('tags')
         arg_status_filter = request.args.get('status')
+        arg_sorting_key = request.args.get('sorting_key', "dag_id")

Review comment:
       ```suggestion
           arg_sorting_key = request.args.get('sorting_key', 'dag_id')
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to