debian-mirror-gitlab/app/assets/javascripts/right_sidebar.js

254 lines
7.2 KiB
JavaScript
Raw Normal View History

2019-12-04 20:38:33 +05:30
/* eslint-disable func-names, no-var, consistent-return, one-var, prefer-template, no-else-return, no-param-reassign */
2017-08-17 22:00:37 +05:30
2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2017-09-10 17:25:29 +05:30
import _ from 'underscore';
2017-08-17 22:00:37 +05:30
import Cookies from 'js-cookie';
2018-03-17 18:26:18 +05:30
import flash from './flash';
import axios from './lib/utils/axios_utils';
2019-09-04 21:01:54 +05:30
import { sprintf, s__, __ } from './locale';
2018-03-17 18:26:18 +05:30
2019-12-04 20:38:33 +05:30
function Sidebar() {
2018-03-17 18:26:18 +05:30
this.toggleTodo = this.toggleTodo.bind(this);
this.sidebar = $('aside');
this.removeListeners();
this.addEventListeners();
}
2019-12-04 20:38:33 +05:30
Sidebar.initialize = function() {
2018-03-17 18:26:18 +05:30
if (!this.instance) {
2019-12-04 20:38:33 +05:30
this.instance = new Sidebar();
2018-03-17 18:26:18 +05:30
}
};
2018-12-13 13:39:08 +05:30
Sidebar.prototype.removeListeners = function() {
2018-03-17 18:26:18 +05:30
this.sidebar.off('click', '.sidebar-collapsed-icon');
this.sidebar.off('hidden.gl.dropdown');
$('.dropdown').off('loading.gl.dropdown');
$('.dropdown').off('loaded.gl.dropdown');
$(document).off('click', '.js-sidebar-toggle');
};
Sidebar.prototype.addEventListeners = function() {
const $document = $(document);
this.sidebar.on('click', '.sidebar-collapsed-icon', this, this.sidebarCollapseClicked);
this.sidebar.on('hidden.gl.dropdown', this, this.onSidebarDropdownHidden);
$('.dropdown').on('loading.gl.dropdown', this.sidebarDropdownLoading);
$('.dropdown').on('loaded.gl.dropdown', this.sidebarDropdownLoaded);
$document.on('click', '.js-sidebar-toggle', this.sidebarToggleClicked);
2018-12-13 13:39:08 +05:30
return $(document)
.off('click', '.js-issuable-todo')
.on('click', '.js-issuable-todo', this.toggleTodo);
2018-03-17 18:26:18 +05:30
};
2018-12-13 13:39:08 +05:30
Sidebar.prototype.sidebarToggleClicked = function(e, triggered) {
2018-10-15 14:42:47 +05:30
var $allGutterToggleIcons, $this, isExpanded, tooltipLabel;
2018-03-17 18:26:18 +05:30
e.preventDefault();
$this = $(this);
2018-10-15 14:42:47 +05:30
isExpanded = $this.find('i').hasClass('fa-angle-double-right');
tooltipLabel = isExpanded ? __('Expand sidebar') : __('Collapse sidebar');
2018-03-17 18:26:18 +05:30
$allGutterToggleIcons = $('.js-sidebar-toggle i');
2018-10-15 14:42:47 +05:30
if (isExpanded) {
2018-03-17 18:26:18 +05:30
$allGutterToggleIcons.removeClass('fa-angle-double-right').addClass('fa-angle-double-left');
2018-12-13 13:39:08 +05:30
$('aside.right-sidebar')
.removeClass('right-sidebar-expanded')
.addClass('right-sidebar-collapsed');
$('.layout-page')
.removeClass('right-sidebar-expanded')
.addClass('right-sidebar-collapsed');
2018-03-17 18:26:18 +05:30
} else {
$allGutterToggleIcons.removeClass('fa-angle-double-left').addClass('fa-angle-double-right');
2018-12-13 13:39:08 +05:30
$('aside.right-sidebar')
.removeClass('right-sidebar-collapsed')
.addClass('right-sidebar-expanded');
$('.layout-page')
.removeClass('right-sidebar-collapsed')
.addClass('right-sidebar-expanded');
2018-03-17 18:26:18 +05:30
}
2018-10-15 14:42:47 +05:30
$this.attr('data-original-title', tooltipLabel);
2018-03-17 18:26:18 +05:30
if (!triggered) {
2018-12-13 13:39:08 +05:30
Cookies.set('collapsed_gutter', $('.right-sidebar').hasClass('right-sidebar-collapsed'));
2018-03-17 18:26:18 +05:30
}
};
Sidebar.prototype.toggleTodo = function(e) {
2019-12-04 20:38:33 +05:30
var $this, ajaxType, url;
2018-03-17 18:26:18 +05:30
$this = $(e.currentTarget);
2019-02-15 15:39:39 +05:30
ajaxType = $this.data('deletePath') ? 'delete' : 'post';
if ($this.data('deletePath')) {
2019-09-04 21:01:54 +05:30
url = String($this.data('deletePath'));
2018-03-17 18:26:18 +05:30
} else {
2019-09-04 21:01:54 +05:30
url = String($this.data('createPath'));
2018-03-17 18:26:18 +05:30
}
$this.tooltip('hide');
2018-12-13 13:39:08 +05:30
$('.js-issuable-todo')
.disable()
.addClass('is-loading');
2018-03-17 18:26:18 +05:30
axios[ajaxType](url, {
2018-03-27 19:54:05 +05:30
issuable_id: $this.data('issuableId'),
issuable_type: $this.data('issuableType'),
2018-12-13 13:39:08 +05:30
})
.then(({ data }) => {
this.todoUpdateDone(data);
})
.catch(() =>
2019-10-12 21:52:04 +05:30
flash(
sprintf(__('There was an error %{message} todo.'), {
message:
ajaxType === 'post' ? s__('RightSidebar|adding a') : s__('RightSidebar|deleting the'),
}),
),
2018-12-13 13:39:08 +05:30
);
2018-03-17 18:26:18 +05:30
};
Sidebar.prototype.todoUpdateDone = function(data) {
const deletePath = data.delete_path ? data.delete_path : null;
const attrPrefix = deletePath ? 'mark' : 'todo';
const $todoBtns = $('.js-issuable-todo');
$(document).trigger('todo:toggle', data.count);
$todoBtns.each((i, el) => {
const $el = $(el);
const $elText = $el.find('.js-issuable-todo-inner');
2018-12-13 13:39:08 +05:30
$el
.removeClass('is-loading')
2018-03-17 18:26:18 +05:30
.enable()
2018-03-27 19:54:05 +05:30
.attr('aria-label', $el.data(`${attrPrefix}Text`))
2019-02-15 15:39:39 +05:30
.attr('title', $el.data(`${attrPrefix}Text`))
.data('deletePath', deletePath);
2018-03-17 18:26:18 +05:30
if ($el.hasClass('has-tooltip')) {
2018-11-08 19:23:39 +05:30
$el.tooltip('_fixTitle');
2018-03-17 18:26:18 +05:30
}
2017-09-10 17:25:29 +05:30
2019-02-15 15:39:39 +05:30
if (typeof $el.data('isCollapsed') !== 'undefined') {
2018-03-27 19:54:05 +05:30
$elText.html($el.data(`${attrPrefix}Icon`));
2018-03-17 18:26:18 +05:30
} else {
2018-03-27 19:54:05 +05:30
$elText.text($el.data(`${attrPrefix}Text`));
2018-03-17 18:26:18 +05:30
}
});
};
2019-12-04 20:38:33 +05:30
Sidebar.prototype.sidebarDropdownLoading = function() {
2018-03-17 18:26:18 +05:30
var $loading, $sidebarCollapsedIcon, i, img;
2018-12-13 13:39:08 +05:30
$sidebarCollapsedIcon = $(this)
.closest('.block')
.find('.sidebar-collapsed-icon');
2018-03-17 18:26:18 +05:30
img = $sidebarCollapsedIcon.find('img');
i = $sidebarCollapsedIcon.find('i');
$loading = $('<i class="fa fa-spinner fa-spin"></i>');
if (img.length) {
img.before($loading);
return img.hide();
} else if (i.length) {
i.before($loading);
return i.hide();
}
};
2019-12-04 20:38:33 +05:30
Sidebar.prototype.sidebarDropdownLoaded = function() {
2018-03-17 18:26:18 +05:30
var $sidebarCollapsedIcon, i, img;
2018-12-13 13:39:08 +05:30
$sidebarCollapsedIcon = $(this)
.closest('.block')
.find('.sidebar-collapsed-icon');
2018-03-17 18:26:18 +05:30
img = $sidebarCollapsedIcon.find('img');
$sidebarCollapsedIcon.find('i.fa-spin').remove();
i = $sidebarCollapsedIcon.find('i');
if (img.length) {
return img.show();
} else {
return i.show();
}
};
Sidebar.prototype.sidebarCollapseClicked = function(e) {
var $block, sidebar;
if ($(e.currentTarget).hasClass('dont-change-state')) {
return;
}
sidebar = e.data;
e.preventDefault();
$block = $(this).closest('.block');
return sidebar.openDropdown($block);
};
Sidebar.prototype.openDropdown = function(blockOrName) {
var $block;
$block = _.isString(blockOrName) ? this.getBlock(blockOrName) : blockOrName;
if (!this.isOpen()) {
this.setCollapseAfterUpdate($block);
this.toggleSidebar('open');
}
// Wait for the sidebar to trigger('click') open
// so it doesn't cause our dropdown to close preemptively
setTimeout(() => {
$block.find('.js-sidebar-dropdown-toggle').trigger('click');
});
};
Sidebar.prototype.setCollapseAfterUpdate = function($block) {
$block.addClass('collapse-after-update');
return $('.layout-page').addClass('with-overlay');
};
Sidebar.prototype.onSidebarDropdownHidden = function(e) {
var $block, sidebar;
sidebar = e.data;
e.preventDefault();
$block = $(e.target).closest('.block');
return sidebar.sidebarDropdownHidden($block);
};
Sidebar.prototype.sidebarDropdownHidden = function($block) {
if ($block.hasClass('collapse-after-update')) {
$block.removeClass('collapse-after-update');
$('.layout-page').removeClass('with-overlay');
return this.toggleSidebar('hide');
}
};
Sidebar.prototype.triggerOpenSidebar = function() {
return this.sidebar.find('.js-sidebar-toggle').trigger('click');
};
Sidebar.prototype.toggleSidebar = function(action) {
if (action == null) {
action = 'toggle';
}
if (action === 'toggle') {
this.triggerOpenSidebar();
}
if (action === 'open') {
if (!this.isOpen()) {
this.triggerOpenSidebar();
2016-09-13 17:45:13 +05:30
}
2018-03-17 18:26:18 +05:30
}
if (action === 'hide') {
if (this.isOpen()) {
return this.triggerOpenSidebar();
}
}
};
Sidebar.prototype.isOpen = function() {
return this.sidebar.is('.right-sidebar-expanded');
};
Sidebar.prototype.getBlock = function(name) {
2018-12-13 13:39:08 +05:30
return this.sidebar.find('.block.' + name);
2018-03-17 18:26:18 +05:30
};
2016-09-13 17:45:13 +05:30
2018-03-17 18:26:18 +05:30
export default Sidebar;