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

155 lines
8.4 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|
- can_edit_assignee = can?(current_user, :"admin_#{issuable.to_ability_name}", @project)
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')
- if can_edit_assignee
= link_to 'Edit', '#', class: 'edit-link pull-right'
.value.bold.hide-collapsed{data: {can_edit_assign: can_edit_assignee}}
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
2016-03-21 09:07:53 +00:00
%span.assign-yourself
No assignee
- if can_edit_assignee
%a.js-assign-yourself{ href: '#' }
\- assign yourself
.selectbox.hide-collapsed
= f.hidden_field 'assignee_id', value: issuable.assignee_id, id: 'issue_assignee_id'
2016-03-28 19:49:21 +00:00
= dropdown_tag('Select assignee', options: { toggle_class: 'js-user-search js-author-search', title: 'Assign to', 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: "#{issuable.to_ability_name}[assignee_id]", issue_update: issuable_json_path(issuable), ability_name: issuable.to_ability_name, null_user: true } })
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
= 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 js-extra-options', filter: true, dropdown_class: 'dropdown-menu-selectable', placeholder: 'Search milestones', data: { show_no: true, field_name: "#{issuable.to_ability_name}[milestone_id]", project_id: @project.id, issuable_id: issuable.id, milestones: namespace_project_milestones_path(@project.namespace, @project, :json), ability_name: issuable.to_ability_name, issue_update: issuable_json_path(issuable), 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
= 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|
2016-03-18 18:35:39 +00:00
= hidden_field_tag "#{issuable.to_ability_name}[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: "#{issuable.to_ability_name}[label_names][]", ability_name: issuable.to_ability_name, show_no: "true", show_any: "true", project_id: (@project.id if @project), issue_update: issuable_json_path(issuable), 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
2016-03-17 19:30:23 +00:00
= dropdown_title("Assign labels")
2016-03-12 20:37:02 +00:00
= 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('{"namespace":"#{@project.namespace.path}","path":"#{@project.path}"}');
2016-03-12 20:37:02 +00:00
new LabelsSelect();
new IssuableContext('#{current_user.to_json(only: [:username, :id, :name])}');
2016-03-21 09:07:53 +00:00
new Subscription('.subscription')
2016-03-27 15:04:51 +00:00
new Sidebar();