Merge branch 'boards-bundle-refactor' into 'master'
Refactored use of boards/boards_bundle.js and created a dispatcher import See merge request gitlab-org/gitlab-ce!17145
This commit is contained in:
commit
fc6ae0af6d
5 changed files with 9 additions and 5 deletions
|
@ -24,7 +24,7 @@ import './components/new_list_dropdown';
|
|||
import './components/modal/index';
|
||||
import '../vue_shared/vue_resource_interceptor';
|
||||
|
||||
$(() => {
|
||||
export default () => {
|
||||
const $boardApp = document.getElementById('board-app');
|
||||
const Store = gl.issueBoards.BoardsStore;
|
||||
const ModalStore = gl.issueBoards.ModalStore;
|
||||
|
@ -236,4 +236,4 @@ $(() => {
|
|||
</div>
|
||||
`,
|
||||
});
|
||||
});
|
||||
};
|
|
@ -1,7 +1,9 @@
|
|||
import UsersSelect from '~/users_select';
|
||||
import ShortcutsNavigation from '~/shortcuts_navigation';
|
||||
import initBoards from '~/boards';
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
new UsersSelect(); // eslint-disable-line no-new
|
||||
new ShortcutsNavigation(); // eslint-disable-line no-new
|
||||
initBoards();
|
||||
});
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
- content_for :page_specific_javascripts do
|
||||
= webpack_bundle_tag 'common_vue'
|
||||
= webpack_bundle_tag 'boards'
|
||||
|
||||
%script#js-board-template{ type: "text/x-template" }= render "shared/boards/components/board"
|
||||
%script#js-board-modal-filter{ type: "text/x-template" }= render "shared/issuable/search_bar", type: :boards_modal
|
||||
|
|
|
@ -52,7 +52,8 @@ var config = {
|
|||
entry: {
|
||||
balsamiq_viewer: './blob/balsamiq_viewer.js',
|
||||
blob: './blob_edit/blob_bundle.js',
|
||||
boards: './boards/boards_bundle.js',
|
||||
common: './commons/index.js',
|
||||
common_vue: './vue_shared/vue_resource_interceptor.js',
|
||||
cycle_analytics: './cycle_analytics/cycle_analytics_bundle.js',
|
||||
commit_pipelines: './commit/pipelines/pipelines_bundle.js',
|
||||
diff_notes: './diff_notes/diff_notes_bundle.js',
|
||||
|
|
|
@ -113,7 +113,9 @@ if (process.env.BABEL_ENV === 'coverage') {
|
|||
// exempt these files from the coverage report
|
||||
const troubleMakers = [
|
||||
'./blob_edit/blob_bundle.js',
|
||||
'./boards/boards_bundle.js',
|
||||
'./boards/components/modal/empty_state.js',
|
||||
'./boards/components/modal/footer.js',
|
||||
'./boards/components/modal/header.js',
|
||||
'./cycle_analytics/cycle_analytics_bundle.js',
|
||||
'./cycle_analytics/components/stage_plan_component.js',
|
||||
'./cycle_analytics/components/stage_staging_component.js',
|
||||
|
|
Loading…
Reference in a new issue