Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blank results visualization #311

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/components/admin/tags/tags_list_component.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<div class="self-stretch flex-col justify-start items-start flex">
<%= render Admin::Tags::TagsListRowComponent.with_collection(@simple_tags) %>
</div>
<%= blank_results_area %>
</div>
<div class="self-stretch bg-white rounded-md border border-gray-200 flex-col justify-start items-start flex">
<div class="self-stretch p-6 border-b border-gray-200 justify-start items-center gap-4 inline-flex">
Expand Down
1 change: 1 addition & 0 deletions app/components/admin/tags/tags_list_component.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
class Admin::Tags::TagsListComponent < ViewComponent::Base
renders_one :blank_results_area
def initialize(simple_tags:)
@simple_tags = simple_tags
end
Expand Down
9 changes: 9 additions & 0 deletions app/components/common/blank_results_component.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<div class="flex flex-col justify-start items-start self-stretch flex-grow-0 flex-shrink-0">
<div class="flex flex-col justify-center items-center self-stretch flex-grow-0 flex-shrink-0 relative gap-6 px-6 py-12 bg-white">
<%= render Common::IconComponent.new(@icon, classes: "size-32 text-gray-500") %>
<div class="flex flex-col justify-center items-center flex-grow-0 flex-shrink-0 relative gap-1">
<p class="flex-grow-0 flex-shrink-0 text-base font-semibold text-center text-gray-500"><%= @text1 %></p>
<p class="flex-grow-0 flex-shrink-0 text-base text-center text-gray-500"><%= @text2 %></p>
</div>
</div>
</div>
24 changes: 24 additions & 0 deletions app/components/common/blank_results_component.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module Common
class BlankResultsComponent < ViewComponent::Base
def initialize (reason = :not_found)
@reason = reason
end

def before_render # rubocop:disable Metrics/MethodLength
case @reason
when :empty
@text1 = t "blank_results.empty.text1"
@text2 = t "blank_results.empty.text2"
@icon = "magnifying-glass"
when :not_found
@text1 = t "blank_results.not_found.text1"
@text2 = t "blank_results.not_found.text2"
@icon = "magnifying-glass"
when :all_done
@text1 = t "blank_results.all_done.text1"
@text2 = t "blank_results.all_done.text2"
@icon = "hand-thumb-up"
end
end
end
end
4 changes: 3 additions & 1 deletion app/components/common/icon_component.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ class IconComponent < ViewComponent::Base
"shield-check" => "M9 12.75 11.25 15 15 9.75m-3-7.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285Z",
"exclamation-triangle" => "M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126ZM12 15.75h.007v.008H12v-.008Z",
"clock" => "M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z",
"cloud-arrow-down" => "M12 9.75v6.75m0 0-3-3m3 3 3-3m-8.25 6a4.5 4.5 0 0 1-1.41-8.775 5.25 5.25 0 0 1 10.233-2.33 3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5H6.75Z"
"cloud-arrow-down" => "M12 9.75v6.75m0 0-3-3m3 3 3-3m-8.25 6a4.5 4.5 0 0 1-1.41-8.775 5.25 5.25 0 0 1 10.233-2.33 3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5H6.75Z",
"hand-thumb-up" => "M6.633 10.25c.806 0 1.533-.446 2.031-1.08a9.041 9.041 0 0 1 2.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 0 0 .322-1.672V2.75a.75.75 0 0 1 .75-.75 2.25 2.25 0 0 1 2.25 2.25c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282m0 0h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 0 1-2.649 7.521c-.388.482-.987.729-1.605.729H13.48c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 0 0-1.423-.23H5.904m10.598-9.75H14.25M5.904 18.5c.083.205.173.405.27.602.197.4-.078.898-.523.898h-.908c-.889 0-1.713-.518-1.972-1.368a12 12 0 0 1-.521-3.507c0-1.553.295-3.036.831-4.398C3.387 9.953 4.167 9.5 5 9.5h1.053c.472 0 .745.556.5.96a8.958 8.958 0 0 0-1.302 4.665c0 1.194.232 2.333.654 3.375Z",
"magnifying-glass" => "m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z"
}.freeze

def initialize(icon, classes: "", stroke_width: 1.5)
Expand Down
2 changes: 1 addition & 1 deletion app/components/layout/filter_list_component.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<p class="text-sm text-center text-gray-400">Filtre</p>
</div>
<% @filters.each do |filter| %>
<% url = message_threads_path(q: filter.query) %>
<% url = message_threads_path(q: filter.query, referrer: :menu) %>
<%= link_to url, class: "text-gray-700 hover:text-indigo-600 hover:bg-gray-50 group w-72 flex gap-x-3 rounded-md p-2 px-4 text-sm leading-6 font-semibold data-[active=true]:bg-gray-50 data-[active=true]:text-indigo-600", data: { active: current_page?(url) } do %>
<%= render Icons::BookmarkComponent.new %>
<p class="truncate text-base font-medium"><%= filter.name %></p>
Expand Down
2 changes: 1 addition & 1 deletion app/components/layout/tag_list_component.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<p class="text-sm text-center text-gray-400">Štítky</p>
</div>
<% @tags.each do |tag| %>
<% url = message_threads_path(q: "label:(#{tag.name})") %>
<% url = message_threads_path(q: "label:(#{tag.name})", referrer: :menu) %>
<%= link_to url, class: "text-gray-700 hover:text-indigo-600 hover:bg-gray-50 group w-72 flex gap-x-3 rounded-md p-2 px-4 text-sm leading-6 font-semibold data-[active=true]:bg-gray-50 data-[active=true]:text-indigo-600", data: { active: current_page?(url) } do %>
<%= render Icons::TagComponent.new %>
<p class="truncate text-base font-medium"><%= tag.name %></p>
Expand Down
1 change: 1 addition & 0 deletions app/components/message_threads_table_component.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
</ul>
<%= next_page_area %>
<% end %>
<%= blank_results_area %>
</div>
</div>
1 change: 1 addition & 0 deletions app/components/message_threads_table_component.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
class MessageThreadsTableComponent < ViewComponent::Base
renders_many :message_threads
renders_one :next_page_area
renders_one :blank_results_area

def initialize(filter:, filter_subscription:)
@filter = filter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<% end %>
</div>
</div>
<%= blank_results_area %>
<div class="self-stretch bg-white rounded-md border border-gray-200 flex-col justify-start items-start flex">
<div class="self-stretch p-6 border-b border-gray-200 justify-start items-center gap-4 inline-flex">
<div class="w-8 h-8 relative">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
class Settings::Rules::AutomationRulesListComponent < ViewComponent::Base
renders_many :automation_rules
renders_one :blank_results_area
end
4 changes: 2 additions & 2 deletions app/controllers/message_threads_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ def search_permissions
end

def message_thread_params
params.require(:message_thread).permit(:title, :original_title, :merge_uuids, :tag_id, :tags)
params.require(:message_thread).permit(:title, :original_title, :merge_uuids, :tag_id, :tags, :referrer)
end

def search_params
params.permit(:q, :format, cursor: MessageThreadCollection::CURSOR_PARAMS)
params.permit(:q, :format, :referrer, cursor: MessageThreadCollection::CURSOR_PARAMS)
end

def set_thread_tags
Expand Down
45 changes: 24 additions & 21 deletions app/views/admin/boxes/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,35 @@
<% end %>
</div>
</div>

<div class="flex-col justify-start items-start flex">
<% @boxes.each do |box| %>
<div class="self-stretch p-6 border-b border-gray-200 justify-start items-center gap-4 inline-flex">
<div class="grow basis-0 flex-col justify-start items-start gap-1 inline-flex">
<div class="text-center text-gray-900 text-lg font-medium leading-loose">
<%= render Common::BoxLabelComponent.new(box, "items-start justify-start gap-0") %>
</div>
<div class="text-center text-gray-500 text-base font-normal leading-normal">
<%= box.name %>, <%= box.uri %>
<% if @boxes.any? %>
<div class="flex-col justify-start items-start flex">
<% @boxes.each do |box| %>
<div class="self-stretch p-6 border-b border-gray-200 justify-start items-center gap-4 inline-flex">
<div class="grow basis-0 flex-col justify-start items-start gap-1 inline-flex">
<div class="text-center text-gray-900 text-lg font-medium leading-loose">
<%= render Common::BoxLabelComponent.new(box, "items-start justify-start gap-0") %>
</div>
<div class="text-center text-gray-500 text-base font-normal leading-normal">
<%= box.name %>, <%= box.uri %>
</div>
</div>
</div>

<div class="justify-start items-start gap-2 flex">
<%= link_to edit_admin_tenant_box_path(box.tenant, box), data: { turbo_frame: "modal" } do %>
<%= render Common::EditButtonComponent.new %>
<% end %>
<%= button_to admin_tenant_box_path(box.tenant, box),
<div class="justify-start items-start gap-2 flex">
<%= link_to edit_admin_tenant_box_path(box.tenant, box), data: { turbo_frame: "modal" } do %>
<%= render Common::EditButtonComponent.new %>
<% end %>
<%= button_to admin_tenant_box_path(box.tenant, box),
method: :delete,
data: { turbo_confirm: "Naozaj odstrániť schránku \"#{box.name}\"?" } do %>
<%= render Common::DeleteButtonComponent.new %>
<% end %>
<%= render Common::DeleteButtonComponent.new %>
<% end %>
</div>
</div>
</div>
<% end %>
</div>
<% end %>
</div>
<% else %>
<%= render Common::BlankResultsComponent.new(:empty) %>
<% end %>

</div>
</div>
Expand Down
8 changes: 7 additions & 1 deletion app/views/admin/tags/index.html.erb
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
<%= render Admin::Tags::TagsListComponent.new(simple_tags: @simple_tags) %>
<%= render Admin::Tags::TagsListComponent.new(simple_tags: @simple_tags) do |component| %>
<% if @simple_tags.empty? %>
<% component.with_blank_results_area do %>
<%= render Common::BlankResultsComponent.new(:empty) %>
<% end %>
<% end %>
<% end %>
6 changes: 5 additions & 1 deletion app/views/filters/index.html.erb
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
<%= render Filters::FiltersListComponent.new(@filters) %>
<% if @filters.any? %>
<%= render Filters::FiltersListComponent.new(@filters) %>
<% else %>
<%= render Common::BlankResultsComponent.new(:empty) %>
<% end %>
23 changes: 16 additions & 7 deletions app/views/message_threads/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,23 @@
<meta name="turbo-visit-control" content="reload">
<% end %>
<% end %>

<%= render MessageThreadsTableComponent.new(filter: @filter, filter_subscription: @filter_subscription) do |component| %>
<% component.with_message_thread do %>
<%= render MessageThreadsTableRowComponent.with_collection(@message_threads) %>
<% end %>
<% if @next_cursor %>
<% component.with_next_page_area do %>
<%= render Turbo::NextPageAreaComponent.new(id: @next_cursor, url: scroll_message_threads_url(@next_page_params)) %>
<% if @message_threads.any? %>
<% component.with_message_thread do %>
<%= render MessageThreadsTableRowComponent.with_collection(@message_threads) %>
<% end %>
<% if @next_cursor %>
<% component.with_next_page_area do %>
<%= render Turbo::NextPageAreaComponent.new(id: @next_cursor, url: scroll_message_threads_url(@next_page_params)) %>
<% end %>
<% end %>
<% else %>
<% component.with_blank_results_area do %>
<% if params[:referrer] == "menu" %>
<%= render Common::BlankResultsComponent.new(:all_done) %>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Toto neviem ci je uplne spravna logika, ak "idem z menu", tak mozem mat aj filter "Vybavene" a ked je prazdny tak nie je prave naopak NIC vybavene. Zaroven to posuvanie referera sa mi nepaci.

Spravme teda len tu verziu, ze ziadne spravy.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No moja logika bola taka, ze ked idem z menu, tak je to nieco ako "TODO list", t.j. prazdny zoznam je dobry zoznam, a preto palec hore. A naopak, ked si robim custom query, tak asi nieco chcem najst, a ked nenajdem, tak je to v podstate chyba. Tomu som sa snazil aj ikony prisposobovat po inspiracii Figmou

<% else %>
<%= render Common::BlankResultsComponent.new(:not_found) %>
<% end %>
<% end %>
<% end %>
<% end %>
12 changes: 9 additions & 3 deletions app/views/settings/automation_rules/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
<%= render Settings::Rules::AutomationRulesListComponent.new do |component| %>
<% @automation_rules.each do |automation_rule| %>
<% component.with_automation_rule do %>
<%= render Settings::Rules::AutomationRulesTableRowComponent.new(automation_rule) %>
<% if @automation_rules.any? %>
<% @automation_rules.each do |automation_rule| %>
<% component.with_automation_rule do %>
<%= render Settings::Rules::AutomationRulesTableRowComponent.new(automation_rule) %>
<% end %>
<% end %>
<% else %>
<% component.with_blank_results_area do %>
<%= render Common::BlankResultsComponent.new(:empty) %>
<% end %>
<% end %>
<% end %>
10 changes: 10 additions & 0 deletions config/locales/sk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,3 +288,13 @@ sk:
bulk:
signing:
nothing_to_sign: "Vo vybraných vláknach sa nenašli žiadne dokumenty so žiadosťou na podpis"
blank_results:
empty:
text1: "Žiadne záznamy"
text2: "Zatiaľ nie sú vytvorené žiadne záznamy"
not_found:
text1: "Žiadne výsledky"
text2: "Skúste zmeniť filter alebo vyhľadávané slová"
all_done:
text1: "Všetko je hotové"
text2: "Nemáte žiadnu novú správu"
Loading