gitlab-org--gitlab-foss/app/views/shared/issuable/_sidebar.html.haml

149 lines
8.0 KiB
Plaintext
Raw Normal View History

%aside.right-sidebar{ class: sidebar_gutter_collapsed_class }
2016-01-27 22:38:19 +00:00
.issuable-sidebar
.block.issuable-sidebar-header
%span.issuable-count.hide-collapsed.pull-left
= issuable.iid
2016-01-28 03:50:18 +00:00
of
= issuables_count(issuable)
%a.gutter-toggle.pull-right.js-sidebar-toggle{href: '#'}
= sidebar_gutter_toggle_icon
.issuable-nav.hide-collapsed.pull-right.btn-group{role: 'group', "aria-label" => '...'}
- if prev_issuable = prev_issuable_for(issuable)
= link_to 'Prev', [@project.namespace.becomes(Namespace), @project, prev_issuable], class: 'btn btn-default prev-btn'
- else
%a.btn.btn-default.disabled{href: '#'}
Prev
- if next_issuable = next_issuable_for(issuable)
= link_to 'Next', [@project.namespace.becomes(Namespace), @project, next_issuable], class: 'btn btn-default next-btn'
- else
%a.btn.btn-default.disabled{href: '#'}
Next
2016-01-28 03:50:18 +00:00
= form_for [@project.namespace.becomes(Namespace), @project, issuable], remote: true, html: {class: 'issuable-context-form inline-update js-issuable-update'} do |f|
2016-01-27 22:38:19 +00:00
.block.assignee
.sidebar-collapsed-icon.sidebar-collapsed-user{data: {toggle: "tooltip", placement: "left", container: "body"}, title: (issuable.assignee.to_reference if issuable.assignee)}
2016-01-29 01:36:48 +00:00
- if issuable.assignee
= link_to_member(@project, issuable.assignee, size: 24)
2016-01-29 01:36:48 +00:00
- else
= icon('user')
.title.hide-collapsed
Assignee
=icon('spinner spin', class: 'block-loading')
2016-01-27 22:38:19 +00:00
- if can?(current_user, :"admin_#{issuable.to_ability_name}", @project)
= link_to 'Edit', '#', class: 'edit-link pull-right'
.value.bold.hide-collapsed
2016-01-27 22:38:19 +00:00
- if issuable.assignee
= link_to_member(@project, issuable.assignee, size: 32) do
- if issuable.instance_of?(MergeRequest) && !issuable.can_be_merged_by?(issuable.assignee)
%span.pull-right.cannot-be-merged{ data: { toggle: 'tooltip', placement: 'left' }, title: 'Not allowed to merge' }
= icon('exclamation-triangle')
%span.username
= issuable.assignee.to_reference
2016-01-27 22:38:19 +00:00
- else
.light None
.selectbox.hide-collapsed
= f.hidden_field 'assignee_id', value: issuable.assignee.id, id: nil
= dropdown_tag("Select assignee", options: { toggle_class: "js-user-search js-author-search", title: "Filter by user", filter: true, dropdown_class: "dropdown-menu-user dropdown-menu-selectable dropdown-menu-author", placeholder: "Search users", data: { first_user: (current_user.username if current_user), current_user: true, project_id: (@project.id if @project), field_name: "issue[assignee_id]", issue_update: namespace_project_issue_path(@project.namespace, @project, issuable.id, :json) } })
2016-01-27 22:38:19 +00:00
.block.milestone
.sidebar-collapsed-icon
2016-02-17 14:02:34 +00:00
= icon('clock-o')
2016-01-29 01:36:48 +00:00
%span
- if issuable.milestone
= issuable.milestone.title
- else
No
.title.hide-collapsed
Milestone
2016-03-12 16:34:26 +00:00
=icon('spinner spin', class: 'block-loading')
- if can?(current_user, :"admin_#{issuable.to_ability_name}", @project)
= link_to 'Edit', '#', class: 'edit-link pull-right'
.value.bold.hide-collapsed
2016-01-27 22:38:19 +00:00
- if issuable.milestone
= link_to namespace_project_milestone_path(@project.namespace, @project, issuable.milestone) do
= issuable.milestone.title
- else
.light None
.selectbox.hide-collapsed
= f.hidden_field 'milestone_id', value: issuable.milestone.id, id: nil
= dropdown_tag("Milestone", options: { title: "Assign milestone", toggle_class: 'js-milestone-select', filter: true, dropdown_class: "dropdown-menu-selectable", placeholder: "Search milestones", data: { show_no: true, field_name: "issue[milestone_id]", project_id: @project.id, issuable_id: issuable.id, milestones: namespace_project_milestones_path(@project.namespace, @project, :json), issue_update: namespace_project_issue_path(@project.namespace, @project, issuable.id, :json), use_id: true }})
2016-01-27 22:38:19 +00:00
- if issuable.project.labels.any?
.block.labels
.sidebar-collapsed-icon
= icon('tags')
2016-01-29 01:36:48 +00:00
%span
= issuable.labels.count
.title.hide-collapsed
Labels
2016-03-12 20:37:02 +00:00
=icon('spinner spin', class: 'block-loading')
2016-01-27 22:38:19 +00:00
- if can?(current_user, :"admin_#{issuable.to_ability_name}", @project)
= link_to 'Edit', '#', class: 'edit-link pull-right'
2016-03-24 11:38:00 +00:00
.value.bold.issuable-show-labels.hide-collapsed{ class: ("has-labels" if issuable.labels.any?) }
2016-01-27 22:38:19 +00:00
- if issuable.labels.any?
- issuable.labels.each do |label|
= link_to_label(label, type: issuable.to_ability_name)
2016-01-27 22:38:19 +00:00
- else
.light None
.selectbox.hide-collapsed
- issuable.labels.each do |label|
= hidden_field_tag 'issue[label_names][]', label.id, id: nil
2016-03-12 20:37:02 +00:00
.dropdown
%button.dropdown-menu-toggle.js-label-select.js-multiselect{type: "button", data: {toggle: "dropdown", field_name: "issue[label_names][]", show_no: "true", show_any: "true", selected: issuable.label_names.join(","), project_id: (@project.id if @project), issue_update: namespace_project_issue_path(@project.namespace, @project, issuable.id, :json), labels: (namespace_project_labels_path(@project.namespace, @project, :json) if @project)}}
2016-03-12 20:37:02 +00:00
%span.dropdown-toggle-text
Label
= icon('chevron-down')
.dropdown-menu.dropdown-select.dropdown-menu-paging.dropdown-menu-labels.dropdown-menu-selectable
.dropdown-page-one
= dropdown_title("Filter by label")
= dropdown_filter("Search labels")
= dropdown_content
- if @project
= dropdown_footer do
%ul.dropdown-footer-list
- if can? current_user, :admin_label, @project
%li
%a.dropdown-toggle-page{href: "#"}
Create new
%li
= link_to namespace_project_labels_path(@project.namespace, @project) do
- if can? current_user, :admin_label, @project
Manage labels
- else
View labels
2016-01-27 22:38:19 +00:00
= render "shared/issuable/participants", participants: issuable.participants(current_user)
- if current_user
- subscribed = issuable.subscribed?(current_user)
.block.light.subscription{data: {url: toggle_subscription_path(issuable)}}
.sidebar-collapsed-icon
= icon('rss')
.title.hide-collapsed
Notifications
2016-01-27 22:38:19 +00:00
- subscribtion_status = subscribed ? 'subscribed' : 'unsubscribed'
%button.btn.btn-block.btn-gray.subscribe-button.hide-collapsed{:type => 'button'}
2016-01-27 22:38:19 +00:00
%span= subscribed ? 'Unsubscribe' : 'Subscribe'
.subscription-status.hide-collapsed{data: {status: subscribtion_status}}
2016-01-27 22:38:19 +00:00
.unsubscribed{class: ( 'hidden' if subscribed )}
You're not receiving notifications from this thread.
.subscribed{class: ( 'hidden' unless subscribed )}
You're receiving notifications because you're subscribed to this thread.
- project_ref = cross_project_reference(@project, issuable)
.block.project-reference
.sidebar-collapsed-icon
= clipboard_button(clipboard_text: project_ref)
.cross-project-reference.hide-collapsed
2016-01-27 22:38:19 +00:00
%span
Reference:
%cite{title: project_ref}
= project_ref
= clipboard_button(clipboard_text: project_ref)
2016-01-27 22:38:19 +00:00
:javascript
new MilestoneSelect();
2016-03-12 20:37:02 +00:00
new LabelsSelect();
new IssuableContext();