Commit 0c93e470 authored by Winnie Hellmann's avatar Winnie Hellmann Committed by Clement Ho

Extract setIssueDetail() into issue boards store

parent f4cb5d2b
......@@ -72,7 +72,7 @@ export default {
// Need this because our jQuery very kindly disables buttons on ALL form submissions
$(this.$refs.submitButton).enable();
boardsStore.detail.issue = issue;
boardsStore.setIssueDetail(issue);
boardsStore.detail.list = this.list;
})
.catch(() => {
......
......@@ -168,7 +168,7 @@ export default () => {
});
}
boardsStore.detail.issue = newIssue;
boardsStore.setIssueDetail(newIssue);
},
clearDetailIssue() {
boardsStore.clearDetailIssue();
......
......@@ -212,7 +212,11 @@ const boardsStore = {
},
clearDetailIssue() {
this.detail.issue = {};
this.setIssueDetail({});
},
setIssueDetail(issueDetail) {
this.detail.issue = issueDetail;
},
};
......
......@@ -322,6 +322,17 @@ describe('Store', () => {
});
});
describe('setIssueDetail', () => {
it('sets issue details', () => {
boardsStore.detail.issue = 'some details';
const dummyValue = 'new details';
boardsStore.setIssueDetail(dummyValue);
expect(boardsStore.detail.issue).toEqual(dummyValue);
});
});
describe('startMoving', () => {
it('stores list and issue', () => {
const dummyIssue = 'some issue';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment