2020-11-24 15:15:51 +05:30
|
|
|
- is_project_overview = local_assigns.fetch(:is_project_overview, false)
|
|
|
|
|
|
|
|
- if Feature.enabled?(:vue_issuables_list, @project) && !is_project_overview
|
2020-10-24 23:57:45 +05:30
|
|
|
- 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)
|
2021-01-03 14:25:43 +05:30
|
|
|
- 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))
|
2020-10-24 23:57:45 +05:30
|
|
|
.js-issuables-list{ data: { endpoint: data_endpoint,
|
|
|
|
'empty-state-meta': data_empty_state_meta.to_json,
|
2020-07-28 23:09:34 +05:30
|
|
|
'can-bulk-edit': @can_bulk_update.to_json,
|
2020-10-24 23:57:45 +05:30
|
|
|
'sort-key': @sort,
|
2021-01-03 14:25:43 +05:30
|
|
|
type: type } }
|
2020-07-28 23:09:34 +05:30
|
|
|
- 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
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
- if @issues.present?
|
2021-01-03 14:25:43 +05:30
|
|
|
= paginate_collection @issues, total_pages: @total_pages
|