Add bar charts for non-timeseries data. For example, a bar chart of the top 10 uploaders overall in the last month, rather than a timeseries chart of the number of uploads per day for the last month.
25 lines
1.3 KiB
Plaintext
25 lines
1.3 KiB
Plaintext
<% page_title @title %>
|
|
|
|
<div id="c-reports">
|
|
<div id="a-show">
|
|
<h1><%= @title %></h1>
|
|
<%= link_to "« Back", reports_path, class: "text-xs" %>
|
|
|
|
<%= search_form_for(current_page_path) do |f| %>
|
|
<% if @report == "posts" %>
|
|
<%= f.input :tags, label: "Tags", input_html: { value: params[:search][:tags], data: { autocomplete: "tag-query" } } %>
|
|
<% end %>
|
|
|
|
<%= f.input :from, as: :date, html5: true, input_html: { value: params[:search][:from] || 1.month.ago.to_date } %>
|
|
<%= f.input :to, as: :date, html5: true, input_html: { value: params[:search][:to] || Time.zone.now.to_date } %>
|
|
<%= f.input :period, collection: %w[day week month year].map { [_1.capitalize, _1] }, include_blank: true, selected: @period %>
|
|
<%= f.input :group, label: "Group By", collection: @available_groups.map { |group| [group.titleize, group] }, include_blank: true, selected: params[:search][:group] if @available_groups.present? %>
|
|
<%= f.input :group_limit, label: "Top", collection: [10, 25, 50, 100], selected: @group_limit if @group %>
|
|
<%= f.input :mode, as: :hidden, input_html: { value: params[:search][:mode] } %>
|
|
<%= f.submit "Search" %>
|
|
<% end %>
|
|
|
|
<%= render TimeSeriesComponent.new(@dataframe, x_axis: @x_axis, mode: @mode) %>
|
|
</div>
|
|
</div>
|