/* eslint-disable no-new */ import MilestoneSelect from './milestone_select'; import LabelsSelect from './labels_select'; import IssuableContext from './issuable_context'; import Sidebar from './right_sidebar'; import DueDateSelectors from './due_date_select'; import { mountSidebarLabels, getSidebarOptions } from '~/sidebar/mount_sidebar'; 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); new DueDateSelectors(); Sidebar.initialize(); mountSidebarLabels(); };