Sha256: 097a4bb589db816e64ab63c40125b97b663dbe5bd40caaf0252a7fc90dd879e0

Contents?: true

Size: 1.27 KB

Versions: 24

Compression:

Stored size: 1.27 KB

Contents

<div data-controller="toggle-panel">
  <a href="javascript:void(0);" class="flex items-center cursor-pointer font-semibold text-gray-700" data-action="click->toggle-panel#togglePanel">
    <% if _current_user.respond_to?(:avatar) &&  _current_user.avatar.present? %>
      <%= image_tag _current_user.avatar, class: "h-12 rounded-full border-4 border-white mr-1" %>
    <% end %>
    <% if _current_user.respond_to?(:name) && _current_user.name.present? %>
      <%= _current_user.name %>
    <% elsif _current_user.respond_to?(:email) && _current_user.email.present? %>
      <%= _current_user.email %>
    <% else %>
      Avo user
    <% end %>
    <% if main_app.respond_to?(:destroy_user_session_path) %>
      <%= svg 'chevron-down', class: "ml-1 h-4" %>
    <% end %>
  </a>

  <% if main_app.respond_to?(:destroy_user_session_path) %>
    <div class="hidden absolute inset-auto inset-auto right-0 mr-6 mt-0 py-4 bg-white rounded-xl min-w-[200px] shadow-context" data-toggle-panel-target="panel">
      <%= button_to "Sign out", main_app.destroy_user_session_path, method: :delete, form: { "data-turbo" => "false" }, class: "appearance-none bg-white text-left cursor-pointer text-green-600 font-semibold hover:text-white hover:bg-green-500 block px-4 py-1 w-full" %>
    </div>
  <% end %>
</div>

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
avo-1.8.4 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.8.3 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.8.2 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.8.1 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.8.0 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.7.3 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.7.3.pre.1 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.7.2 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.7.1 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.7.0 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.6.4.pre.1 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.6.3.pre.3 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.6.3.pre.2 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.6.3.pre.1 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.6.2.pre.1 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.6.1 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.6.0 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.5.5 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.5.4 app/views/avo/partials/_profile_dropdown.html.erb
avo-1.5.3 app/views/avo/partials/_profile_dropdown.html.erb