summaryrefslogtreecommitdiff
path: root/app/views/users/show.html.haml
blob: 1ebf02ffd391c78fc0abd2db788317c01429a8a5 (plain)
1
2
3
4
5
6
7
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
35
36
37
38
39
40
41
42
43
44
45
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
- @hide_top_links = true
- @no_container = true
- breadcrumb_title user_display_name(@user)
- page_title       user_display_name(@user)
- page_description @user.bio unless @user.blocked? || !@user.confirmed?
- page_itemtype    'http://schema.org/Person'
- add_page_specific_style 'page_bundles/profile'
- link_classes = "flex-grow-1 mx-1 "
- if show_super_sidebar?
  - @left_sidebar = true
  - @force_desktop_expanded_sidebar = true
  - nav "user_profile"

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

.user-profile
  .cover-block.user-cover-block.gl-border-t.gl-border-b.gl-mt-n1
    %div{ class: container_class }
      = render layout: 'users/cover_controls' do
        - if @user == current_user
          = render Pajamas::ButtonComponent.new(href: profile_path,
            icon: 'pencil',
            button_options: { class: 'gl-flex-grow-1 gl-mx-1 has-tooltip', title: s_('UserProfile|Edit profile'), 'aria-label': 'Edit profile', data: { toggle: 'tooltip', placement: 'bottom', container: 'body' }})
        - elsif current_user
          #js-report-abuse{ data: { report_abuse_path: add_category_abuse_reports_path, reported_user_id: @user.id, reported_from_url: user_url(@user) } }
        - verified_gpg_keys = @user.gpg_keys.select(&:verified?)
        - if verified_gpg_keys.any?
          = render Pajamas::ButtonComponent.new(href: user_gpg_keys_path,
            icon: 'key',
            button_options: { class: 'gl-flex-grow-1 gl-mx-1 has-tooltip', title: n_('View public GPG key', 'View public GPG keys', verified_gpg_keys.length), data: { toggle: 'tooltip', placement: 'bottom', container: 'body' }})
        - if can?(current_user, :read_user_profile, @user)
          = render Pajamas::ButtonComponent.new(href: user_path(@user, rss_url_options),
            icon: 'rss',
            button_options: { class: 'gl-flex-grow-1 gl-mx-1 has-tooltip', title: s_('UserProfile|Subscribe'), data: { toggle: 'tooltip', placement: 'bottom', container: 'body' }})
        - if current_user && current_user.admin?
          = render Pajamas::ButtonComponent.new(href: [:admin, @user],
            icon: 'user',
            button_options: { class: 'gl-flex-grow-1 gl-mx-1 has-tooltip', title: s_('UserProfile|View user in admin area'), data: {toggle: 'tooltip', placement: 'bottom', container: 'body'}})
        - if current_user && current_user.following_users_allowed?(@user)
          - if current_user.following?(@user)
            = form_tag user_unfollow_path(@user, :json), class: link_classes + 'gl-display-inline-block' do
              = render Pajamas::ButtonComponent.new(type: :submit, button_options: { class: 'gl-w-full', data: { track_action: 'click_button', track_label: 'unfollow_from_profile' } }) do
                = _('Unfollow')
          - else
            = form_tag user_follow_path(@user, :json), class: link_classes + 'gl-display-inline-block' do
              = render Pajamas::ButtonComponent.new(variant: :confirm, type: :submit, button_options: { class: 'gl-w-full', data: { qa_selector: 'follow_user_link', track_action: 'click_button', track_label: 'follow_from_profile' } }) do
                = _('Follow')

      .profile-header{ class: [('with-no-profile-tabs' if profile_tabs.empty?), ('gl-mb-4!' if show_super_sidebar?)] }
        .gl-display-inline-block.gl-mx-8.gl-vertical-align-top
          .avatar-holder
            = link_to avatar_icon_for_user(@user, 400, current_user: current_user), target: '_blank', rel: 'noopener noreferrer' do
              = render Pajamas::AvatarComponent.new(@user, alt: "", size: 96, avatar_options: { itemprop: "image" })
          - if @user.achievements_enabled && Ability.allowed?(current_user, :read_user_profile, @user)
            #js-user-achievements{ data: { root_url: root_url, user_id: @user.id } }
        .gl-display-inline-block.gl-vertical-align-top.gl-text-left.gl-max-w-80
          - if @user.blocked? || !@user.confirmed?
            .user-info
              %h1.cover-title.gl-my-0
                = user_display_name(@user)
            = render "users/profile_basic_info"
          - else
            .user-info
              %h1.cover-title.gl-my-0{ itemprop: 'name' }
                = @user.name
                - if @user.pronouns.present?
                  %span.gl-font-base.gl-text-gray-500.gl-vertical-align-middle
                    = "(#{@user.pronouns})"
                - if @user.status&.busy?
                  = render Pajamas::BadgeComponent.new(s_('UserProfile|Busy'), size: 'sm', variant: 'warning', class: 'gl-vertical-align-middle')

              - if @user.pronunciation.present?
                .gl-align-items-center
                  %p.gl-mb-4.gl-text-gray-500= s_("UserProfile|Pronounced as: %{pronunciation}") % { pronunciation: @user.pronunciation }

              - if @user.status&.customized?
                .cover-status.gl-display-inline-flex.gl-align-items-center.gl-mb-3
                  = emoji_icon(@user.status.emoji, class: 'gl-mr-2')
                  = markdown_field(@user.status, :message)
              = render "users/profile_basic_info"
              - user_local_time = local_time(@user.timezone)
              - if @user.location.present? || user_local_time.present? || work_information(@user).present?
                .gl-text-gray-900
                  - if @user.location.present?
                    = render 'middle_dot_divider', stacking: true, itemprop: 'address', itemscope: true, itemtype: 'https://schema.org/PostalAddress' do
                      = sprite_icon('location', css_class: 'fgray')
                      %span{ itemprop: 'addressLocality' }
                        = @user.location
                  - if user_local_time.present?
                    = render 'middle_dot_divider', stacking: true, data: { testid: 'user-local-time' } do
                      = sprite_icon('clock', css_class: 'fgray')
                      %span
                        = user_local_time
                  - if work_information(@user).present?
                    = render 'middle_dot_divider', stacking: true do
                      = sprite_icon('work', css_class: 'fgray')
                      %span
                        = work_information(@user, with_schema_markup: true)
              .gl-text-gray-900
                - if @user.skype.present?
                  = render 'middle_dot_divider' do
                    = link_to "skype:#{@user.skype}", class: 'gl-hover-text-decoration-none', title: "Skype" do
                      = sprite_icon('skype', css_class: 'skype-icon')
                - if @user.linkedin.present?
                  = render 'middle_dot_divider' do
                    = link_to linkedin_url(@user), class: 'gl-hover-text-decoration-none', title: "LinkedIn", target: '_blank', rel: 'noopener noreferrer nofollow' do
                      = sprite_icon('linkedin', css_class: 'linkedin-icon')
                - if @user.twitter.present?
                  = render 'middle_dot_divider', breakpoint: 'sm' do
                    = link_to twitter_url(@user), class: 'gl-hover-text-decoration-none', title: "Twitter", target: '_blank', rel: 'noopener noreferrer nofollow' do
                      = sprite_icon('twitter', css_class: 'twitter-icon')
                - if @user.discord.present?
                  = render 'middle_dot_divider', breakpoint: 'sm' do
                    = link_to discord_url(@user), class: 'gl-hover-text-decoration-none', title: "Discord", target: '_blank', rel: 'noopener noreferrer nofollow' do
                      = sprite_icon('discord', css_class: 'discord-icon')
                - if @user.website_url.present?
                  = render 'middle_dot_divider', stacking: true do
                    - if Feature.enabled?(:security_auto_fix) && @user.bot?
                      = sprite_icon('question-o', css_class: 'gl-text-blue-500')
                    = link_to @user.short_website_url, @user.full_website_url, target: '_blank', rel: 'me noopener noreferrer nofollow', itemprop: 'url'
                - if display_public_email?(@user)
                  = render 'middle_dot_divider', stacking: true do
                    = link_to @user.public_email, "mailto:#{@user.public_email}", itemprop: 'email'

              -# Ensure this stays indented one level less than the social links
              -# See https://gitlab.com/gitlab-org/gitlab/-/merge_requests/118314
              - if @user.bio.present? && @user.confirmed? && !@user.blocked?
                %p.profile-user-bio.gl-mb-3
                  = @user.bio

      - if !profile_tabs.empty? && !Feature.enabled?(:profile_tabs_vue, current_user)
        .scrolling-tabs-container{ class: [('gl-display-none' if show_super_sidebar?)] }
          .fade-left= sprite_icon('chevron-lg-left', size: 12)
          .fade-right= sprite_icon('chevron-lg-right', size: 12)
          %ul.nav-links.user-profile-nav.scrolling-tabs.nav.nav-tabs.gl-border-b-0
            - if profile_tab?(:overview)
              %li.js-overview-tab
                = link_to user_path, data: { target: 'div#js-overview', action: 'overview', toggle: 'tab' } do
                  = s_('UserProfile|Overview')
            - if profile_tab?(:activity)
              %li.js-activity-tab
                = link_to user_activity_path, data: { target: 'div#activity', action: 'activity', toggle: 'tab' } do
                  = s_('UserProfile|Activity')
            - unless Feature.enabled?(:security_auto_fix) && @user.bot?
              - if profile_tab?(:groups)
                %li.js-groups-tab
                  = link_to user_groups_path, data: { target: 'div#groups', action: 'groups', toggle: 'tab', endpoint: user_groups_path(format: :json) } do
                    = s_('UserProfile|Groups')
              - if profile_tab?(:contributed)
                %li.js-contributed-tab
                  = link_to user_contributed_projects_path, data: { target: 'div#contributed', action: 'contributed', toggle: 'tab', endpoint: user_contributed_projects_path(format: :json) } do
                    = s_('UserProfile|Contributed projects')
              - if profile_tab?(:projects)
                %li.js-projects-tab
                  = link_to user_projects_path, data: { target: 'div#projects', action: 'projects', toggle: 'tab', endpoint: user_projects_path(format: :json) } do
                    = s_('UserProfile|Personal projects')
              - if profile_tab?(:starred)
                %li.js-starred-tab
                  = link_to user_starred_projects_path, data: { target: 'div#starred', action: 'starred', toggle: 'tab', endpoint: user_starred_projects_path(format: :json) } do
                    = s_('UserProfile|Starred projects')
              - if profile_tab?(:snippets)
                %li.js-snippets-tab
                  = link_to user_snippets_path, data: { target: 'div#snippets', action: 'snippets', toggle: 'tab', endpoint: user_snippets_path(format: :json) } do
                    = s_('UserProfile|Snippets')
              - if profile_tab?(:followers)
                %li.js-followers-tab
                  = link_to user_followers_path, data: { target: 'div#followers', action: 'followers', toggle: 'tab', endpoint: user_followers_path(format: :json) } do
                    = s_('UserProfile|Followers')
                    = gl_badge_tag @user.followers.count, size: :sm
              - if profile_tab?(:following)
                %li.js-following-tab
                  = link_to user_following_path, data: { target: 'div#following', action: 'following', toggle: 'tab', endpoint: user_following_path(format: :json), qa_selector: 'following_tab' } do
                    = s_('UserProfile|Following')
                    = gl_badge_tag @user.followees.count, size: :sm
    - if !profile_tabs.empty? && Feature.enabled?(:profile_tabs_vue, current_user)
      #js-profile-tabs{ data: user_profile_tabs_app_data(@user) }
  %div{ class: container_class }
    - unless Feature.enabled?(:profile_tabs_vue, current_user)
      .tab-content
        - if profile_tab?(:overview)
          #js-overview.tab-pane
            = render "users/overview"

        - if profile_tab?(:activity)
          #activity.tab-pane
            .flash-container
            - if can?(current_user, :read_cross_project)
              %h4.prepend-top-20
                = s_('UserProfile|Most Recent Activity')
              .content_list{ data: { href: user_activity_path } }
              .loading
                = gl_loading_icon(size: 'md')
        - unless @user.bot?
          - if profile_tab?(:groups)
            #groups.tab-pane
              -# This tab is always loaded via AJAX

          - if profile_tab?(:contributed)
            #contributed.tab-pane
              -# This tab is always loaded via AJAX

          - if profile_tab?(:projects)
            #projects.tab-pane
              -# This tab is always loaded via AJAX

          - if profile_tab?(:starred)
            #starred.tab-pane
              -# This tab is always loaded via AJAX

          - if profile_tab?(:snippets)
            #snippets.tab-pane
              -# This tab is always loaded via AJAX

          - if profile_tab?(:followers)
            #followers.tab-pane
              -# This tab is always loaded via AJAX

          - if profile_tab?(:following)
            #following.tab-pane
              -# This tab is always loaded via AJAX

      .loading.hide
        .gl-spinner.gl-spinner-md

    - if profile_tabs.empty?
      .svg-content
        = image_tag 'illustrations/profile_private_mode.svg'
      .text-content.text-center
        %h4
          - if @user.blocked?
            = s_('UserProfile|This user is blocked')
          - else
            = s_('UserProfile|This user has a private profile')