Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_issues.html.haml « issues « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef602da72e58103d53bdee3d4a8cfd7897604050 (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
- is_project_overview = local_assigns.fetch(:is_project_overview, false)

- if Feature.enabled?(:vue_issuables_list, @project) && !is_project_overview
  - data_endpoint = local_assigns.fetch(:data_endpoint, expose_path(api_v4_projects_issues_path(id: @project.id)))
  - default_empty_state_meta = { create_issue_path: new_project_issue_path(@project), svg_path: image_path('illustrations/issues.svg') }
  - data_empty_state_meta = local_assigns.fetch(:data_empty_state_meta, default_empty_state_meta)
  - type = local_assigns.fetch(:type, 'issues')
  - if type == 'issues' && use_startup_call?
    - add_page_startup_api_call(api_v4_projects_issues_path(id: @project.id, params: startup_call_params))
  .js-issuables-list{ data: { endpoint: data_endpoint,
    'empty-state-meta': data_empty_state_meta.to_json,
    'can-bulk-edit': @can_bulk_update.to_json,
    'sort-key': @sort,
    type: type,
    'scoped-labels-available': scoped_labels_available?(@project).to_json } }
- else
  - empty_state_path = local_assigns.fetch(:empty_state_path, 'shared/empty_states/issues')
  %ul.content-list.issues-list.issuable-list{ class: ("manual-ordering" if @sort == 'relative_position') }
    = render partial: "projects/issues/issue", collection: @issues
    - if @issues.blank?
      = render empty_state_path

  - if @issues.present?
    = paginate_collection @issues, total_pages: @total_pages