83 lines
2.7 KiB
JavaScript
83 lines
2.7 KiB
JavaScript
/* eslint-disable space-before-function-paren, no-var, one-var, one-var-declaration-per-line, new-parens, no-return-assign, new-cap, vars-on-top, semi, padded-blocks, max-len */
|
|
/* global Sidebar */
|
|
|
|
/*= require right_sidebar */
|
|
/*= require jquery */
|
|
/*= require js.cookie */
|
|
|
|
/*= require extensions/jquery.js */
|
|
|
|
(function() {
|
|
var $aside, $icon, $labelsIcon, $page, $toggle, assertSidebarState;
|
|
|
|
this.sidebar = null;
|
|
|
|
$aside = null;
|
|
|
|
$toggle = null;
|
|
|
|
$icon = null;
|
|
|
|
$page = null;
|
|
|
|
$labelsIcon = null;
|
|
|
|
assertSidebarState = function(state) {
|
|
var shouldBeCollapsed, shouldBeExpanded;
|
|
shouldBeExpanded = state === 'expanded';
|
|
shouldBeCollapsed = state === 'collapsed';
|
|
expect($aside.hasClass('right-sidebar-expanded')).toBe(shouldBeExpanded);
|
|
expect($page.hasClass('right-sidebar-expanded')).toBe(shouldBeExpanded);
|
|
expect($icon.hasClass('fa-angle-double-right')).toBe(shouldBeExpanded);
|
|
expect($aside.hasClass('right-sidebar-collapsed')).toBe(shouldBeCollapsed);
|
|
expect($page.hasClass('right-sidebar-collapsed')).toBe(shouldBeCollapsed);
|
|
return expect($icon.hasClass('fa-angle-double-left')).toBe(shouldBeCollapsed);
|
|
};
|
|
|
|
describe('RightSidebar', function() {
|
|
var fixtureName = 'issues/open-issue.html.raw';
|
|
fixture.preload(fixtureName);
|
|
beforeEach(function() {
|
|
fixture.load(fixtureName);
|
|
this.sidebar = new Sidebar;
|
|
$aside = $('.right-sidebar');
|
|
$page = $('.page-with-sidebar');
|
|
$icon = $aside.find('i');
|
|
$toggle = $aside.find('.js-sidebar-toggle');
|
|
return $labelsIcon = $aside.find('.sidebar-collapsed-icon');
|
|
});
|
|
it('should expand/collapse the sidebar when arrow is clicked', function() {
|
|
assertSidebarState('expanded');
|
|
$toggle.click();
|
|
assertSidebarState('collapsed');
|
|
$toggle.click();
|
|
assertSidebarState('expanded');
|
|
});
|
|
it('should float over the page and when sidebar icons clicked', function() {
|
|
$labelsIcon.click();
|
|
return assertSidebarState('expanded');
|
|
});
|
|
it('should collapse when the icon arrow clicked while it is floating on page', function() {
|
|
$labelsIcon.click();
|
|
assertSidebarState('expanded');
|
|
$toggle.click();
|
|
return assertSidebarState('collapsed');
|
|
});
|
|
|
|
it('should broadcast todo:toggle event when add todo clicked', function() {
|
|
spyOn(jQuery, 'ajax').and.callFake(function() {
|
|
var d = $.Deferred();
|
|
var response = fixture.load('todos.json');
|
|
d.resolve(response);
|
|
return d.promise();
|
|
});
|
|
|
|
var todoToggleSpy = spyOnEvent(document, 'todo:toggle');
|
|
|
|
$('.js-issuable-todo').click();
|
|
|
|
expect(todoToggleSpy.calls.count()).toEqual(1);
|
|
})
|
|
});
|
|
|
|
}).call(this);
|