Add message on starrers view when nobody has starred a repository yet

This commit is contained in:
Camil Staps 2019-01-27 12:20:55 +01:00
parent 5e131bcaf1
commit b74c5dbcd1
No known key found for this signature in database
GPG Key ID: 4A9BFD4F6A415F83
1 changed files with 22 additions and 18 deletions

View File

@ -5,21 +5,25 @@
%span.flex-project-title %span.flex-project-title
= _("Starrers of <strong>%{project_name}</strong>").html_safe % { project_name: sanitize_project_name(@project.name) } = _("Starrers of <strong>%{project_name}</strong>").html_safe % { project_name: sanitize_project_name(@project.name) }
%span.badge.badge-pill= @starrers.size %span.badge.badge-pill= @starrers.size
.nav-controls - if @starrers.size > 0
= form_tag request.original_url, method: :get, class: 'form-inline user-search-form flex-users-form' do .nav-controls
.form-group = form_tag request.original_url, method: :get, class: 'form-inline user-search-form flex-users-form' do
.position-relative .form-group
= search_field_tag :search, params[:search], { placeholder: _('Find starrers by name'), class: 'form-control', spellcheck: false } .position-relative
%button.user-search-btn{ type: "submit", "aria-label" => _("Submit search") } = search_field_tag :search, params[:search], { placeholder: _('Find starrers by name'), class: 'form-control', spellcheck: false }
= icon("search") %button.user-search-btn{ type: "submit", "aria-label" => _("Submit search") }
.dropdown.inline.user-sort-dropdown = icon("search")
= dropdown_toggle(users_sort_options_hash[@sort], { toggle: 'dropdown' }) .dropdown.inline.user-sort-dropdown
%ul.dropdown-menu.dropdown-menu-right.dropdown-menu-selectable = dropdown_toggle(users_sort_options_hash[@sort], { toggle: 'dropdown' })
%li.dropdown-header %ul.dropdown-menu.dropdown-menu-right.dropdown-menu-selectable
= _("Sort by") %li.dropdown-header
- users_sort_options_hash.each do |value, title| = _("Sort by")
%li - users_sort_options_hash.each do |value, title|
= link_to filter_user_path(sort: value), class: ("is-active" if @sort == value) do %li
= title = link_to filter_user_path(sort: value), class: ("is-active" if @sort == value) do
.row.prepend-top-10 = title
= render partial: 'starrer', collection: @starrers, as: :user - if @starrers.size > 0
.row.prepend-top-10
= render partial: 'starrer', collection: @starrers, as: :user
-else
.nothing-here-block Nobody has starred this repository yet