Sha256: 016d81ab367219ea03b5da31fb9ab1618368d12ecabf947aa0dc0a6d9b94a96f
Contents?: true
Size: 1.8 KB
Versions: 1
Compression:
Stored size: 1.8 KB
Contents
json.links do json.self url_for(search_state.to_h.merge(only_path: false)) json.prev url_for(search_state.to_h.merge(only_path: false, page: @response.prev_page.to_s)) if @response.prev_page json.next url_for(search_state.to_h.merge(only_path: false, page: @response.next_page.to_s)) if @response.next_page json.last url_for(search_state.to_h.merge(only_path: false, page: @response.total_pages.to_s)) end json.meta do json.pages @presenter.pagination_info end json.data do json.array! @presenter.documents do |document| json.id document.id json.attributes document json.links do json.self polymorphic_url(url_for_document(document)) end end end json.included do json.array! @presenter.search_facets_as_json do |facet| json.type 'facet' json.id facet['name'] json.attributes do json.items do json.array! facet['items'] do |item| json.id json.attributes do json.label item['label'] json.value item['value'] json.hits item['hits'] end json.links do json.self path_for_facet(facet['name'], item['value'], only_path: false) end end end end json.links do json.self search_facet_path(id: facet['name'], only_path: false) end end json.array! search_fields do |(label, key)| json.type 'search_field' json.id key json.attributes do json.label label end json.links do json.self url_for(search_state.to_h.merge(search_field: key, only_path: false)) end end json.array! active_sort_fields do |key, field| json.type 'sort' json.id key json.attributes do json.label field.label end json.links do json.self url_for(search_state.to_h.merge(sort: key, only_path: false)) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blacklight-7.0.0.rc1 | app/views/catalog/index.json.jbuilder |