2014-09-02 18:07:02 +05:30
|
|
|
- empty_repo = @project.empty_repo?
|
2019-02-15 15:39:39 +05:30
|
|
|
- show_auto_devops_callout = show_auto_devops_callout?(@project)
|
2019-10-12 21:52:04 +05:30
|
|
|
- emails_disabled = @project.emails_disabled?
|
2021-06-08 01:23:25 +05:30
|
|
|
- cache_enabled = Feature.enabled?(:cache_home_panel, @project, type: :development, default_enabled: :yaml)
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
.project-home-panel.js-show-on-project-root.gl-my-5{ class: [("empty-project" if empty_repo)] }
|
2021-04-17 20:07:23 +05:30
|
|
|
.gl-display-flex.gl-justify-content-space-between.gl-flex-wrap.gl-sm-flex-direction-column.gl-mb-3
|
|
|
|
.home-panel-title-row.gl-display-flex
|
2021-04-29 21:17:54 +05:30
|
|
|
%div{ class: 'avatar-container rect-avatar s64 home-panel-avatar gl-flex-shrink-0 gl-w-11 gl-h-11 gl-mr-3! float-none' }
|
2021-01-29 00:20:46 +05:30
|
|
|
= project_icon(@project, alt: @project.name, class: 'avatar avatar-tile s64', width: 64, height: 64, itemprop: 'image')
|
2019-02-15 15:39:39 +05:30
|
|
|
.d-flex.flex-column.flex-wrap.align-items-baseline
|
|
|
|
.d-inline-flex.align-items-baseline
|
2022-03-02 08:16:31 +05:30
|
|
|
%h1.home-panel-title.gl-mt-3.gl-mb-2.gl-font-size-h1.gl-line-height-24.gl-font-weight-bold{ data: { qa_selector: 'project_name_content' }, itemprop: 'name' }
|
2019-02-15 15:39:39 +05:30
|
|
|
= @project.name
|
2020-06-23 00:09:42 +05:30
|
|
|
%span.visibility-icon.text-secondary.gl-ml-2.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@project) }
|
2020-10-24 23:57:45 +05:30
|
|
|
= visibility_level_icon(@project.visibility_level, options: { class: 'icon' })
|
2020-04-22 19:07:51 +05:30
|
|
|
= render_if_exists 'compliance_management/compliance_framework/compliance_framework_badge', project: @project
|
2022-03-02 08:16:31 +05:30
|
|
|
.home-panel-metadata.text-secondary.gl-font-base.gl-font-weight-normal.gl-line-height-normal{ data: { qa_selector: 'project_id_content' }, itemprop: 'identifier' }
|
2019-02-15 15:39:39 +05:30
|
|
|
- if can?(current_user, :read_project, @project)
|
2022-03-02 08:16:31 +05:30
|
|
|
%span.gl-display-inline-block.gl-vertical-align-middle
|
|
|
|
= s_('ProjectPage|Project ID: %{project_id}') % { project_id: @project.id }
|
|
|
|
- button_class = "btn gl-button btn-sm btn-tertiary btn-default-tertiary home-panel-metadata"
|
|
|
|
= clipboard_button(title: s_('ProjectPage|Copy project ID'), text: @project.id, class: button_class)
|
2019-02-15 15:39:39 +05:30
|
|
|
- if current_user
|
2022-03-02 08:16:31 +05:30
|
|
|
%span.gl-ml-3.gl-mb-3
|
2019-02-15 15:39:39 +05:30
|
|
|
= render 'shared/members/access_request_links', source: @project
|
2019-03-02 22:35:43 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
.gl-mt-3.gl-pl-3.gl-w-full
|
|
|
|
= render "shared/projects/topics", project: @project, cache_enabled: cache_enabled
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
= cache_if(cache_enabled, [@project, :buttons, current_user, @notification_setting], expires_in: 1.day) do
|
|
|
|
.project-repo-buttons.gl-display-flex.gl-justify-content-md-end.gl-align-items-start.gl-flex-wrap.gl-mt-5
|
|
|
|
- if current_user
|
2021-09-30 23:02:18 +05:30
|
|
|
- if current_user.admin?
|
2021-11-11 11:23:49 +05:30
|
|
|
= link_to [:admin, @project], class: 'btn gl-button btn-icon gl-align-self-start gl-py-2! gl-mr-3', title: _('View project in admin area'),
|
2021-09-30 23:02:18 +05:30
|
|
|
data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
|
|
|
= sprite_icon('admin')
|
2021-06-08 01:23:25 +05:30
|
|
|
.gl-display-flex.gl-align-items-start.gl-mr-3
|
|
|
|
- if @notification_setting
|
|
|
|
.js-vue-notification-dropdown{ data: { button_size: "small", disabled: emails_disabled.to_s, dropdown_items: notification_dropdown_items(@notification_setting).to_json, notification_level: @notification_setting.level, help_page_path: help_page_path('user/profile/notifications'), project_id: @project.id } }
|
2019-01-03 12:48:30 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
.count-buttons.gl-display-flex.gl-align-items-flex-start
|
|
|
|
= render 'projects/buttons/star'
|
|
|
|
= render 'projects/buttons/fork'
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
- if can?(current_user, :download_code, @project)
|
2021-06-08 01:23:25 +05:30
|
|
|
= cache_if(cache_enabled, [@project, :download_code], expires_in: 1.minute) do
|
|
|
|
%nav.project-stats
|
2021-11-18 22:05:49 +05:30
|
|
|
- if @project.empty_repo?
|
|
|
|
= render 'stat_anchor_list', anchors: @project.empty_repo_statistics_anchors
|
|
|
|
- else
|
|
|
|
= render 'stat_anchor_list', anchors: @project.statistics_anchors(show_auto_devops_callout: show_auto_devops_callout)
|
2018-12-23 12:14:25 +05:30
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
.home-panel-home-desc.mt-1
|
2019-02-15 15:39:39 +05:30
|
|
|
- if @project.description.present?
|
2019-09-04 21:01:54 +05:30
|
|
|
.home-panel-description.text-break
|
2021-02-22 17:27:13 +05:30
|
|
|
.home-panel-description-markdown.read-more-container{ itemprop: 'description' }
|
2019-02-15 15:39:39 +05:30
|
|
|
= markdown_field(@project, :description)
|
2021-03-11 19:13:27 +05:30
|
|
|
%button.btn.gl-button.btn-blank.btn-link.js-read-more-trigger.d-lg-none{ type: "button" }
|
2019-02-15 15:39:39 +05:30
|
|
|
= _("Read more")
|
|
|
|
|
|
|
|
- if @project.forked?
|
|
|
|
%p
|
2019-12-04 20:38:33 +05:30
|
|
|
- source = visible_fork_source(@project)
|
|
|
|
- if source
|
2019-02-15 15:39:39 +05:30
|
|
|
#{ s_('ForkedFromProjectPath|Forked from') }
|
2020-03-13 15:44:24 +05:30
|
|
|
= link_to source.full_name, project_path(source), data: { qa_selector: 'forked_from_link' }
|
2019-02-15 15:39:39 +05:30
|
|
|
- else
|
2019-12-04 20:38:33 +05:30
|
|
|
= s_('ForkedFromProjectPath|Forked from an inaccessible project')
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
= render_if_exists "projects/home_mirror"
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
- if @project.badges.present?
|
2021-10-27 15:23:28 +05:30
|
|
|
.project-badges.mb-2
|
|
|
|
- @project.badges.each do |badge|
|
|
|
|
%a.gl-mr-3{ href: badge.rendered_link_url(@project),
|
|
|
|
target: '_blank',
|
|
|
|
rel: 'noopener noreferrer' }>
|
|
|
|
%img.project-badge{ src: badge.rendered_image_url(@project),
|
|
|
|
'aria-hidden': true,
|
|
|
|
alt: 'Project badge' }>
|