BigW Consortium Gitlab

show.html.haml 4.08 KB
Newer Older
1 2 3
- page_title       @user.name
- page_description @user.bio
- header_title     @user.name, user_path(@user)
4
- @no_container = true
Douwe Maan committed
5

6
= content_for :meta_tags do
7
  = auto_discovery_link_tag(:atom, user_url(@user, format: :atom), title: "#{@user.name} activity")
8

9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
.user-profile
  .cover-block
    .cover-controls
      - if @user == current_user
        = link_to profile_path, class: 'btn btn-gray' do
          = icon('pencil')
      - elsif current_user
        %span.report-abuse
          - if @user.abuse_report
            %button.btn.btn-danger{ title: 'Already reported for abuse',
              data: { toggle: 'tooltip', placement: 'left', container: 'body' }}
              = icon('exclamation-circle')
          - else
            = link_to new_abuse_report_path(user_id: @user.id, ref_url: request.referrer), class: 'btn btn-gray',
              title: 'Report abuse', data: {toggle: 'tooltip', placement: 'left', container: 'body'} do
              = icon('exclamation-circle')
      - if current_user
         
        = link_to user_path(@user, :atom, { private_token: current_user.private_token }), class: 'btn btn-gray' do
          = icon('rss')

    .avatar-holder
      = link_to avatar_icon(@user, 400), target: '_blank' do
        = image_tag avatar_icon(@user, 90), class: "avatar s90", alt: ''
    .cover-title
      = @user.name
Alfredo Sumaran committed
35

36 37 38 39 40
    .cover-desc
      %span.middle-dot-divider
        @#{@user.username}
      %span.middle-dot-divider
        Member since #{@user.created_at.to_s(:medium)}
41

42 43 44 45
    - if @user.bio.present?
      .cover-desc
        %p.profile-user-bio
          = @user.bio
46

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
    .cover-desc
      - unless @user.public_email.blank?
        .profile-link-holder.middle-dot-divider
          = link_to @user.public_email, "mailto:#{@user.public_email}"
      - unless @user.skype.blank?
        .profile-link-holder.middle-dot-divider
          = link_to "skype:#{@user.skype}", title: "Skype" do
            = icon('skype')
      - unless @user.linkedin.blank?
        .profile-link-holder.middle-dot-divider
          = link_to "https://www.linkedin.com/in/#{@user.linkedin}", title: "LinkedIn" do
            = icon('linkedin-square')
      - unless @user.twitter.blank?
        .profile-link-holder.middle-dot-divider
          = link_to "https://twitter.com/#{@user.twitter}", title: "Twitter" do
            = icon('twitter-square')
      - unless @user.website_url.blank?
        .profile-link-holder.middle-dot-divider
          = link_to @user.short_website_url, @user.full_website_url
      - unless @user.location.blank?
        .profile-link-holder.middle-dot-divider
          = icon('map-marker')
          = @user.location

    %ul.nav-links.center.user-profile-nav
72
      %li.js-activity-tab
73 74
        = link_to user_calendar_activities_path, data: {target: 'div#activity', action: 'activity', toggle: 'tab'} do
          Activity
75
      %li.js-groups-tab
76 77
        = link_to user_groups_path, data: {target: 'div#groups', action: 'groups', toggle: 'tab'} do
          Groups
78
      %li.js-contributed-tab
79 80 81 82 83 84 85 86 87
        = link_to user_contributed_projects_path, data: {target: 'div#contributed', action: 'contributed', toggle: 'tab'} do
          Contributed projects
      %li.projects-tab
        = link_to user_projects_path, data: {target: 'div#projects', action: 'projects', toggle: 'tab'} do
          Personal projects

  %div{ class: container_class }
    .tab-content
      #activity.tab-pane
88
        .gray-content-block.calender-block.white.second-block.hidden-xs
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
          %div{ class: container_class }
            .user-calendar{data: {href: user_calendar_path}}
              %h4.center.light
                %i.fa.fa-spinner.fa-spin
          .user-calendar-activities

        .content_list{ data: {href: user_path} }
        = spinner

      #groups.tab-pane
        - # This tab is always loaded via AJAX

      #contributed.contributed-projects.tab-pane
        - # This tab is always loaded via AJAX

      #projects.tab-pane
        - # This tab is always loaded via AJAX

    .loading-status
      = spinner
109 110 111 112 113 114 115

:javascript
  var userProfile;

  userProfile = new User({
    action: "#{controller.action_name}"
  });