Skip to content
Snippets Groups Projects
Commit 9c2bd8b7 authored by Jacob Schatz's avatar Jacob Schatz
Browse files

Sidebar collapse and expand work with whole page.

parent 0b030e00
No related branches found
No related tags found
1 merge request!2645Implement new design for issue and merge request right sidebar
Loading
@@ -223,6 +223,9 @@ $ ->
Loading
@@ -223,6 +223,9 @@ $ ->
.closest('aside') .closest('aside')
.removeClass('right-sidebar-expanded') .removeClass('right-sidebar-expanded')
.addClass('right-sidebar-collapsed') .addClass('right-sidebar-collapsed')
$('.page-with-sidebar')
.removeClass('right-sidebar-expanded')
.addClass('right-sidebar-collapsed')
else else
$thisIcon.removeClass('fa-angle-double-left') $thisIcon.removeClass('fa-angle-double-left')
.addClass('fa-angle-double-right') .addClass('fa-angle-double-right')
Loading
@@ -230,7 +233,11 @@ $ ->
Loading
@@ -230,7 +233,11 @@ $ ->
.closest('aside') .closest('aside')
.removeClass('right-sidebar-collapsed') .removeClass('right-sidebar-collapsed')
.addClass('right-sidebar-expanded') .addClass('right-sidebar-expanded')
$('.page-with-sidebar')
console.log('collapse') .removeClass('right-sidebar-collapsed')
.addClass('right-sidebar-expanded')
$.cookie("collapsed_gutter",
$('.right-sidebar')
.hasClass('right-sidebar-collapsed'), { path: '/' })
   
new Aside() new Aside()
Loading
@@ -204,6 +204,10 @@
Loading
@@ -204,6 +204,10 @@
padding-right: $gutter_width; padding-right: $gutter_width;
} }
   
@mixin collapsed-gutter {
padding-right: $sidebar_collapsed_width;
}
@mixin collapsed-sidebar { @mixin collapsed-sidebar {
padding-left: $sidebar_collapsed_width; padding-left: $sidebar_collapsed_width;
   
Loading
@@ -289,8 +293,13 @@
Loading
@@ -289,8 +293,13 @@
@media(min-width: $screen-md-max) { @media(min-width: $screen-md-max) {
   
.page-gutter { .page-gutter {
&.right-sidebar-collapsed {
@include collapsed-gutter;
}
&.right-sidebar-expanded {
@include expanded-gutter; @include expanded-gutter;
} }
}
   
.page-sidebar-collapsed { .page-sidebar-collapsed {
@include collapsed-sidebar; @include collapsed-sidebar;
Loading
Loading
Loading
@@ -72,6 +72,11 @@
Loading
@@ -72,6 +72,11 @@
@include clearfix; @include clearfix;
padding: $gl-padding 0; padding: $gl-padding 0;
border-bottom: 1px solid #F0F0F0; border-bottom: 1px solid #F0F0F0;
// This prevents the mess when resizing the sidebar
// of elements repositioning themselves..
width: 210px;
overflow-x: hidden;
// --
   
&:first-child { &:first-child {
padding-top: 5px; padding-top: 5px;
Loading
@@ -181,14 +186,26 @@
Loading
@@ -181,14 +186,26 @@
.assignee .title, .assignee .title,
.assignee .selectbox, .assignee .selectbox,
.assignee .value .author, .assignee .value .author,
.milestone, .milestone > *,
.labels, .labels > *,
.participants, .participants > *,
.light, .light > *,
.project-reference { .project-reference > * {
display: none; display: none;
} }
   
.assignee {
margin-left: -7px;
}
.gutter-toggle {
margin-left: -207px;
}
.sidebar-collapsed-icon {
display: block;
}
} }
   
&.right-sidebar-expanded { &.right-sidebar-expanded {
Loading
Loading
Loading
@@ -307,9 +307,19 @@ module ApplicationHelper
Loading
@@ -307,9 +307,19 @@ module ApplicationHelper
if project.nil? if project.nil?
nil nil
elsif current_controller?(:issues) elsif current_controller?(:issues)
project.issues.where("id > ?", id).first project.issues.where("id > ?", id).last
elsif current_controller?(:merge_requests) elsif current_controller?(:merge_requests)
project.merge_requests.where("id > ?", id).first project.merge_requests.where("id > ?", id).last
end
end
def has_next_issuable?(project, id)
if project.nil?
nil
elsif current_controller?(:issues)
project.issues.where("id > ?", id).last
elsif current_controller?(:merge_requests)
project.merge_requests.where("id > ?", id).last
end end
end end
   
Loading
@@ -317,9 +327,19 @@ module ApplicationHelper
Loading
@@ -317,9 +327,19 @@ module ApplicationHelper
if project.nil? if project.nil?
nil nil
elsif current_controller?(:issues) elsif current_controller?(:issues)
project.issues.where("id < ?", id).last project.issues.where("id < ?", id).first
elsif current_controller?(:merge_requests)
project.merge_requests.where("id < ?", id).first
end
end
def has_prev_issuable?(project, id)
if project.nil?
nil
elsif current_controller?(:issues)
project.issues.where("id < ?", id).first
elsif current_controller?(:merge_requests) elsif current_controller?(:merge_requests)
project.merge_requests.where("id < ?", id).last project.merge_requests.where("id < ?", id).first
end end
end end
   
Loading
Loading
Loading
@@ -3,6 +3,18 @@ module NavHelper
Loading
@@ -3,6 +3,18 @@ module NavHelper
cookies[:collapsed_nav] == 'true' cookies[:collapsed_nav] == 'true'
end end
   
def sidebar_gutter_collapsed_class
if cookies[:collapsed_gutter] == 'true'
"right-sidebar-collapsed"
else
"right-sidebar-expanded"
end
end
def sidebar_gutter_collapsed?
cookies[:collapsed_gutter] == 'true'
end
def nav_sidebar_class def nav_sidebar_class
if nav_menu_collapsed? if nav_menu_collapsed?
"sidebar-collapsed" "sidebar-collapsed"
Loading
@@ -20,8 +32,13 @@ module NavHelper
Loading
@@ -20,8 +32,13 @@ module NavHelper
end end
   
def page_gutter_class def page_gutter_class
if current_path?('merge_requests#show') || current_path?('issues#show') if current_path?('merge_requests#show') || current_path?('issues#show')
"page-gutter" if cookies[:collapsed_gutter] == 'true'
"page-gutter right-sidebar-collapsed"
else
"page-gutter right-sidebar-expanded"
end
end end
end end
   
Loading
Loading
.block.participants .block.participants
.sidebar-collapsed-icon
= icon('users')
.title .title
= pluralize participants.count, "participant" = pluralize participants.count, "participant"
- participants.each do |participant| - participants.each do |participant|
Loading
Loading
%aside.right-sidebar.right-sidebar-expanded %aside.right-sidebar{ class: sidebar_gutter_collapsed_class }
.issuable-sidebar .issuable-sidebar
.block .block
%span.issuable-count.pull-left %span.issuable-count.pull-left
Loading
@@ -7,13 +7,26 @@
Loading
@@ -7,13 +7,26 @@
= issuable_count(:all, @project) = issuable_count(:all, @project)
%span.pull-right %span.pull-right
%a.gutter-toggle{href: '#'} %a.gutter-toggle{href: '#'}
- if sidebar_gutter_collapsed?
= icon('angle-double-left')
- else
= icon('angle-double-right') = icon('angle-double-right')
.issuable-nav.pull-right.btn-group{role: 'group', "aria-label" => '...'} .issuable-nav.pull-right.btn-group{role: 'group', "aria-label" => '...'}
= link_to 'Prev', namespace_project_issue_path(namespace_id: @project, id: prev_issuable_for(@project, issuable.id)), class: 'btn btn-default' - if has_prev_issuable?(@project, issuable.id)
= link_to 'Next', namespace_project_issue_path(namespace_id: @project, id: next_issuable_for(@project, issuable.id)), class: 'btn btn-default' = link_to 'Prev', namespace_project_issue_path(@project.namespace, @project, prev_issuable_for(@project, issuable.id).try(:iid)), class: 'btn btn-default'
- else
%a.btn.btn-default.disabled{href: '#'}
Prev
- if has_next_issuable?(@project, issuable.id)
= link_to 'Next', namespace_project_issue_path(@project.namespace, @project, next_issuable_for(@project, issuable.id).try(:iid)), class: 'btn btn-default'
- else
%a.btn.btn-default.disabled{href: '#'}
Next
   
= form_for [@project.namespace.becomes(Namespace), @project, issuable], remote: true, html: {class: 'issuable-context-form inline-update js-issuable-update'} do |f| = form_for [@project.namespace.becomes(Namespace), @project, issuable], remote: true, html: {class: 'issuable-context-form inline-update js-issuable-update'} do |f|
.block.assignee .block.assignee
.sidebar-collapsed-icon
= icon('user')
.title .title
%label %label
Assignee Assignee
Loading
@@ -57,6 +70,8 @@
Loading
@@ -57,6 +70,8 @@
   
- if issuable.project.labels.any? - if issuable.project.labels.any?
.block.labels .block.labels
.sidebar-collapsed-icon
= icon('tags')
.title .title
%label Labels %label Labels
- if can?(current_user, :"admin_#{issuable.to_ability_name}", @project) - if can?(current_user, :"admin_#{issuable.to_ability_name}", @project)
Loading
@@ -77,6 +92,8 @@
Loading
@@ -77,6 +92,8 @@
- if current_user - if current_user
- subscribed = issuable.subscribed?(current_user) - subscribed = issuable.subscribed?(current_user)
.block.light .block.light
.sidebar-collapsed-icon
= icon('rss')
.title .title
%label.light Notifications %label.light Notifications
- subscribtion_status = subscribed ? 'subscribed' : 'unsubscribed' - subscribtion_status = subscribed ? 'subscribed' : 'unsubscribed'
Loading
@@ -90,6 +107,8 @@
Loading
@@ -90,6 +107,8 @@
   
- project_ref = cross_project_reference(@project, issuable) - project_ref = cross_project_reference(@project, issuable)
.block.project-reference .block.project-reference
.sidebar-collapsed-icon
= icon('clipboard')
.title .title
.cross-project-reference .cross-project-reference
%span %span
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment