gitlab-org--gitlab-foss/app/assets/javascripts/issuable_context.js

60 lines
1.9 KiB
JavaScript
Raw Normal View History

import $ from 'jquery';
2017-03-11 06:45:34 +00:00
import Cookies from 'js-cookie';
import { GlBreakpointInstance as bp } from '@gitlab/ui/dist/utils';
2017-05-12 08:15:28 +00:00
import UsersSelect from './users_select';
2017-03-11 06:45:34 +00:00
export default class IssuableContext {
constructor(currentUser) {
this.userSelect = new UsersSelect(currentUser);
this.reviewersSelect = new UsersSelect(currentUser, '.js-reviewer-search');
import(/* webpackChunkName: 'select2' */ 'select2/select2')
.then(() => {
$('select.select2').select2({
width: 'resolve',
dropdownAutoWidth: true,
});
})
.catch(() => {});
$('.issuable-sidebar .inline-update').on('change', 'select', function onClickSelect() {
return $(this).submit();
});
$('.issuable-sidebar .inline-update').on('change', '.js-assignee', function onClickAssignee() {
return $(this).submit();
});
$(document)
.off('click', '.issuable-sidebar .dropdown-content a')
.on('click', '.issuable-sidebar .dropdown-content a', e => e.preventDefault());
$(document)
.off('click', '.edit-link')
.on('click', '.edit-link', function onClickEdit(e) {
2016-07-24 20:45:11 +00:00
e.preventDefault();
const $block = $(this).parents('.block');
const $selectbox = $block.find('.selectbox');
2016-07-24 20:45:11 +00:00
if ($selectbox.is(':visible')) {
$selectbox.hide();
$block.find('.value:not(.dont-hide)').show();
2016-07-24 20:45:11 +00:00
} else {
$selectbox.show();
$block.find('.value:not(.dont-hide)').hide();
2016-07-24 20:45:11 +00:00
}
2016-07-24 20:45:11 +00:00
if ($selectbox.is(':visible')) {
setTimeout(() => $block.find('.dropdown-menu-toggle').trigger('click'), 0);
2016-07-24 20:45:11 +00:00
}
});
window.addEventListener('beforeunload', () => {
// collapsed_gutter cookie hides the sidebar
const bpBreakpoint = bp.getBreakpointSize();
const supportedSizes = ['xs', 'sm', 'md'];
if (supportedSizes.includes(bpBreakpoint)) {
Cookies.set('collapsed_gutter', true);
}
});
}
}