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

27 lines
748 B
JavaScript
Raw Normal View History

/* eslint-disable no-new */
2017-12-28 15:07:05 -05:00
import { mountSidebarLabels, getSidebarOptions } from '~/sidebar/mount_sidebar';
import DueDateSelectors from './due_date_select';
import IssuableContext from './issuable_context';
import LabelsSelect from './labels_select';
import MilestoneSelect from './milestone_select';
2017-12-15 07:57:08 -05:00
import Sidebar from './right_sidebar';
2017-10-18 07:31:01 -04:00
export default () => {
const sidebarOptEl = document.querySelector('.js-sidebar-options');
if (!sidebarOptEl) return;
const sidebarOptions = getSidebarOptions(sidebarOptEl);
new MilestoneSelect({
full_path: sidebarOptions.fullPath,
});
new LabelsSelect();
new IssuableContext(sidebarOptions.currentUser);
2017-10-18 07:31:01 -04:00
new DueDateSelectors();
2017-12-15 07:57:08 -05:00
Sidebar.initialize();
mountSidebarLabels();
};