Skip to content

Commit

Permalink
Current sort order now reflected in human filter description
Browse files Browse the repository at this point in the history
Plus renamed human_description to human_description_en

Refs #189
  • Loading branch information
simonw committed Apr 9, 2018
1 parent 3704db6 commit b551e30
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 12 deletions.
15 changes: 12 additions & 3 deletions datasette/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,8 +773,17 @@ async def data(self, request, name, hash, table):
# Almost certainly hit the timeout
pass

# human_filter_description combines filters AND search, if provided
human_description = filters.human_description(extra=search_description)
# human_description_en combines filters AND search, if provided
human_description_en = filters.human_description_en(extra=search_description)

if sort or sort_desc:
sorted_by = 'sorted by {}{}'.format(
(sort or sort_desc),
' descending' if sort_desc else '',
)
human_description_en = ' '.join([
b for b in [human_description_en, sorted_by] if b
])

async def extra_template():
display_columns, display_rows = await self.display_columns_and_rows(
Expand All @@ -786,7 +795,6 @@ async def extra_template():
self.ds.update_with_inherited_metadata(metadata)
return {
'database_hash': hash,
'human_filter_description': human_description,
'supports_search': bool(fts_table),
'search': search or '',
'use_rowid': use_rowid,
Expand All @@ -808,6 +816,7 @@ async def extra_template():
'is_view': is_view,
'view_definition': view_definition,
'table_definition': table_definition,
'human_description_en': human_description_en,
'rows': rows[:self.page_size],
'truncated': truncated,
'table_rows': table_rows,
Expand Down
6 changes: 3 additions & 3 deletions datasette/templates/table.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends "base.html" %}

{% block title %}{{ database }}: {{ table }}: {% if filtered_table_rows or filtered_table_rows == 0 %}{{ "{:,}".format(filtered_table_rows) }} row{% if filtered_table_rows == 1 %}{% else %}s{% endif %}{% endif %}
{% if human_filter_description %}where {{ human_filter_description }}{% endif %}{% endblock %}
{% if human_description_en %}where {{ human_description_en }}{% endif %}{% endblock %}

{% block extra_head %}
{{ super() }}
Expand All @@ -23,9 +23,9 @@ <h1 style="padding-left: 10px; border-left: 10px solid #{{ database_hash[:6] }}"

{% block description_source_license %}{% include "_description_source_license.html" %}{% endblock %}

{% if filtered_table_rows or human_filter_description %}
{% if filtered_table_rows or human_description_en %}
<h3>{% if filtered_table_rows or filtered_table_rows == 0 %}{{ "{:,}".format(filtered_table_rows) }} row{% if filtered_table_rows == 1 %}{% else %}s{% endif %}{% endif %}
{% if human_filter_description %}where {{ human_filter_description }}{% endif %}
{% if human_description_en %}where {{ human_description_en }}{% endif %}
</h3>
{% endif %}

Expand Down
2 changes: 1 addition & 1 deletion datasette/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def lookups(self):
for filter in self._filters:
yield filter.key, filter.display, filter.no_argument

def human_description(self, extra=None):
def human_description_en(self, extra=None):
bits = []
if extra:
bits.append(extra)
Expand Down
30 changes: 25 additions & 5 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,18 +356,19 @@ def test_paginate_compound_keys_with_extra_filters(app_client):
assert expected == [f['content'] for f in fetched]


@pytest.mark.parametrize('query_string,sort_key', [
('_sort=sortable', lambda row: row['sortable']),
('_sort_desc=sortable', lambda row: -row['sortable']),
@pytest.mark.parametrize('query_string,sort_key,human_description_en', [
('_sort=sortable', lambda row: row['sortable'], 'sorted by sortable'),
('_sort_desc=sortable', lambda row: -row['sortable'], 'sorted by sortable descending'),
])
def test_sortable(app_client, query_string, sort_key):
path = '/test_tables/sortable.jsono?{}'.format(query_string)
def test_sortable(app_client, query_string, sort_key, human_description_en):
path = '/test_tables/sortable.json?_shape=objects&{}'.format(query_string)
fetched = []
page = 0
while path:
page += 1
assert page < 100
response = app_client.get(path, gather_request=False)
assert human_description_en == response.json['human_description_en']
fetched.extend(response.json['rows'])
path = response.json['next_url']
assert 5 == page
Expand All @@ -380,6 +381,25 @@ def test_sortable(app_client, query_string, sort_key):
]


def test_sortable_and_filtered(app_client):
path = (
'/test_tables/sortable.json'
'?content__contains=d&_sort_desc=sortable&_shape=objects'
)
response = app_client.get(path, gather_request=False)
fetched = response.json['rows']
expected = [
row for row in generate_sortable_rows(201)
if 'd' in row['content']
]
expected.sort(key=lambda row: -row['sortable'])
assert [
r['content'] for r in expected
] == [
r['content'] for r in fetched
]


@pytest.mark.parametrize('path,expected_rows', [
('/test_tables/simple_primary_key.json?content=hello', [
['1', 'hello'],
Expand Down

0 comments on commit b551e30

Please sign in to comment.