summaryrefslogtreecommitdiff
path: root/app/views/shared/boards/_show.html.haml
blob: ce48691166b8084f6e74f121a28ed6becaf3cb1f (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
- board = local_assigns.fetch(:board, nil)
- group = local_assigns.fetch(:group, false)
-# TODO: Move group_id and can_admin_list to the board store
  See: https://gitlab.com/gitlab-org/gitlab/-/issues/213082
- can_admin_list = can?(current_user, :admin_list, current_board_parent) == true
- @no_breadcrumb_container = true
- @no_container = true
- @content_class = "issue-boards-content js-focus-mode-board"
- breadcrumb_title _("Issue Boards")
- page_title("#{board.name}", _("Boards"))
- add_page_specific_style 'page_bundles/boards'

- content_for :page_specific_javascripts do

  %script#js-board-modal-filter{ type: "text/x-template" }= render "shared/issuable/search_bar", type: :boards_modal, show_sorting_dropdown: false
  %script#js-board-promotion{ type: "text/x-template" }= render_if_exists "shared/promotions/promote_issue_board"

= render 'shared/issuable/search_bar', type: :boards, board: board
#board-app.boards-app.position-relative{ "v-cloak" => "true", data: board_data, ":class" => "{ 'is-compact': detailIssueVisible }" }
  - if Feature.enabled?(:boards_with_swimlanes, current_board_parent, default_enabled: true) || Feature.enabled?(:graphql_board_lists, current_board_parent)
    %board-content{ "v-cloak" => "true",
      "ref" => "board_content",
      ":lists" => "state.lists",
      ":can-admin-list" => can_admin_list,
      ":disabled" => "disabled" }
  - else
    .boards-list.w-100.py-3.px-2.text-nowrap{ data: { qa_selector: "boards_list" } }
      .boards-app-loading.w-100.text-center{ "v-if" => "loading" }
        = loading_icon(css_class: 'gl-mb-3')
      %board{ "v-cloak" => "true",
        "v-for" => "list in state.lists",
        "ref" => "board",
        ":can-admin-list" => can_admin_list,
        ":list" => "list",
        ":disabled" => "disabled",
        ":key" => "list.id" }
  = render "shared/boards/components/sidebar", group: group
  %board-settings-sidebar{ ":can-admin-list" => can_admin_list }
  - if @project
    %board-add-issues-modal{ "new-issue-path" => new_project_issue_path(@project),
      "milestone-path" => milestones_filter_dropdown_path,
      "label-path" => labels_filter_path_with_defaults,
      "empty-state-svg" => image_path('illustrations/issues.svg'),
      ":project-id" => @project.id }