.profile-top
  .profile-top__avatar
    - avatar = render PhilomenaWeb.UserAttributionView, "_user_avatar.html", object: %{user: @user}, class: "avatar--large"
    = if current?(@user, @conn.assigns.current_user) do
      = link avatar, to: Routes.avatar_path(@conn, :edit, profile: true), title: "Change avatar"
    - else
      = avatar
  .profile-top__name-and-links
    div
      h1.profile-top__name-header
        = @user.name
        | 's profile
      = render PhilomenaWeb.UserAttributionView, "_user_title.html", object: %{user: @user}, large: true
      br

      = if can?(@conn, :edit_description, @user) do
        = link "Edit Personal Title", to: Routes.profile_description_path(@conn, :edit, @user)
        br

      span
        ' Member since
        = pretty_time(@user.created_at)

    .profile-top__options
      ul.profile-top__options__column
        li = link("Send message", to: Routes.conversation_path(@conn, :new, recipient: @user.name))
        li = link("Our conversations", to: Routes.conversation_path(@conn, :index, with: @user.id))
        li = link("Report this user", to: Routes.profile_report_path(@conn, :new, @user))

      ul.profile-top__options__column
        li = link("Uploads", to: Routes.search_path(@conn, :index, q: "uploader_id:#{@user.id}"))
        li = link("Comments", to: Routes.comment_path(@conn, :index, cq: "user_id:#{@user.id}"))
        li = link("Posts", to: Routes.post_path(@conn, :index, pq: "user_id:#{@user.id}"))
        = if current?(@user, @conn.assigns.current_user) do
          li = link "My reports", to: Routes.report_path(@conn, :index)

      ul.profile-top__options__column
        li = link("Favorites", to: Routes.search_path(@conn, :index, q: "faved_by_id:#{@user.id}"))
        li = link("Tag changes", to: Routes.profile_tag_change_path(@conn, :index, @user))
        li = link("Source changes", to: Routes.profile_source_change_path(@conn, :index, @user))

= if can_index_user?(@conn) do
  .js-staff-action
    = render PhilomenaWeb.ProfileView, "_admin_block.html", assigns

= if @forced && (current?(@user, @conn.assigns.current_user) or can_index_user?(@conn)) do
  .block
    i.fa.fa-fw.fa-filter>
    strong.comment_deleted> Forced Filter:
    = link @forced.name, to: Routes.filter_path(@conn, :show, @forced)

= if (current?(@user, @conn.assigns.current_user) or can?(@conn, :index, Philomena.Bans.User)) and Enum.any?(@bans) do
  .block.block--warning
    .block__header
      i.fa.fa-ban
      | Ban History
    .block__content
      = render PhilomenaWeb.BanView, "_bans.html", bans: @bans, conn: @conn

.column-layout
  .column-layout__left
    .block
      .block__header
        i.fa.fa-briefcase
        | Commissions
      = render PhilomenaWeb.ProfileView, "_commission.html", user: @user, commission_information: @commission_information, conn: @conn

    .block
      .block__header
        i.fa.fa-link
        | Artist Links

      = for link <- @user.verified_links, should_see_link?(@conn, @user, link) do
        - watchers = if link.tag, do: @watcher_counts[link.tag.id] || 0, else: 0

        .block__content.alternating-color.break-word class=link_block_class(link)
          .center
            = if link.tag do
              .tag_list = render PhilomenaWeb.TagView, "_tag.html", tag: link.tag, conn: @conn
            = link(link.uri, to: link.uri)

            = if current?(@user, @conn.assigns.current_user) or manages_links?(@conn, @user) do
              br
              ' Watched by
              => watchers
              = pluralize("user", "users", watchers)

            = if manages_links?(@conn, @user) do
              br
              => if link.public do
                ' Public
              - else
                ' Hidden
              ' &bull;
              a href=Routes.profile_artist_link_path(@conn, :edit, @user, link)
                ' Edit
              ' &bull;
              a href=Routes.admin_artist_link_reject_path(@conn, :create, link) data-method="post"
                ' Reject
            - else
              => unless link.public do
                br
                ' Hidden

      = if current?(@user, @conn.assigns.current_user) or manages_links?(@conn, @user) do
        .block__content.alternating-color.break-word
          a.button href=Routes.profile_artist_link_path(@conn, :new, @user)
            i.fa.fa-link>
            | Create an Artist Link
    .block
      .block__header
        i.fa.fa-award
        | Badges
      = for award <- award_order(@user.awards) do
        .block__content.flex.flex--centered.flex--center-distributed.alternating-color.no-overflow title=award.label
          .flex__grow.center
            .badge = badge_image(award.badge, alt: award.label, width: "32", height: "32")
            br
            = award_title(award)
          .flex__grow.center
            => pretty_time(award.awarded_on)
            = if manages_awards?(@conn) do
              = user_abbrv(@conn, award.awarded_by)

          = if manages_awards?(@conn) do
            .flex__grow.center
              a href=Routes.profile_award_path(@conn, :delete, @user, award) data-method="delete" data-confirm="Are you really, really sure?"
                ' Remove
              br
              a href=Routes.profile_award_path(@conn, :edit, @user, award)
                ' Edit
      = if manages_awards?(@conn) and not hide_staff_tools?(@conn) do
        .block__content.alternating-color.no-overflow
          a.button href=Routes.profile_award_path(@conn, :new, @user)
            i.fa.fa-trophy>
            | Award a badge

    .block
      .block__header
        i.fa.fa-question
        | About Me

      = render PhilomenaWeb.ProfileView, "_about_me.html", user: @user, about_me: @about_me, conn: @conn

    = if can_read_mod_notes?(@conn) and not hide_staff_tools?(@conn) do
      .block.block--warning
        .block__header
          i.fa.fa-sticky-note
          | Mod Notes
        table.table
          thead
            tr
              th Note
              th Created
          tbody
            = for {body, mod_note} <- @mod_notes do
              tr
                td == body
                td = pretty_time(mod_note.created_at)
        .block__content
          a.button href=Routes.profile_detail_path(@conn, :index, @user)
            i.fa.fa-plus>
            | Edit mod notes
    = if can_index_user?(@conn) do
      .block.block--warning
        .block__header
          i.fa.fa-clipboard
          | Moderation Scratchpad
        .block__content.profile-about
          == @scratchpad
        .block__content
          a.button href=Routes.profile_scratchpad_path(@conn, :edit, @user)
            i.fa.fa-edit>
            | Edit

  .column-layout__main
    = render PhilomenaWeb.ProfileView, "_statistics.html", user: @user, statistics: @statistics, conn: @conn
    = render PhilomenaWeb.ProfileView, "_recent_images.html", title: "Recent Artwork", images: @recent_artwork, view_all_path: Routes.search_path(@conn, :index, q: tag_disjunction(@tags)), conn: @conn
    = render PhilomenaWeb.ProfileView, "_recent_images.html", title: "Recent Uploads", images: @recent_uploads, view_all_path: Routes.search_path(@conn, :index, q: "uploader_id:#{@user.id}"), conn: @conn
    = render PhilomenaWeb.ProfileView, "_recent_images.html", title: "Recent Favorites", images: @recent_faves, view_all_path: Routes.search_path(@conn, :index, q: "faved_by_id:#{@user.id}"), conn: @conn
    = render PhilomenaWeb.ProfileView, "_recent_galleries.html", galleries: @recent_galleries, user: @user, conn: @conn
    = render PhilomenaWeb.ProfileView, "_recent_comments.html", comments: @recent_comments, user: @user, conn: @conn
    = render PhilomenaWeb.ProfileView, "_recent_posts.html", posts: @recent_posts, user: @user, conn: @conn