Removes unused store in diffs mr refactor
Removes double export for actions in diffs module in mr refactor
This commit is contained in:
parent
acdac151f5
commit
8186bb3903
5 changed files with 59 additions and 69 deletions
|
@ -82,14 +82,5 @@ export const expandAllFiles = ({ commit }) => {
|
|||
commit(types.EXPAND_ALL_FILES);
|
||||
};
|
||||
|
||||
export default {
|
||||
setBaseConfig,
|
||||
fetchDiffFiles,
|
||||
setInlineDiffViewType,
|
||||
setParallelDiffViewType,
|
||||
showCommentForm,
|
||||
cancelCommentForm,
|
||||
loadMoreLines,
|
||||
loadCollapsedDiff,
|
||||
expandAllFiles,
|
||||
};
|
||||
// prevent babel-plugin-rewire from generating an invalid default during karma tests
|
||||
export default () => {};
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
import Vue from 'vue';
|
||||
import Vuex from 'vuex';
|
||||
import diffsModule from './modules';
|
||||
|
||||
Vue.use(Vuex);
|
||||
|
||||
export default new Vuex.Store({
|
||||
modules: {
|
||||
diffs: diffsModule,
|
||||
},
|
||||
});
|
|
@ -1,4 +1,4 @@
|
|||
import actions from '../actions';
|
||||
import * as actions from '../actions';
|
||||
import * as getters from '../getters';
|
||||
import mutations from '../mutations';
|
||||
import createState from './diff_state';
|
||||
|
|
5
changelogs/unreleased/48951-clean-up.yml
Normal file
5
changelogs/unreleased/48951-clean-up.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Removes unused vuex code in mr refactor and removes unneeded dependencies
|
||||
merge_request: 20499
|
||||
author:
|
||||
type: other
|
|
@ -1,12 +1,17 @@
|
|||
import Vue from 'vue';
|
||||
import $ from 'jquery';
|
||||
import Vuex from 'vuex';
|
||||
import { mountComponentWithStore } from 'spec/helpers';
|
||||
import store from '~/diffs/store';
|
||||
import ChangedFiles from '~/diffs/components/changed_files.vue';
|
||||
import diffsModule from '~/diffs/store/modules';
|
||||
import changedFiles from '~/diffs/components/changed_files.vue';
|
||||
|
||||
describe('ChangedFiles', () => {
|
||||
const Component = Vue.extend(ChangedFiles);
|
||||
const createComponent = props => mountComponentWithStore(Component, { props, store });
|
||||
const Component = Vue.extend(changedFiles);
|
||||
const store = new Vuex.Store({
|
||||
modules: {
|
||||
diffs: diffsModule,
|
||||
},
|
||||
});
|
||||
|
||||
let vm;
|
||||
|
||||
beforeEach(() => {
|
||||
|
@ -14,6 +19,7 @@ describe('ChangedFiles', () => {
|
|||
<div id="dummy-element"></div>
|
||||
<div class="js-tabs-affix"></div>
|
||||
`);
|
||||
|
||||
const props = {
|
||||
diffFiles: [
|
||||
{
|
||||
|
@ -26,7 +32,8 @@ describe('ChangedFiles', () => {
|
|||
},
|
||||
],
|
||||
};
|
||||
vm = createComponent(props);
|
||||
|
||||
vm = mountComponentWithStore(Component, { props, store });
|
||||
});
|
||||
|
||||
describe('with single file added', () => {
|
||||
|
@ -40,58 +47,56 @@ describe('ChangedFiles', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe('template', () => {
|
||||
describe('diff view mode buttons', () => {
|
||||
let inlineButton;
|
||||
let parallelButton;
|
||||
describe('diff view mode buttons', () => {
|
||||
let inlineButton;
|
||||
let parallelButton;
|
||||
|
||||
beforeEach(() => {
|
||||
inlineButton = vm.$el.querySelector('.js-inline-diff-button');
|
||||
parallelButton = vm.$el.querySelector('.js-parallel-diff-button');
|
||||
beforeEach(() => {
|
||||
inlineButton = vm.$el.querySelector('.js-inline-diff-button');
|
||||
parallelButton = vm.$el.querySelector('.js-parallel-diff-button');
|
||||
});
|
||||
|
||||
it('should have Inline and Side-by-side buttons', () => {
|
||||
expect(inlineButton).toBeDefined();
|
||||
expect(parallelButton).toBeDefined();
|
||||
});
|
||||
|
||||
it('should add active class to Inline button', done => {
|
||||
vm.$store.state.diffs.diffViewType = 'inline';
|
||||
|
||||
vm.$nextTick(() => {
|
||||
expect(inlineButton.classList.contains('active')).toEqual(true);
|
||||
expect(parallelButton.classList.contains('active')).toEqual(false);
|
||||
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should have Inline and Side-by-side buttons', () => {
|
||||
expect(inlineButton).toBeDefined();
|
||||
expect(parallelButton).toBeDefined();
|
||||
it('should toggle active state of buttons when diff view type changed', done => {
|
||||
vm.$store.state.diffs.diffViewType = 'parallel';
|
||||
|
||||
vm.$nextTick(() => {
|
||||
expect(inlineButton.classList.contains('active')).toEqual(false);
|
||||
expect(parallelButton.classList.contains('active')).toEqual(true);
|
||||
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should add active class to Inline button', done => {
|
||||
vm.$store.state.diffs.diffViewType = 'inline';
|
||||
|
||||
vm.$nextTick(() => {
|
||||
expect(inlineButton.classList.contains('active')).toEqual(true);
|
||||
expect(parallelButton.classList.contains('active')).toEqual(false);
|
||||
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should toggle active state of buttons when diff view type changed', done => {
|
||||
vm.$store.state.diffs.diffViewType = 'parallel';
|
||||
describe('clicking them', () => {
|
||||
it('should toggle the diff view type', done => {
|
||||
parallelButton.click();
|
||||
|
||||
vm.$nextTick(() => {
|
||||
expect(inlineButton.classList.contains('active')).toEqual(false);
|
||||
expect(parallelButton.classList.contains('active')).toEqual(true);
|
||||
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
describe('clicking them', () => {
|
||||
it('should toggle the diff view type', done => {
|
||||
$(parallelButton).click();
|
||||
inlineButton.click();
|
||||
|
||||
vm.$nextTick(() => {
|
||||
expect(inlineButton.classList.contains('active')).toEqual(false);
|
||||
expect(parallelButton.classList.contains('active')).toEqual(true);
|
||||
|
||||
$(inlineButton).click();
|
||||
|
||||
vm.$nextTick(() => {
|
||||
expect(inlineButton.classList.contains('active')).toEqual(true);
|
||||
expect(parallelButton.classList.contains('active')).toEqual(false);
|
||||
done();
|
||||
});
|
||||
expect(inlineButton.classList.contains('active')).toEqual(true);
|
||||
expect(parallelButton.classList.contains('active')).toEqual(false);
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue