2018-03-09 15:18:59 -05:00
|
|
|
import $ from 'jquery';
|
2018-02-02 06:16:57 -05:00
|
|
|
import MockAdapter from 'axios-mock-adapter';
|
2017-03-13 17:48:32 -04:00
|
|
|
import '~/commons/bootstrap';
|
2018-02-02 06:16:57 -05:00
|
|
|
import axios from '~/lib/utils/axios_utils';
|
2017-12-15 07:57:08 -05:00
|
|
|
import Sidebar from '~/right_sidebar';
|
2016-08-08 17:19:46 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
let $aside = null;
|
|
|
|
let $toggle = null;
|
|
|
|
let $icon = null;
|
|
|
|
let $page = null;
|
|
|
|
let $labelsIcon = null;
|
|
|
|
|
|
|
|
const assertSidebarState = function(state) {
|
|
|
|
const shouldBeExpanded = state === 'expanded';
|
|
|
|
const 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);
|
|
|
|
expect($icon.hasClass('fa-angle-double-left')).toBe(shouldBeCollapsed);
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('RightSidebar', function() {
|
|
|
|
describe('fixture tests', () => {
|
2019-03-26 12:03:28 -04:00
|
|
|
const fixtureName = 'issues/open-issue.html';
|
2018-10-17 03:13:26 -04:00
|
|
|
preloadFixtures(fixtureName);
|
|
|
|
loadJSONFixtures('todos/todos.json');
|
|
|
|
let mock;
|
|
|
|
|
|
|
|
beforeEach(function() {
|
|
|
|
loadFixtures(fixtureName);
|
|
|
|
mock = new MockAdapter(axios);
|
|
|
|
new Sidebar(); // eslint-disable-line no-new
|
|
|
|
$aside = $('.right-sidebar');
|
|
|
|
$page = $('.layout-page');
|
|
|
|
$icon = $aside.find('i');
|
|
|
|
$toggle = $aside.find('.js-sidebar-toggle');
|
|
|
|
$labelsIcon = $aside.find('.sidebar-collapsed-icon');
|
|
|
|
});
|
2018-02-02 07:36:51 -05:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
afterEach(() => {
|
|
|
|
mock.restore();
|
|
|
|
});
|
2018-02-02 07:36:51 -05:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
it('should expand/collapse the sidebar when arrow is clicked', function() {
|
|
|
|
assertSidebarState('expanded');
|
|
|
|
$toggle.click();
|
|
|
|
assertSidebarState('collapsed');
|
|
|
|
$toggle.click();
|
|
|
|
assertSidebarState('expanded');
|
|
|
|
});
|
2018-10-09 13:01:49 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
it('should float over the page and when sidebar icons clicked', function() {
|
|
|
|
$labelsIcon.click();
|
|
|
|
assertSidebarState('expanded');
|
|
|
|
});
|
2018-10-09 13:01:49 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
it('should collapse when the icon arrow clicked while it is floating on page', function() {
|
|
|
|
$labelsIcon.click();
|
|
|
|
assertSidebarState('expanded');
|
|
|
|
$toggle.click();
|
|
|
|
assertSidebarState('collapsed');
|
|
|
|
});
|
2017-09-28 08:27:52 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
it('should broadcast todo:toggle event when add todo clicked', function(done) {
|
|
|
|
const todos = getJSONFixture('todos/todos.json');
|
|
|
|
mock.onPost(/(.*)\/todos$/).reply(200, todos);
|
2017-09-28 08:27:52 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
const todoToggleSpy = spyOnEvent(document, 'todo:toggle');
|
2017-09-28 08:27:52 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
$('.issuable-sidebar-header .js-issuable-todo').click();
|
2017-09-28 08:27:52 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
setTimeout(() => {
|
|
|
|
expect(todoToggleSpy.calls.count()).toEqual(1);
|
2018-02-02 06:16:57 -05:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
done();
|
2017-09-28 08:27:52 -04:00
|
|
|
});
|
2018-10-17 03:13:26 -04:00
|
|
|
});
|
2017-09-28 08:27:52 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
it('should not hide collapsed icons', () => {
|
|
|
|
[].forEach.call(document.querySelectorAll('.sidebar-collapsed-icon'), el => {
|
|
|
|
expect(el.querySelector('.fa, svg').classList.contains('hidden')).toBeFalsy();
|
2017-09-28 08:27:52 -04:00
|
|
|
});
|
2016-07-24 16:45:11 -04:00
|
|
|
});
|
|
|
|
});
|
2018-10-17 03:13:26 -04:00
|
|
|
});
|