2018-03-27 19:54:05 +05:30
|
|
|
import initIssuableSidebar from '~/init_issuable_sidebar';
|
|
|
|
import Issue from '~/issue';
|
2018-12-05 23:21:45 +05:30
|
|
|
import ShortcutsIssuable from '~/behaviors/shortcuts/shortcuts_issuable';
|
2018-03-27 19:54:05 +05:30
|
|
|
import ZenMode from '~/zen_mode';
|
|
|
|
import '~/notes/index';
|
2020-10-24 23:57:45 +05:30
|
|
|
import { store } from '~/notes/stores';
|
|
|
|
import initIssueableApp from '~/issue_show';
|
|
|
|
import initIssuableHeaderWarning from '~/vue_shared/components/issuable/init_issuable_header_warning';
|
2020-03-13 15:44:24 +05:30
|
|
|
import initSentryErrorStackTraceApp from '~/sentry_error_stack_trace';
|
2019-07-07 11:18:12 +05:30
|
|
|
import initRelatedMergeRequestsApp from '~/related_merge_requests';
|
2019-12-21 20:55:43 +05:30
|
|
|
import initVueIssuableSidebarApp from '~/issuable_sidebar/sidebar_bundle';
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
export default function() {
|
2018-11-08 19:23:39 +05:30
|
|
|
initIssueableApp();
|
2020-10-24 23:57:45 +05:30
|
|
|
initIssuableHeaderWarning(store);
|
2020-03-13 15:44:24 +05:30
|
|
|
initSentryErrorStackTraceApp();
|
2019-07-07 11:18:12 +05:30
|
|
|
initRelatedMergeRequestsApp();
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
// This will be removed when we remove the `design_management_moved` feature flag
|
|
|
|
// See https://gitlab.com/gitlab-org/gitlab/-/issues/223197
|
|
|
|
import(/* webpackChunkName: 'design_management' */ '~/design_management_legacy')
|
2020-07-28 23:09:34 +05:30
|
|
|
.then(module => module.default())
|
|
|
|
.catch(() => {});
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
import(/* webpackChunkName: 'design_management' */ '~/design_management')
|
2020-07-28 23:09:34 +05:30
|
|
|
.then(module => module.default())
|
|
|
|
.catch(() => {});
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
new Issue(); // eslint-disable-line no-new
|
|
|
|
new ShortcutsIssuable(); // eslint-disable-line no-new
|
|
|
|
new ZenMode(); // eslint-disable-line no-new
|
2019-12-21 20:55:43 +05:30
|
|
|
if (gon.features && gon.features.vueIssuableSidebar) {
|
|
|
|
initVueIssuableSidebarApp();
|
|
|
|
} else {
|
|
|
|
initIssuableSidebar();
|
|
|
|
}
|
2018-03-27 19:54:05 +05:30
|
|
|
}
|