Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
a0189744
Commit
a0189744
authored
Oct 10, 2018
by
Mike Greiling
Committed by
Fatih Acet
Oct 10, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert remaining issue board components into ES module syntax
parent
62bd3045
Changes
31
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
261 additions
and
261 deletions
+261
-261
app/assets/javascripts/boards/components/board.js
app/assets/javascripts/boards/components/board.js
+13
-16
app/assets/javascripts/boards/components/board_blank_state.vue
...ssets/javascripts/boards/components/board_blank_state.vue
+7
-8
app/assets/javascripts/boards/components/board_card.vue
app/assets/javascripts/boards/components/board_card.vue
+4
-5
app/assets/javascripts/boards/components/board_delete.js
app/assets/javascripts/boards/components/board_delete.js
+5
-9
app/assets/javascripts/boards/components/board_list.vue
app/assets/javascripts/boards/components/board_list.vue
+38
-29
app/assets/javascripts/boards/components/board_new_issue.vue
app/assets/javascripts/boards/components/board_new_issue.vue
+3
-4
app/assets/javascripts/boards/components/board_sidebar.js
app/assets/javascripts/boards/components/board_sidebar.js
+7
-11
app/assets/javascripts/boards/components/issue_card_inner.vue
...assets/javascripts/boards/components/issue_card_inner.vue
+4
-5
app/assets/javascripts/boards/components/modal/footer.vue
app/assets/javascripts/boards/components/modal/footer.vue
+2
-1
app/assets/javascripts/boards/components/modal/lists_dropdown.vue
...ts/javascripts/boards/components/modal/lists_dropdown.vue
+2
-1
app/assets/javascripts/boards/components/new_list_dropdown.js
...assets/javascripts/boards/components/new_list_dropdown.js
+10
-14
app/assets/javascripts/boards/components/sidebar/remove_issue.vue
...ts/javascripts/boards/components/sidebar/remove_issue.vue
+2
-3
app/assets/javascripts/boards/filtered_search_boards.js
app/assets/javascripts/boards/filtered_search_boards.js
+2
-1
app/assets/javascripts/boards/index.js
app/assets/javascripts/boards/index.js
+29
-33
app/assets/javascripts/boards/mixins/sortable_default_options.js
...ets/javascripts/boards/mixins/sortable_default_options.js
+11
-14
app/assets/javascripts/boards/models/issue.js
app/assets/javascripts/boards/models/issue.js
+2
-1
app/assets/javascripts/boards/models/list.js
app/assets/javascripts/boards/models/list.js
+5
-4
app/assets/javascripts/boards/stores/boards_store.js
app/assets/javascripts/boards/stores/boards_store.js
+15
-4
app/assets/javascripts/due_date_select.js
app/assets/javascripts/due_date_select.js
+4
-3
app/assets/javascripts/labels_select.js
app/assets/javascripts/labels_select.js
+5
-4
app/assets/javascripts/milestone_select.js
app/assets/javascripts/milestone_select.js
+4
-3
spec/javascripts/boards/board_blank_state_spec.js
spec/javascripts/boards/board_blank_state_spec.js
+8
-8
spec/javascripts/boards/board_card_spec.js
spec/javascripts/boards/board_card_spec.js
+11
-11
spec/javascripts/boards/board_list_spec.js
spec/javascripts/boards/board_list_spec.js
+3
-4
spec/javascripts/boards/board_new_issue_spec.js
spec/javascripts/boards/board_new_issue_spec.js
+5
-5
spec/javascripts/boards/boards_store_spec.js
spec/javascripts/boards/boards_store_spec.js
+48
-48
spec/javascripts/boards/components/board_spec.js
spec/javascripts/boards/components/board_spec.js
+2
-2
spec/javascripts/boards/issue_card_spec.js
spec/javascripts/boards/issue_card_spec.js
+0
-1
spec/javascripts/boards/issue_spec.js
spec/javascripts/boards/issue_spec.js
+2
-2
spec/javascripts/boards/list_spec.js
spec/javascripts/boards/list_spec.js
+6
-6
spec/javascripts/boards/mock_data.js
spec/javascripts/boards/mock_data.js
+2
-1
No files found.
app/assets/javascripts/boards/components/board.js
View file @
a0189744
...
...
@@ -4,20 +4,17 @@ import { n__ } from '~/locale';
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
Tooltip
from
'
~/vue_shared/directives/tooltip
'
;
import
AccessorUtilities
from
'
../../lib/utils/accessor
'
;
import
boardList
from
'
./board_list.vue
'
;
import
BoardBlankState
from
'
./board_blank_state.vue
'
;
import
'
./board_delete
'
;
import
BoardDelete
from
'
./board_delete
'
;
import
BoardList
from
'
./board_list.vue
'
;
import
boardsStore
from
'
../stores/boards_store
'
;
import
{
getBoardSortableDefaultOptions
,
sortableEnd
}
from
'
../mixins/sortable_default_options
'
;
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
window
.
gl
=
window
.
gl
||
{};
window
.
gl
.
issueBoards
=
window
.
gl
.
issueBoards
||
{};
gl
.
issueBoards
.
Board
=
Vue
.
extend
({
export
default
Vue
.
extend
({
components
:
{
boardList
,
'
board-delete
'
:
gl
.
issueBoards
.
BoardDelete
,
BoardBlankState
,
BoardDelete
,
BoardList
,
Icon
,
},
directives
:
{
...
...
@@ -47,8 +44,8 @@ gl.issueBoards.Board = Vue.extend({
},
data
()
{
return
{
detailIssue
:
Store
.
detail
,
filter
:
Store
.
filter
,
detailIssue
:
boards
Store
.
detail
,
filter
:
boards
Store
.
filter
,
};
},
computed
:
{
...
...
@@ -70,20 +67,20 @@ gl.issueBoards.Board = Vue.extend({
}
},
mounted
()
{
this
.
sortableOptions
=
g
l
.
issueBoards
.
g
etBoardSortableDefaultOptions
({
this
.
sortableOptions
=
getBoardSortableDefaultOptions
({
disabled
:
this
.
disabled
,
group
:
'
boards
'
,
draggable
:
'
.is-draggable
'
,
handle
:
'
.js-board-handle
'
,
onEnd
:
(
e
)
=>
{
gl
.
issueBoards
.
on
End
();
sortable
End
();
if
(
e
.
newIndex
!==
undefined
&&
e
.
oldIndex
!==
e
.
newIndex
)
{
const
order
=
this
.
sortable
.
toArray
();
const
list
=
Store
.
findList
(
'
id
'
,
parseInt
(
e
.
item
.
dataset
.
id
,
10
));
const
list
=
boards
Store
.
findList
(
'
id
'
,
parseInt
(
e
.
item
.
dataset
.
id
,
10
));
this
.
$nextTick
(()
=>
{
Store
.
moveList
(
list
,
order
);
boards
Store
.
moveList
(
list
,
order
);
});
}
}
...
...
app/assets/javascripts/boards/components/board_blank_state.vue
View file @
a0189744
...
...
@@ -2,8 +2,7 @@
/* global ListLabel */
import
_
from
'
underscore
'
;
import
Cookies
from
'
js-cookie
'
;
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
import
boardsStore
from
'
../stores/boards_store
'
;
export
default
{
data
()
{
...
...
@@ -19,7 +18,7 @@ export default {
this
.
clearBlankState
();
this
.
predefinedLabels
.
forEach
((
label
,
i
)
=>
{
Store
.
addList
({
boards
Store
.
addList
({
title
:
label
.
title
,
position
:
i
,
list_type
:
'
label
'
,
...
...
@@ -30,14 +29,14 @@ export default {
});
});
Store
.
state
.
lists
=
_
.
sortBy
(
Store
.
state
.
lists
,
'
position
'
);
boardsStore
.
state
.
lists
=
_
.
sortBy
(
boards
Store
.
state
.
lists
,
'
position
'
);
// Save the labels
gl
.
boardService
.
generateDefaultLists
()
.
then
(
res
=>
res
.
data
)
.
then
((
data
)
=>
{
data
.
forEach
((
listObj
)
=>
{
const
list
=
Store
.
findList
(
'
title
'
,
listObj
.
title
);
const
list
=
boards
Store
.
findList
(
'
title
'
,
listObj
.
title
);
list
.
id
=
listObj
.
id
;
list
.
label
.
id
=
listObj
.
label
.
id
;
...
...
@@ -48,14 +47,14 @@ export default {
});
})
.
catch
(()
=>
{
Store
.
removeList
(
undefined
,
'
label
'
);
boards
Store
.
removeList
(
undefined
,
'
label
'
);
Cookies
.
remove
(
'
issue_board_welcome_hidden
'
,
{
path
:
''
,
});
Store
.
addBlankState
();
boards
Store
.
addBlankState
();
});
},
clearBlankState
:
Store
.
removeBlankState
.
bind
(
Store
),
clearBlankState
:
boardsStore
.
removeBlankState
.
bind
(
boards
Store
),
},
};
...
...
app/assets/javascripts/boards/components/board_card.vue
View file @
a0189744
...
...
@@ -2,8 +2,7 @@
/* eslint-disable vue/require-default-prop */
import
IssueCardInner
from
'
./issue_card_inner.vue
'
;
import
eventHub
from
'
../eventhub
'
;
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
import
boardsStore
from
'
../stores/boards_store
'
;
export
default
{
name
:
'
BoardsIssueCard
'
,
...
...
@@ -42,7 +41,7 @@
data
()
{
return
{
showDetail
:
false
,
detailIssue
:
Store
.
detail
,
detailIssue
:
boards
Store
.
detail
,
};
},
computed
:
{
...
...
@@ -63,11 +62,11 @@
if
(
this
.
showDetail
)
{
this
.
showDetail
=
false
;
if
(
Store
.
detail
.
issue
&&
Store
.
detail
.
issue
.
id
===
this
.
issue
.
id
)
{
if
(
boardsStore
.
detail
.
issue
&&
boards
Store
.
detail
.
issue
.
id
===
this
.
issue
.
id
)
{
eventHub
.
$emit
(
'
clearDetailIssue
'
);
}
else
{
eventHub
.
$emit
(
'
newDetailIssue
'
,
this
.
issue
);
Store
.
detail
.
list
=
this
.
list
;
boards
Store
.
detail
.
list
=
this
.
list
;
}
}
},
...
...
app/assets/javascripts/boards/components/board_delete.js
View file @
a0189744
/* eslint-disable no-alert */
import
$
from
'
jquery
'
;
import
Vue
from
'
vue
'
;
window
.
gl
=
window
.
gl
||
{};
window
.
gl
.
issueBoards
=
window
.
gl
.
issueBoards
||
{};
gl
.
issueBoards
.
BoardDelete
=
Vue
.
extend
({
export
default
Vue
.
extend
({
props
:
{
list
:
{
type
:
Object
,
...
...
@@ -14,12 +9,13 @@ gl.issueBoards.BoardDelete = Vue.extend({
},
},
methods
:
{
deleteBoard
()
{
deleteBoard
()
{
$
(
this
.
$el
).
tooltip
(
'
hide
'
);
// eslint-disable-next-line no-alert
if
(
window
.
confirm
(
'
Are you sure you want to delete this list?
'
))
{
this
.
list
.
destroy
();
}
}
}
}
,
}
,
});
app/assets/javascripts/boards/components/board_list.vue
View file @
a0189744
...
...
@@ -3,8 +3,8 @@ import Sortable from 'sortablejs';
import
boardNewIssue
from
'
./board_new_issue.vue
'
;
import
boardCard
from
'
./board_card.vue
'
;
import
eventHub
from
'
../eventhub
'
;
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
import
boardsStore
from
'
../stores/boards_store
'
;
import
{
getBoardSortableDefaultOptions
,
sortableStart
}
from
'
../mixins/sortable_default_options
'
;
export
default
{
name
:
'
BoardList
'
,
...
...
@@ -46,7 +46,7 @@ export default {
data
()
{
return
{
scrollOffset
:
250
,
filters
:
Store
.
state
.
filters
,
filters
:
boards
Store
.
state
.
filters
,
showCount
:
false
,
showIssueForm
:
false
,
};
...
...
@@ -61,13 +61,14 @@ export default {
},
issues
()
{
this
.
$nextTick
(()
=>
{
if
(
this
.
scrollHeight
()
<=
this
.
listHeight
()
&&
this
.
list
.
issuesSize
>
this
.
list
.
issues
.
length
)
{
if
(
this
.
scrollHeight
()
<=
this
.
listHeight
()
&&
this
.
list
.
issuesSize
>
this
.
list
.
issues
.
length
)
{
this
.
list
.
page
+=
1
;
this
.
list
.
getIssues
(
false
)
.
catch
(()
=>
{
// TODO: handle request error
});
this
.
list
.
getIssues
(
false
).
catch
(()
=>
{
// TODO: handle request error
});
}
if
(
this
.
scrollHeight
()
>
Math
.
ceil
(
this
.
listHeight
()))
{
...
...
@@ -83,7 +84,7 @@ export default {
eventHub
.
$on
(
`scroll-board-list-
${
this
.
list
.
id
}
`
,
this
.
scrollToTop
);
},
mounted
()
{
const
options
=
g
l
.
issueBoards
.
g
etBoardSortableDefaultOptions
({
const
options
=
getBoardSortableDefaultOptions
({
scroll
:
true
,
disabled
:
this
.
disabled
,
filter
:
'
.board-list-count, .is-disabled
'
,
...
...
@@ -108,7 +109,8 @@ export default {
// So from there, we can get reference to actual container
// and thus the container type to enable Copy or Move
if
(
e
.
target
)
{
const
containerEl
=
e
.
target
.
closest
(
'
.js-board-list
'
)
||
e
.
target
.
querySelector
(
'
.js-board-list
'
);
const
containerEl
=
e
.
target
.
closest
(
'
.js-board-list
'
)
||
e
.
target
.
querySelector
(
'
.js-board-list
'
);
const
toBoardType
=
containerEl
.
dataset
.
boardType
;
const
cloneActions
=
{
label
:
[
'
milestone
'
,
'
assignee
'
],
...
...
@@ -120,8 +122,9 @@ export default {
const
fromBoardType
=
this
.
list
.
type
;
// For each list we check if the destination list is
// a the list were we should clone the issue
const
shouldClone
=
Object
.
entries
(
cloneActions
).
some
(
entry
=>
(
fromBoardType
===
entry
[
0
]
&&
entry
[
1
].
includes
(
toBoardType
)));
const
shouldClone
=
Object
.
entries
(
cloneActions
).
some
(
entry
=>
fromBoardType
===
entry
[
0
]
&&
entry
[
1
].
includes
(
toBoardType
),
);
if
(
shouldClone
)
{
return
'
clone
'
;
...
...
@@ -133,28 +136,36 @@ export default {
},
revertClone
:
true
,
},
onStart
:
(
e
)
=>
{
onStart
:
e
=>
{
const
card
=
this
.
$refs
.
issue
[
e
.
oldIndex
];
card
.
showDetail
=
false
;
Store
.
moving
.
list
=
card
.
list
;
Store
.
moving
.
issue
=
Store
.
moving
.
list
.
findIssue
(
+
e
.
item
.
dataset
.
issueId
);
boards
Store
.
moving
.
list
=
card
.
list
;
boardsStore
.
moving
.
issue
=
boards
Store
.
moving
.
list
.
findIssue
(
+
e
.
item
.
dataset
.
issueId
);
gl
.
issueBoards
.
on
Start
();
sortable
Start
();
},
onAdd
:
(
e
)
=>
{
gl
.
issueBoards
.
BoardsStore
.
moveIssueToList
(
Store
.
moving
.
list
,
this
.
list
,
Store
.
moving
.
issue
,
e
.
newIndex
);
onAdd
:
e
=>
{
boardsStore
.
moveIssueToList
(
boardsStore
.
moving
.
list
,
this
.
list
,
boardsStore
.
moving
.
issue
,
e
.
newIndex
,
);
this
.
$nextTick
(()
=>
{
e
.
item
.
remove
();
});
},
onUpdate
:
(
e
)
=>
{
const
sortedArray
=
this
.
sortable
.
toArray
()
.
filter
(
id
=>
id
!==
'
-1
'
);
gl
.
issueBoards
.
BoardsStore
.
moveIssueInList
(
this
.
list
,
Store
.
moving
.
issue
,
e
.
oldIndex
,
e
.
newIndex
,
sortedArray
);
onUpdate
:
e
=>
{
const
sortedArray
=
this
.
sortable
.
toArray
().
filter
(
id
=>
id
!==
'
-1
'
);
boardsStore
.
moveIssueInList
(
this
.
list
,
boardsStore
.
moving
.
issue
,
e
.
oldIndex
,
e
.
newIndex
,
sortedArray
,
);
},
onMove
(
e
)
{
return
!
e
.
related
.
classList
.
contains
(
'
board-list-count
'
);
...
...
@@ -192,16 +203,14 @@ export default {
if
(
getIssues
)
{
this
.
list
.
loadingMore
=
true
;
getIssues
.
then
(
loadingDone
)
.
catch
(
loadingDone
);
getIssues
.
then
(
loadingDone
).
catch
(
loadingDone
);
}
},
toggleForm
()
{
this
.
showIssueForm
=
!
this
.
showIssueForm
;
},
onScroll
()
{
if
(
!
this
.
list
.
loadingMore
&&
(
this
.
scrollTop
()
>
this
.
scrollHeight
()
-
this
.
scrollOffset
)
)
{
if
(
!
this
.
list
.
loadingMore
&&
this
.
scrollTop
()
>
this
.
scrollHeight
()
-
this
.
scrollOffset
)
{
this
.
loadNextPage
();
}
},
...
...
app/assets/javascripts/boards/components/board_new_issue.vue
View file @
a0189744
...
...
@@ -4,8 +4,7 @@ import { Button } from '@gitlab-org/gitlab-ui';
import
eventHub
from
'
../eventhub
'
;
import
ProjectSelect
from
'
./project_select.vue
'
;
import
ListIssue
from
'
../models/issue
'
;
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
import
boardsStore
from
'
../stores/boards_store
'
;
export
default
{
name
:
'
BoardNewIssue
'
,
...
...
@@ -68,8 +67,8 @@ export default {
// Need this because our jQuery very kindly disables buttons on ALL form submissions
$
(
this
.
$refs
.
submitButton
).
enable
();
Store
.
detail
.
issue
=
issue
;
Store
.
detail
.
list
=
this
.
list
;
boards
Store
.
detail
.
issue
=
issue
;
boards
Store
.
detail
.
list
=
this
.
list
;
})
.
catch
(()
=>
{
// Need this because our jQuery very kindly disables buttons on ALL form submissions
...
...
app/assets/javascripts/boards/components/board_sidebar.js
View file @
a0189744
...
...
@@ -14,13 +14,9 @@ import IssuableContext from '../../issuable_context';
import
LabelsSelect
from
'
../../labels_select
'
;
import
Subscriptions
from
'
../../sidebar/components/subscriptions/subscriptions.vue
'
;
import
MilestoneSelect
from
'
../../milestone_select
'
;
import
boardsStore
from
'
../stores/boards_store
'
;
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
window
.
gl
=
window
.
gl
||
{};
window
.
gl
.
issueBoards
=
window
.
gl
.
issueBoards
||
{};
gl
.
issueBoards
.
BoardSidebar
=
Vue
.
extend
({
export
default
Vue
.
extend
({
components
:
{
AssigneeTitle
,
Assignees
,
...
...
@@ -35,7 +31,7 @@ gl.issueBoards.BoardSidebar = Vue.extend({
},
data
()
{
return
{
detail
:
Store
.
detail
,
detail
:
boards
Store
.
detail
,
issue
:
{},
list
:
{},
loadingAssignees
:
false
,
...
...
@@ -117,18 +113,18 @@ gl.issueBoards.BoardSidebar = Vue.extend({
this
.
saveAssignees
();
},
removeAssignee
(
a
)
{
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
removeAssignee
(
a
);
b
oardsStore
.
detail
.
issue
.
removeAssignee
(
a
);
},
addAssignee
(
a
)
{
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
addAssignee
(
a
);
b
oardsStore
.
detail
.
issue
.
addAssignee
(
a
);
},
removeAllAssignees
()
{
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
removeAllAssignees
();
b
oardsStore
.
detail
.
issue
.
removeAllAssignees
();
},
saveAssignees
()
{
this
.
loadingAssignees
=
true
;
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
update
()
b
oardsStore
.
detail
.
issue
.
update
()
.
then
(()
=>
{
this
.
loadingAssignees
=
false
;
})
...
...
app/assets/javascripts/boards/components/issue_card_inner.vue
View file @
a0189744
...
...
@@ -3,8 +3,7 @@
import
UserAvatarLink
from
'
../../vue_shared/components/user_avatar/user_avatar_link.vue
'
;
import
eventHub
from
'
../eventhub
'
;
import
tooltip
from
'
../../vue_shared/directives/tooltip
'
;
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
import
boardsStore
from
'
../stores/boards_store
'
;
export
default
{
components
:
{
...
...
@@ -110,7 +109,7 @@
filterByLabel
(
label
,
e
)
{
if
(
!
this
.
updateFilters
)
return
;
const
filterPath
=
gl
.
issueBoards
.
B
oardsStore
.
filter
.
path
.
split
(
'
&
'
);
const
filterPath
=
b
oardsStore
.
filter
.
path
.
split
(
'
&
'
);
const
labelTitle
=
encodeURIComponent
(
label
.
title
);
const
param
=
`label_name[]=
${
labelTitle
}
`
;
const
labelIndex
=
filterPath
.
indexOf
(
param
);
...
...
@@ -122,9 +121,9 @@
filterPath
.
splice
(
labelIndex
,
1
);
}
gl
.
issueBoards
.
B
oardsStore
.
filter
.
path
=
filterPath
.
join
(
'
&
'
);
b
oardsStore
.
filter
.
path
=
filterPath
.
join
(
'
&
'
);
Store
.
updateFiltersUrl
();
boards
Store
.
updateFiltersUrl
();
eventHub
.
$emit
(
'
updateTokens
'
);
},
...
...
app/assets/javascripts/boards/components/modal/footer.vue
View file @
a0189744
...
...
@@ -5,6 +5,7 @@ import ListsDropdown from './lists_dropdown.vue';
import
{
pluralize
}
from
'
../../../lib/utils/text_utility
'
;
import
ModalStore
from
'
../../stores/modal_store
'
;
import
modalMixin
from
'
../../mixins/modal_mixins
'
;
import
boardsStore
from
'
../../stores/boards_store
'
;
export
default
{
components
:
{
...
...
@@ -14,7 +15,7 @@ export default {
data
()
{
return
{
modal
:
ModalStore
.
store
,
state
:
gl
.
issueBoards
.
B
oardsStore
.
state
,
state
:
b
oardsStore
.
state
,
};
},
computed
:
{
...
...
app/assets/javascripts/boards/components/modal/lists_dropdown.vue
View file @
a0189744
<
script
>
import
{
Link
}
from
'
@gitlab-org/gitlab-ui
'
;
import
ModalStore
from
'
../../stores/modal_store
'
;
import
boardsStore
from
'
../../stores/boards_store
'
;
export
default
{
components
:
{
...
...
@@ -9,7 +10,7 @@ export default {
data
()
{
return
{
modal
:
ModalStore
.
store
,
state
:
gl
.
issueBoards
.
B
oardsStore
.
state
,
state
:
b
oardsStore
.
state
,
};
},
computed
:
{
...
...
app/assets/javascripts/boards/components/new_list_dropdown.js
View file @
a0189744
...
...
@@ -4,16 +4,12 @@ import $ from 'jquery';
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
_
from
'
underscore
'
;
import
CreateLabelDropdown
from
'
../../create_label
'
;
window
.
gl
=
window
.
gl
||
{};
window
.
gl
.
issueBoards
=
window
.
gl
.
issueBoards
||
{};
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
import
boardsStore
from
'
../stores/boards_store
'
;
$
(
document
).
off
(
'
created.label
'
).
on
(
'
created.label
'
,
(
e
,
label
)
=>
{
Store
.
new
({
boards
Store
.
new
({
title
:
label
.
title
,
position
:
Store
.
state
.
lists
.
length
-
2
,
position
:
boards
Store
.
state
.
lists
.
length
-
2
,
list_type
:
'
label
'
,
label
:
{
id
:
label
.
id
,
...
...
@@ -23,7 +19,7 @@ $(document).off('created.label').on('created.label', (e, label) => {
});
});
gl
.
issueBoards
.
newListDropdownInit
=
()
=>
{
export
default
function
initNewListDropdown
()
{
$
(
'
.js-new-board-list
'
).
each
(
function
()
{
const
$this
=
$
(
this
);
new
CreateLabelDropdown
(
$this
.
closest
(
'
.dropdown
'
).
find
(
'
.dropdown-new-label
'
),
$this
.
data
(
'
namespacePath
'
),
$this
.
data
(
'
projectPath
'
));
...
...
@@ -36,7 +32,7 @@ gl.issueBoards.newListDropdownInit = () => {
});
},
renderRow
(
label
)
{
const
active
=
Store
.
findList
(
'
title
'
,
label
.
title
);
const
active
=
boards
Store
.
findList
(
'
title
'
,
label
.
title
);
const
$li
=
$
(
'
<li />
'
);
const
$a
=
$
(
'
<a />
'
,
{
class
:
(
active
?
`is-active js-board-list-
${
active
.
id
}
`
:
''
),
...
...
@@ -62,10 +58,10 @@ gl.issueBoards.newListDropdownInit = () => {
const
label
=
options
.
selectedObj
;
e
.
preventDefault
();
if
(
!
Store
.
findList
(
'
title
'
,
label
.
title
))
{
Store
.
new
({
if
(
!
boards
Store
.
findList
(
'
title
'
,
label
.
title
))
{
boards
Store
.
new
({
title
:
label
.
title
,
position
:
Store
.
state
.
lists
.
length
-
2
,
position
:
boards
Store
.
state
.
lists
.
length
-
2
,
list_type
:
'
label
'
,
label
:
{
id
:
label
.
id
,
...
...
@@ -74,9 +70,9 @@ gl.issueBoards.newListDropdownInit = () => {
},
});
Store
.
state
.
lists
=
_
.
sortBy
(
Store
.
state
.
lists
,
'
position
'
);
boardsStore
.
state
.
lists
=
_
.
sortBy
(
boards
Store
.
state
.
lists
,
'
position
'
);
}
},
});
});
}
;
}
app/assets/javascripts/boards/components/sidebar/remove_issue.vue
View file @
a0189744
...
...
@@ -2,8 +2,7 @@
import
Vue
from
'
vue
'
;
import
Flash
from
'
../../../flash
'
;
import
{
__
}
from
'
../../../locale
'
;
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
import
boardsStore
from
'
../../stores/boards_store
'
;
export
default
Vue
.
extend
({
props
:
{
...
...
@@ -49,7 +48,7 @@
list
.
removeIssue
(
issue
);
});
Store
.
detail
.
issue
=
{};
boards
Store
.
detail
.
issue
=
{};
},
/**
* Build the default patch request.
...
...
app/assets/javascripts/boards/filtered_search_boards.js
View file @
a0189744
import
FilteredSearchContainer
from
'
../filtered_search/container
'
;
import
FilteredSearchManager
from
'
../filtered_search/filtered_search_manager
'
;
import
boardsStore
from
'
./stores/boards_store
'
;
export
default
class
FilteredSearchBoards
extends
FilteredSearchManager
{
constructor
(
store
,
updateUrl
=
false
,
cantEdit
=
[])
{
...
...
@@ -23,7 +24,7 @@ export default class FilteredSearchBoards extends FilteredSearchManager {
this
.
store
.
path
=
path
.
substr
(
1
);
if
(
this
.
updateUrl
)
{
gl
.
issueBoards
.
B
oardsStore
.
updateFiltersUrl
();
b
oardsStore
.
updateFiltersUrl
();
}
}
...
...
app/assets/javascripts/boards/index.js
View file @
a0189744
...
...
@@ -14,24 +14,22 @@ import './models/issue';
import
'
./models/list
'
;
import
'
./models/milestone
'
;
import
'
./models/project
'
;
import
'
./stores/boards_store
'
;
import
boardsStore
from
'
./stores/boards_store
'
;
import
ModalStore
from
'
./stores/modal_store
'
;
import
BoardService
from
'
./services/board_service
'
;
import
modalMixin
from
'
./mixins/modal_mixins
'
;
import
'
./mixins/sortable_default_options
'
;
import
'
./filters/due_date_filters
'
;
import
'
./components/board
'
;
import
'
./components/board_sidebar
'
;
import
'
./components/new_list_dropdown
'
;
import
Board
from
'
./components/board
'
;
import
BoardSidebar
from
'
./components/board_sidebar
'
;
import
initNewListDropdown
from
'
./components/new_list_dropdown
'
;
import
BoardAddIssuesModal
from
'
./components/modal/index.vue
'
;
import
'
~/vue_shared/vue_resource_interceptor
'
;
import
{
NavigationType
}
from
'
~/lib/utils/common_utils
'
;
let
issueBoardsApp
;
export
default
()
=>
{
const
$boardApp
=
document
.
getElementById
(
'
board-app
'
);
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
window
.
gl
=
window
.
gl
||
{};
// check for browser back and trigger a hard reload to circumvent browser caching.
window
.
addEventListener
(
'
pageshow
'
,
(
event
)
=>
{
...
...
@@ -43,25 +41,21 @@ export default () => {
}
});
if
(
gl
.
I
ssueBoardsApp
)
{
gl
.
I
ssueBoardsApp
.
$destroy
(
true
);
if
(
i
ssueBoardsApp
)
{
i
ssueBoardsApp
.
$destroy
(
true
);
}
Store
.
create
();
// hack to allow sidebar scripts like milestone_select manipulate the BoardsStore
gl
.
issueBoards
.
boardStoreIssueSet
=
(...
args
)
=>
Vue
.
set
(
Store
.
detail
.
issue
,
...
args
);
gl
.
issueBoards
.
boardStoreIssueDelete
=
(...
args
)
=>
Vue
.
delete
(
Store
.
detail
.
issue
,
...
args
);
boardsStore
.
create
();
gl
.
I
ssueBoardsApp
=
new
Vue
({
i
ssueBoardsApp
=
new
Vue
({
el
:
$boardApp
,
components
:
{
board
:
gl
.
issueBoards
.
Board
,
'
board-sidebar
'
:
gl
.
issueBoards
.
BoardSidebar
,
Board
,
BoardSidebar
,
BoardAddIssuesModal
,
},
data
:
{
state
:
Store
.
state
,
state
:
boards
Store
.
state
,
loading
:
true
,
boardsEndpoint
:
$boardApp
.
dataset
.
boardsEndpoint
,
listsEndpoint
:
$boardApp
.
dataset
.
listsEndpoint
,
...
...
@@ -70,7 +64,7 @@ export default () => {
issueLinkBase
:
$boardApp
.
dataset
.
issueLinkBase
,
rootPath
:
$boardApp
.
dataset
.
rootPath
,
bulkUpdatePath
:
$boardApp
.
dataset
.
bulkUpdatePath
,
detailIssue
:
Store
.
detail
,
detailIssue
:
boards
Store
.
detail
,
defaultAvatar
:
$boardApp
.
dataset
.
defaultAvatar
,
},
computed
:
{
...
...
@@ -85,7 +79,7 @@ export default () => {
bulkUpdatePath
:
this
.
bulkUpdatePath
,
boardId
:
this
.
boardId
,
});
Store
.
rootPath
=
this
.
boardsEndpoint
;
boards
Store
.
rootPath
=
this
.
boardsEndpoint
;
eventHub
.
$on
(
'
updateTokens
'
,
this
.
updateTokens
);
eventHub
.
$on
(
'
newDetailIssue
'
,
this
.
updateDetailIssue
);
...
...
@@ -99,16 +93,16 @@ export default () => {
sidebarEventHub
.
$off
(
'
toggleSubscription
'
,
this
.
toggleSubscription
);
},
mounted
()
{
this
.
filterManager
=
new
FilteredSearchBoards
(
Store
.
filter
,
true
,
Store
.
cantEdit
);
this
.
filterManager
=
new
FilteredSearchBoards
(
boardsStore
.
filter
,
true
,
boards
Store
.
cantEdit
);
this
.
filterManager
.
setup
();
Store
.
disabled
=
this
.
disabled
;
boards
Store
.
disabled
=
this
.
disabled
;
gl
.
boardService
.
all
()
.
then
(
res
=>
res
.
data
)
.
then
(
data
=>
{
data
.
forEach
(
board
=>
{
const
list
=
Store
.
addList
(
board
,
this
.
defaultAvatar
);
const
list
=
boards
Store
.
addList
(
board
,
this
.
defaultAvatar
);
if
(
list
.
type
===
'
closed
'
)
{
list
.
position
=
Infinity
;
...
...
@@ -119,7 +113,7 @@ export default () => {
this
.
state
.
lists
=
_
.
sortBy
(
this
.
state
.
lists
,
'
position
'
);
Store
.
addBlankState
();
boards
Store
.
addBlankState
();
this
.
loading
=
false
;
})
.
catch
(()
=>
{
...
...
@@ -148,13 +142,13 @@ export default () => {
});
}
Store
.
detail
.
issue
=
newIssue
;
boards
Store
.
detail
.
issue
=
newIssue
;
},
clearDetailIssue
()
{
Store
.
detail
.
issue
=
{};
boards
Store
.
detail
.
issue
=
{};
},
toggleSubscription
(
id
)
{
const
{
issue
}
=
Store
.
detail
;
const
{
issue
}
=
boards
Store
.
detail
;
if
(
issue
.
id
===
id
&&
issue
.
toggleSubscriptionEndpoint
)
{
issue
.
setFetchingState
(
'
subscriptions
'
,
true
);
BoardService
.
toggleIssueSubscription
(
issue
.
toggleSubscriptionEndpoint
)
...
...
@@ -173,26 +167,28 @@ export default () => {
},
});
gl
.
IssueBoardsSearch
=
new
Vue
({
// eslint-disable-next-line no-new
new
Vue
({
el
:
document
.
getElementById
(
'
js-add-list
'
),
data
:
{
filters
:
Store
.
state
.
filters
,
filters
:
boards
Store
.
state
.
filters
,
},
mounted
()
{
gl
.
issueBoards
.
newListDropdownInit
();
initNewListDropdown
();
},
});
const
issueBoardsModal
=
document
.
getElementById
(
'
js-add-issues-btn
'
);
if
(
issueBoardsModal
)
{
gl
.
IssueBoardsModalAddBtn
=
new
Vue
({
// eslint-disable-next-line no-new
new
Vue
({
el
:
issueBoardsModal
,
mixins
:
[
modalMixin
],
data
()
{
return
{
modal
:
ModalStore
.
store
,
store
:
Store
.
state
,
store
:
boards
Store
.
state
,
canAdminList
:
this
.
$options
.
el
.
hasAttribute
(
'
data-can-admin-list
'
),
};
},
...
...
app/assets/javascripts/boards/mixins/sortable_default_options.js
View file @
a0189744
...
...
@@ -3,32 +3,29 @@
import
$
from
'
jquery
'
;
import
sortableConfig
from
'
../../sortable/sortable_config
'
;
window
.
gl
=
window
.
gl
||
{};
window
.
gl
.
issueBoards
=
window
.
gl
.
issueBoards
||
{};
gl
.
issueBoards
.
onStart
=
()
=>
{
export
function
sortableStart
()
{
$
(
'
.has-tooltip
'
).
tooltip
(
'
hide
'
)
.
tooltip
(
'
disable
'
);
document
.
body
.
classList
.
add
(
'
is-dragging
'
);
}
;
}
gl
.
issueBoards
.
onEnd
=
()
=>
{
export
function
sortableEnd
()
{
$
(
'
.has-tooltip
'
).
tooltip
(
'
enable
'
);
document
.
body
.
classList
.
remove
(
'
is-dragging
'
);
}
;
}
gl
.
issueBoards
.
touchEnabled
=
(
'
ontouchstart
'
in
window
)
||
window
.
DocumentTouch
&&
document
instanceof
DocumentTouch
;
export
function
getBoardSortableDefaultOptions
(
obj
)
{
const
touchEnabled
=
(
'
ontouchstart
'
in
window
)
||
window
.
DocumentTouch
&&
document
instanceof
DocumentTouch
;
gl
.
issueBoards
.
getBoardSortableDefaultOptions
=
(
obj
)
=>
{
const
defaultSortOptions
=
Object
.
assign
({},
sortableConfig
,
{
filter
:
'
.board-delete, .btn
'
,
delay
:
gl
.
issueBoards
.
touchEnabled
?
100
:
0
,
scrollSensitivity
:
gl
.
issueBoards
.
touchEnabled
?
60
:
100
,
delay
:
touchEnabled
?
100
:
0
,
scrollSensitivity
:
touchEnabled
?
60
:
100
,
scrollSpeed
:
20
,
onStart
:
gl
.
issueBoards
.
on
Start
,
onEnd
:
gl
.
issueBoards
.
on
End
,
onStart
:
sortable
Start
,
onEnd
:
sortable
End
,
});
Object
.
keys
(
obj
).
forEach
((
key
)
=>
{
defaultSortOptions
[
key
]
=
obj
[
key
];
});
return
defaultSortOptions
;
}
;
}
app/assets/javascripts/boards/models/issue.js
View file @
a0189744
...
...
@@ -6,6 +6,7 @@
import
Vue
from
'
vue
'
;
import
'
~/vue_shared/models/label
'
;
import
IssueProject
from
'
./project
'
;
import
boardsStore
from
'
../stores/boards_store
'
;
class
ListIssue
{
constructor
(
obj
,
defaultAvatar
)
{
...
...
@@ -86,7 +87,7 @@ class ListIssue {
}
getLists
()
{
return
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
filter
(
list
=>
list
.
findIssue
(
this
.
id
));
return
b
oardsStore
.
state
.
lists
.
filter
(
list
=>
list
.
findIssue
(
this
.
id
));
}
updateData
(
newData
)
{
...
...
app/assets/javascripts/boards/models/list.js
View file @
a0189744
...
...
@@ -5,6 +5,7 @@ import { __ } from '~/locale';
import
ListLabel
from
'
~/vue_shared/models/label
'
;
import
ListAssignee
from
'
~/vue_shared/models/assignee
'
;
import
{
urlParamsToObject
}
from
'
~/lib/utils/common_utils
'
;
import
boardsStore
from
'
../stores/boards_store
'
;
const
PER_PAGE
=
20
;
...
...
@@ -89,9 +90,9 @@ class List {
}
destroy
()
{
const
index
=
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
indexOf
(
this
);
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
splice
(
index
,
1
);
gl
.
issueBoards
.
B
oardsStore
.
updateNewListDropdown
(
this
.
id
);
const
index
=
b
oardsStore
.
state
.
lists
.
indexOf
(
this
);
b
oardsStore
.
state
.
lists
.
splice
(
index
,
1
);
b
oardsStore
.
updateNewListDropdown
(
this
.
id
);
gl
.
boardService
.
destroyList
(
this
.
id
).
catch
(()
=>
{
// TODO: handle request error
...
...
@@ -116,7 +117,7 @@ class List {
getIssues
(
emptyIssues
=
true
)
{
const
data
=
{
...
urlParamsToObject
(
gl
.
issueBoards
.
B
oardsStore
.
filter
.
path
),
...
urlParamsToObject
(
b
oardsStore
.
filter
.
path
),
page
:
this
.
page
,
};
...
...
app/assets/javascripts/boards/stores/boards_store.js
View file @
a0189744
...
...
@@ -3,13 +3,11 @@
import
$
from
'
jquery
'
;
import
_
from
'
underscore
'
;
import
Vue
from
'
vue
'
;
import
Cookies
from
'
js-cookie
'
;
import
{
getUrlParamsArray
}
from
'
~/lib/utils/common_utils
'
;
window
.
gl
=
window
.
gl
||
{};
window
.
gl
.
issueBoards
=
window
.
gl
.
issueBoards
||
{};
gl
.
issueBoards
.
BoardsStore
=
{
const
boardsStore
=
{
disabled
:
false
,
filter
:
{
path
:
''
,
...
...
@@ -167,3 +165,16 @@ gl.issueBoards.BoardsStore = {
window
.
history
.
pushState
(
null
,
null
,
`?
${
this
.
filter
.
path
}
`
);
}
};
// hacks added in order to allow milestone_select to function properly
// TODO: remove these
export
function
boardStoreIssueSet
(...
args
)
{
Vue
.
set
(
boardsStore
.
detail
.
issue
,
...
args
);
}
export
function
boardStoreIssueDelete
(...
args
)
{
Vue
.
delete
(
boardsStore
.
detail
.
issue
,
...
args
);
}
export
default
boardsStore
;
app/assets/javascripts/due_date_select.js
View file @
a0189744
...
...
@@ -5,6 +5,7 @@ import { __ } from '~/locale';
import
axios
from
'
./lib/utils/axios_utils
'
;
import
{
timeFor
}
from
'
./lib/utils/datetime_utility
'
;
import
{
parsePikadayDate
,
pikadayToString
}
from
'
./lib/utils/datefix
'
;
import
boardsStore
from
'
./boards/stores/boards_store
'
;
class
DueDateSelect
{
constructor
({
$dropdown
,
$loading
}
=
{})
{
...
...
@@ -58,7 +59,7 @@ class DueDateSelect {
$dueDateInput
.
val
(
calendar
.
toString
(
dateText
));
if
(
this
.
$dropdown
.
hasClass
(
'
js-issue-boards-due-date
'
))
{
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
dueDate
=
$dueDateInput
.
val
();
b
oardsStore
.
detail
.
issue
.
dueDate
=
$dueDateInput
.
val
();
this
.
updateIssueBoardIssue
();
}
else
{
this
.
saveDueDate
(
true
);
...
...
@@ -79,7 +80,7 @@ class DueDateSelect {
calendar
.
setDate
(
null
);
if
(
this
.
$dropdown
.
hasClass
(
'
js-issue-boards-due-date
'
))
{
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
dueDate
=
''
;
b
oardsStore
.
detail
.
issue
.
dueDate
=
''
;
this
.
updateIssueBoardIssue
();
}
else
{
$
(
`input[name='
${
this
.
fieldName
}
']`
).
val
(
''
);
...
...
@@ -123,7 +124,7 @@ class DueDateSelect {
this
.
$loading
.
fadeOut
();
};
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
b
oardsStore
.
detail
.
issue
.
update
(
this
.
$dropdown
.
attr
(
'
data-issue-update
'
))
.
then
(
fadeOutLoader
)
.
catch
(
fadeOutLoader
);
...
...
app/assets/javascripts/labels_select.js
View file @
a0189744
...
...
@@ -11,6 +11,7 @@ import DropdownUtils from './filtered_search/dropdown_utils';
import
CreateLabelDropdown
from
'
./create_label
'
;
import
flash
from
'
./flash
'
;
import
ModalStore
from
'
./boards/stores/modal_store
'
;
import
boardsStore
from
'
./boards/stores/boards_store
'
;
export
default
class
LabelsSelect
{
constructor
(
els
,
options
=
{})
{
...
...
@@ -378,7 +379,7 @@ export default class LabelsSelect {
}
else
if
(
$dropdown
.
hasClass
(
'
js-issue-board-sidebar
'
))
{
if
(
$el
.
hasClass
(
'
is-active
'
))
{
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
labels
.
push
(
new
ListLabel
({
b
oardsStore
.
detail
.
issue
.
labels
.
push
(
new
ListLabel
({
id
:
label
.
id
,
title
:
label
.
title
,
color
:
label
.
color
[
0
],
...
...
@@ -386,16 +387,16 @@ export default class LabelsSelect {
}));
}
else
{
var
{
labels
}
=
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
;
var
{
labels
}
=
b
oardsStore
.
detail
.
issue
;
labels
=
labels
.
filter
(
function
(
selectedLabel
)
{
return
selectedLabel
.
id
!==
label
.
id
;
});
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
labels
=
labels
;
b
oardsStore
.
detail
.
issue
.
labels
=
labels
;
}
$loading
.
fadeIn
();
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
update
(
$dropdown
.
attr
(
'
data-issue-update
'
))
b
oardsStore
.
detail
.
issue
.
update
(
$dropdown
.
attr
(
'
data-issue-update
'
))
.
then
(
fadeOutLoader
)
.
catch
(
fadeOutLoader
);
}
...
...
app/assets/javascripts/milestone_select.js
View file @
a0189744
...
...
@@ -9,6 +9,7 @@ import '~/gl_dropdown';
import
axios
from
'
./lib/utils/axios_utils
'
;
import
{
timeFor
}
from
'
./lib/utils/datetime_utility
'
;
import
ModalStore
from
'
./boards/stores/modal_store
'
;
import
boardsStore
,
{
boardStoreIssueSet
,
boardStoreIssueDelete
}
from
'
./boards/stores/boards_store
'
;
export
default
class
MilestoneSelect
{
constructor
(
currentProject
,
els
,
options
=
{})
{
...
...
@@ -187,7 +188,7 @@ export default class MilestoneSelect {
return
$dropdown
.
closest
(
'
form
'
).
submit
();
}
else
if
(
$dropdown
.
hasClass
(
'
js-issue-board-sidebar
'
))
{
if
(
selected
.
id
!==
-
1
&&
isSelecting
)
{
gl
.
issueBoards
.
boardStoreIssueSet
(
boardStoreIssueSet
(
'
milestone
'
,
new
ListMilestone
({
id
:
selected
.
id
,
...
...
@@ -195,13 +196,13 @@ export default class MilestoneSelect {
}),
);
}
else
{
gl
.
issueBoards
.
boardStoreIssueDelete
(
'
milestone
'
);
boardStoreIssueDelete
(
'
milestone
'
);
}
$dropdown
.
trigger
(
'
loading.gl.dropdown
'
);
$loading
.
removeClass
(
'
hidden
'
).
fadeIn
();
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
b
oardsStore
.
detail
.
issue
.
update
(
$dropdown
.
attr
(
'
data-issue-update
'
))
.
then
(()
=>
{
$dropdown
.
trigger
(
'
loaded.gl.dropdown
'
);
...
...
spec/javascripts/boards/board_blank_state_spec.js
View file @
a0189744
import
Vue
from
'
vue
'
;
import
'
~/boards/stores/boards_store
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
BoardBlankState
from
'
~/boards/components/board_blank_state.vue
'
;
import
{
mockBoardService
}
from
'
./mock_data
'
;
...
...
@@ -10,7 +10,7 @@ describe('Boards blank state', () => {
beforeEach
((
done
)
=>
{
const
Comp
=
Vue
.
extend
(
BoardBlankState
);
gl
.
issueBoards
.
B
oardsStore
.
create
();
b
oardsStore
.
create
();
gl
.
boardService
=
mockBoardService
();
spyOn
(
gl
.
boardService
,
'
generateDefaultLists
'
).
and
.
callFake
(()
=>
new
Promise
((
resolve
,
reject
)
=>
{
...
...
@@ -57,7 +57,7 @@ describe('Boards blank state', () => {
vm
.
$el
.
querySelector
(
'
.btn-default
'
).
click
();
setTimeout
(()
=>
{
expect
(
gl
.
issueBoards
.
B
oardsStore
.
welcomeIsHidden
()).
toBeTruthy
();
expect
(
b
oardsStore
.
welcomeIsHidden
()).
toBeTruthy
();
done
();
});
...
...
@@ -67,9 +67,9 @@ describe('Boards blank state', () => {
vm
.
$el
.
querySelector
(
'
.btn-success
'
).
click
();
setTimeout
(()
=>
{
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
[
0
].
title
).
toEqual
(
'
To Do
'
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
[
1
].
title
).
toEqual
(
'
Doing
'
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
expect
(
b
oardsStore
.
state
.
lists
[
0
].
title
).
toEqual
(
'
To Do
'
);
expect
(
b
oardsStore
.
state
.
lists
[
1
].
title
).
toEqual
(
'
Doing
'
);
done
();
});
...
...
@@ -81,8 +81,8 @@ describe('Boards blank state', () => {
vm
.
$el
.
querySelector
(
'
.btn-success
'
).
click
();
setTimeout
(()
=>
{
expect
(
gl
.
issueBoards
.
B
oardsStore
.
welcomeIsHidden
()).
toBeFalsy
();
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
expect
(
b
oardsStore
.
welcomeIsHidden
()).
toBeFalsy
();
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
done
();
});
...
...
spec/javascripts/boards/board_card_spec.js
View file @
a0189744
...
...
@@ -10,7 +10,7 @@ import eventHub from '~/boards/eventhub';
import
'
~/vue_shared/models/label
'
;
import
'
~/vue_shared/models/assignee
'
;
import
'
~/boards/models/list
'
;
import
'
~/boards/stores/boards_store
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
boardCard
from
'
~/boards/components/board_card.vue
'
;
import
{
listObj
,
boardsMockInterceptor
,
mockBoardService
}
from
'
./mock_data
'
;
...
...
@@ -23,8 +23,8 @@ describe('Board card', () => {
mock
.
onAny
().
reply
(
boardsMockInterceptor
);
gl
.
boardService
=
mockBoardService
();
gl
.
issueBoards
.
B
oardsStore
.
create
();
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
=
{};
b
oardsStore
.
create
();
b
oardsStore
.
detail
.
issue
=
{};
const
BoardCardComp
=
Vue
.
extend
(
boardCard
);
const
list
=
new
List
(
listObj
);
...
...
@@ -62,7 +62,7 @@ describe('Board card', () => {
});
it
(
'
returns true when detailIssue is equal to card issue
'
,
()
=>
{
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
=
vm
.
issue
;
b
oardsStore
.
detail
.
issue
=
vm
.
issue
;
expect
(
vm
.
issueDetailVisible
).
toBe
(
true
);
});
...
...
@@ -119,19 +119,19 @@ describe('Board card', () => {
});
it
(
'
does not set detail issue if showDetail is false
'
,
()
=>
{
expect
(
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
).
toEqual
({});
expect
(
b
oardsStore
.
detail
.
issue
).
toEqual
({});
});
it
(
'
does not set detail issue if link is clicked
'
,
()
=>
{
triggerEvent
(
'
mouseup
'
,
vm
.
$el
.
querySelector
(
'
a
'
));
expect
(
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
).
toEqual
({});
expect
(
b
oardsStore
.
detail
.
issue
).
toEqual
({});
});
it
(
'
does not set detail issue if button is clicked
'
,
()
=>
{
triggerEvent
(
'
mouseup
'
,
vm
.
$el
.
querySelector
(
'
button
'
));
expect
(
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
).
toEqual
({});
expect
(
b
oardsStore
.
detail
.
issue
).
toEqual
({});
});
it
(
'
does not set detail issue if img is clicked
'
,
(
done
)
=>
{
...
...
@@ -145,7 +145,7 @@ describe('Board card', () => {
Vue
.
nextTick
(()
=>
{
triggerEvent
(
'
mouseup
'
,
vm
.
$el
.
querySelector
(
'
img
'
));
expect
(
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
).
toEqual
({});
expect
(
b
oardsStore
.
detail
.
issue
).
toEqual
({});
done
();
});
...
...
@@ -154,7 +154,7 @@ describe('Board card', () => {
it
(
'
does not set detail issue if showDetail is false after mouseup
'
,
()
=>
{
triggerEvent
(
'
mouseup
'
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
).
toEqual
({});
expect
(
b
oardsStore
.
detail
.
issue
).
toEqual
({});
});
it
(
'
sets detail issue to card issue on mouse up
'
,
()
=>
{
...
...
@@ -164,7 +164,7 @@ describe('Board card', () => {
triggerEvent
(
'
mouseup
'
);
expect
(
eventHub
.
$emit
).
toHaveBeenCalledWith
(
'
newDetailIssue
'
,
vm
.
issue
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
detail
.
list
).
toEqual
(
vm
.
list
);
expect
(
b
oardsStore
.
detail
.
list
).
toEqual
(
vm
.
list
);
});
it
(
'
adds active class if detail issue is set
'
,
(
done
)
=>
{
...
...
@@ -181,7 +181,7 @@ describe('Board card', () => {
it
(
'
resets detail issue to empty if already set
'
,
()
=>
{
spyOn
(
eventHub
,
'
$emit
'
);
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
=
vm
.
issue
;
b
oardsStore
.
detail
.
issue
=
vm
.
issue
;
triggerEvent
(
'
mousedown
'
);
triggerEvent
(
'
mouseup
'
);
...
...
spec/javascripts/boards/board_list_spec.js
View file @
a0189744
/* global List */
/* global ListIssue */
import
Vue
from
'
vue
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
Sortable
from
'
sortablejs
'
;
import
BoardList
from
'
~/boards/components/board_list.vue
'
;
import
eventHub
from
'
~/boards/eventhub
'
;
import
'
~/boards/mixins/sortable_default_options
'
;
import
'
~/boards/models/issue
'
;
import
'
~/boards/models/list
'
;
import
'
~/boards/stores/boards_store
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
{
listObj
,
boardsMockInterceptor
,
mockBoardService
}
from
'
./mock_data
'
;
window
.
Sortable
=
Sortable
;
...
...
@@ -25,8 +25,7 @@ describe('Board list component', () => {
mock
=
new
MockAdapter
(
axios
);
mock
.
onAny
().
reply
(
boardsMockInterceptor
);
gl
.
boardService
=
mockBoardService
();
gl
.
issueBoards
.
BoardsStore
.
create
();
gl
.
IssueBoardsApp
=
new
Vue
();
boardsStore
.
create
();
const
BoardListComp
=
Vue
.
extend
(
BoardList
);
const
list
=
new
List
(
listObj
);
...
...
spec/javascripts/boards/board_new_issue_spec.js
View file @
a0189744
...
...
@@ -4,6 +4,7 @@ import Vue from 'vue';
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
boardNewIssue
from
'
~/boards/components/board_new_issue.vue
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
'
~/boards/models/list
'
;
import
{
listObj
,
boardsMockInterceptor
,
mockBoardService
}
from
'
./mock_data
'
;
...
...
@@ -36,8 +37,7 @@ describe('Issue boards new issue form', () => {
mock
.
onAny
().
reply
(
boardsMockInterceptor
);
gl
.
boardService
=
mockBoardService
();
gl
.
issueBoards
.
BoardsStore
.
create
();
gl
.
IssueBoardsApp
=
new
Vue
();
boardsStore
.
create
();
list
=
new
List
(
listObj
);
...
...
@@ -148,13 +148,13 @@ describe('Issue boards new issue form', () => {
});
it
(
'
sets detail issue after submit
'
,
(
done
)
=>
{
expect
(
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
title
).
toBe
(
undefined
);
expect
(
b
oardsStore
.
detail
.
issue
.
title
).
toBe
(
undefined
);
vm
.
title
=
'
submit issue
'
;
Vue
.
nextTick
()
.
then
(
submitIssue
)
.
then
(()
=>
{
expect
(
gl
.
issueBoards
.
B
oardsStore
.
detail
.
issue
.
title
).
toBe
(
'
submit issue
'
);
expect
(
b
oardsStore
.
detail
.
issue
.
title
).
toBe
(
'
submit issue
'
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
...
...
@@ -166,7 +166,7 @@ describe('Issue boards new issue form', () => {
Vue
.
nextTick
()
.
then
(
submitIssue
)
.
then
(()
=>
{
expect
(
gl
.
issueBoards
.
B
oardsStore
.
detail
.
list
.
id
).
toBe
(
list
.
id
);
expect
(
b
oardsStore
.
detail
.
list
.
id
).
toBe
(
list
.
id
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
...
...
spec/javascripts/boards/boards_store_spec.js
View file @
a0189744
...
...
@@ -11,7 +11,7 @@ import '~/vue_shared/models/assignee';
import
'
~/boards/models/issue
'
;
import
'
~/boards/models/list
'
;
import
'
~/boards/services/board_service
'
;
import
'
~/boards/stores/boards_store
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
{
listObj
,
listObjDuplicate
,
boardsMockInterceptor
,
mockBoardService
}
from
'
./mock_data
'
;
describe
(
'
Store
'
,
()
=>
{
...
...
@@ -21,7 +21,7 @@ describe('Store', () => {
mock
=
new
MockAdapter
(
axios
);
mock
.
onAny
().
reply
(
boardsMockInterceptor
);
gl
.
boardService
=
mockBoardService
();
gl
.
issueBoards
.
B
oardsStore
.
create
();
b
oardsStore
.
create
();
spyOn
(
gl
.
boardService
,
'
moveIssue
'
).
and
.
callFake
(()
=>
new
Promise
((
resolve
)
=>
{
resolve
();
...
...
@@ -38,35 +38,35 @@ describe('Store', () => {
});
it
(
'
starts with a blank state
'
,
()
=>
{
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
0
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
0
);
});
describe
(
'
lists
'
,
()
=>
{
it
(
'
creates new list without persisting to DB
'
,
()
=>
{
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
b
oardsStore
.
addList
(
listObj
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
});
it
(
'
finds list by ID
'
,
()
=>
{
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
const
list
=
gl
.
issueBoards
.
B
oardsStore
.
findList
(
'
id
'
,
listObj
.
id
);
b
oardsStore
.
addList
(
listObj
);
const
list
=
b
oardsStore
.
findList
(
'
id
'
,
listObj
.
id
);
expect
(
list
.
id
).
toBe
(
listObj
.
id
);
});
it
(
'
finds list by type
'
,
()
=>
{
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
const
list
=
gl
.
issueBoards
.
B
oardsStore
.
findList
(
'
type
'
,
'
label
'
);
b
oardsStore
.
addList
(
listObj
);
const
list
=
b
oardsStore
.
findList
(
'
type
'
,
'
label
'
);
expect
(
list
).
toBeDefined
();
});
it
(
'
gets issue when new list added
'
,
(
done
)
=>
{
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
const
list
=
gl
.
issueBoards
.
B
oardsStore
.
findList
(
'
id
'
,
listObj
.
id
);
b
oardsStore
.
addList
(
listObj
);
const
list
=
b
oardsStore
.
findList
(
'
id
'
,
listObj
.
id
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
setTimeout
(()
=>
{
expect
(
list
.
issues
.
length
).
toBe
(
1
);
...
...
@@ -76,7 +76,7 @@ describe('Store', () => {
});
it
(
'
persists new list
'
,
(
done
)
=>
{
gl
.
issueBoards
.
B
oardsStore
.
new
({
b
oardsStore
.
new
({
title
:
'
Test
'
,
list_type
:
'
label
'
,
label
:
{
...
...
@@ -86,10 +86,10 @@ describe('Store', () => {
description
:
'
testing;
'
}
});
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
setTimeout
(()
=>
{
const
list
=
gl
.
issueBoards
.
B
oardsStore
.
findList
(
'
id
'
,
listObj
.
id
);
const
list
=
b
oardsStore
.
findList
(
'
id
'
,
listObj
.
id
);
expect
(
list
).
toBeDefined
();
expect
(
list
.
id
).
toBe
(
listObj
.
id
);
expect
(
list
.
position
).
toBe
(
0
);
...
...
@@ -98,61 +98,61 @@ describe('Store', () => {
});
it
(
'
check for blank state adding
'
,
()
=>
{
expect
(
gl
.
issueBoards
.
B
oardsStore
.
shouldAddBlankState
()).
toBe
(
true
);
expect
(
b
oardsStore
.
shouldAddBlankState
()).
toBe
(
true
);
});
it
(
'
check for blank state not adding
'
,
()
=>
{
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
shouldAddBlankState
()).
toBe
(
false
);
b
oardsStore
.
addList
(
listObj
);
expect
(
b
oardsStore
.
shouldAddBlankState
()).
toBe
(
false
);
});
it
(
'
check for blank state adding when closed list exist
'
,
()
=>
{
gl
.
issueBoards
.
B
oardsStore
.
addList
({
b
oardsStore
.
addList
({
list_type
:
'
closed
'
});
expect
(
gl
.
issueBoards
.
B
oardsStore
.
shouldAddBlankState
()).
toBe
(
true
);
expect
(
b
oardsStore
.
shouldAddBlankState
()).
toBe
(
true
);
});
it
(
'
adds the blank state
'
,
()
=>
{
gl
.
issueBoards
.
B
oardsStore
.
addBlankState
();
b
oardsStore
.
addBlankState
();
const
list
=
gl
.
issueBoards
.
B
oardsStore
.
findList
(
'
type
'
,
'
blank
'
,
'
blank
'
);
const
list
=
b
oardsStore
.
findList
(
'
type
'
,
'
blank
'
,
'
blank
'
);
expect
(
list
).
toBeDefined
();
});
it
(
'
removes list from state
'
,
()
=>
{
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
b
oardsStore
.
addList
(
listObj
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
gl
.
issueBoards
.
B
oardsStore
.
removeList
(
listObj
.
id
,
'
label
'
);
b
oardsStore
.
removeList
(
listObj
.
id
,
'
label
'
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
0
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
0
);
});
it
(
'
moves the position of lists
'
,
()
=>
{
const
listOne
=
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
const
listTwo
=
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObjDuplicate
);
const
listOne
=
b
oardsStore
.
addList
(
listObj
);
const
listTwo
=
b
oardsStore
.
addList
(
listObjDuplicate
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
gl
.
issueBoards
.
B
oardsStore
.
moveList
(
listOne
,
[
listObjDuplicate
.
id
,
listObj
.
id
]);
b
oardsStore
.
moveList
(
listOne
,
[
listObjDuplicate
.
id
,
listObj
.
id
]);
expect
(
listOne
.
position
).
toBe
(
1
);
});
it
(
'
moves an issue from one list to another
'
,
(
done
)
=>
{
const
listOne
=
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
const
listTwo
=
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObjDuplicate
);
const
listOne
=
b
oardsStore
.
addList
(
listObj
);
const
listTwo
=
b
oardsStore
.
addList
(
listObjDuplicate
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
setTimeout
(()
=>
{
expect
(
listOne
.
issues
.
length
).
toBe
(
1
);
expect
(
listTwo
.
issues
.
length
).
toBe
(
1
);
gl
.
issueBoards
.
B
oardsStore
.
moveIssueToList
(
listOne
,
listTwo
,
listOne
.
findIssue
(
1
));
b
oardsStore
.
moveIssueToList
(
listOne
,
listTwo
,
listOne
.
findIssue
(
1
));
expect
(
listOne
.
issues
.
length
).
toBe
(
0
);
expect
(
listTwo
.
issues
.
length
).
toBe
(
1
);
...
...
@@ -162,19 +162,19 @@ describe('Store', () => {
});
it
(
'
moves an issue from backlog to a list
'
,
(
done
)
=>
{
const
backlog
=
gl
.
issueBoards
.
B
oardsStore
.
addList
({
const
backlog
=
b
oardsStore
.
addList
({
...
listObj
,
list_type
:
'
backlog
'
,
});
const
listTwo
=
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObjDuplicate
);
const
listTwo
=
b
oardsStore
.
addList
(
listObjDuplicate
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
setTimeout
(()
=>
{
expect
(
backlog
.
issues
.
length
).
toBe
(
1
);
expect
(
listTwo
.
issues
.
length
).
toBe
(
1
);
gl
.
issueBoards
.
B
oardsStore
.
moveIssueToList
(
backlog
,
listTwo
,
backlog
.
findIssue
(
1
));
b
oardsStore
.
moveIssueToList
(
backlog
,
listTwo
,
backlog
.
findIssue
(
1
));
expect
(
backlog
.
issues
.
length
).
toBe
(
0
);
expect
(
listTwo
.
issues
.
length
).
toBe
(
1
);
...
...
@@ -184,10 +184,10 @@ describe('Store', () => {
});
it
(
'
moves issue to top of another list
'
,
(
done
)
=>
{
const
listOne
=
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
const
listTwo
=
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObjDuplicate
);
const
listOne
=
b
oardsStore
.
addList
(
listObj
);
const
listTwo
=
b
oardsStore
.
addList
(
listObjDuplicate
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
setTimeout
(()
=>
{
listOne
.
issues
[
0
].
id
=
2
;
...
...
@@ -195,7 +195,7 @@ describe('Store', () => {
expect
(
listOne
.
issues
.
length
).
toBe
(
1
);
expect
(
listTwo
.
issues
.
length
).
toBe
(
1
);
gl
.
issueBoards
.
B
oardsStore
.
moveIssueToList
(
listOne
,
listTwo
,
listOne
.
findIssue
(
2
),
0
);
b
oardsStore
.
moveIssueToList
(
listOne
,
listTwo
,
listOne
.
findIssue
(
2
),
0
);
expect
(
listOne
.
issues
.
length
).
toBe
(
0
);
expect
(
listTwo
.
issues
.
length
).
toBe
(
2
);
...
...
@@ -207,10 +207,10 @@ describe('Store', () => {
});
it
(
'
moves issue to bottom of another list
'
,
(
done
)
=>
{
const
listOne
=
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
const
listTwo
=
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObjDuplicate
);
const
listOne
=
b
oardsStore
.
addList
(
listObj
);
const
listTwo
=
b
oardsStore
.
addList
(
listObjDuplicate
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
2
);
setTimeout
(()
=>
{
listOne
.
issues
[
0
].
id
=
2
;
...
...
@@ -218,7 +218,7 @@ describe('Store', () => {
expect
(
listOne
.
issues
.
length
).
toBe
(
1
);
expect
(
listTwo
.
issues
.
length
).
toBe
(
1
);
gl
.
issueBoards
.
B
oardsStore
.
moveIssueToList
(
listOne
,
listTwo
,
listOne
.
findIssue
(
2
),
1
);
b
oardsStore
.
moveIssueToList
(
listOne
,
listTwo
,
listOne
.
findIssue
(
2
),
1
);
expect
(
listOne
.
issues
.
length
).
toBe
(
0
);
expect
(
listTwo
.
issues
.
length
).
toBe
(
2
);
...
...
@@ -238,14 +238,14 @@ describe('Store', () => {
labels
:
[],
assignees
:
[],
});
const
list
=
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
const
list
=
b
oardsStore
.
addList
(
listObj
);
setTimeout
(()
=>
{
list
.
addIssue
(
issue
);
expect
(
list
.
issues
.
length
).
toBe
(
2
);
gl
.
issueBoards
.
B
oardsStore
.
moveIssueInList
(
list
,
issue
,
0
,
1
,
[
1
,
2
]);
b
oardsStore
.
moveIssueInList
(
list
,
issue
,
0
,
1
,
[
1
,
2
]);
expect
(
list
.
issues
[
0
].
id
).
toBe
(
2
);
expect
(
gl
.
boardService
.
moveIssue
).
toHaveBeenCalledWith
(
2
,
null
,
null
,
1
,
null
);
...
...
spec/javascripts/boards/components/board_spec.js
View file @
a0189744
import
Vue
from
'
vue
'
;
import
'
~/boards/services/board_service
'
;
import
'
~/boards/components/board
'
;
import
Board
from
'
~/boards/components/board
'
;
import
'
~/boards/models/list
'
;
import
{
mockBoardService
}
from
'
../mock_data
'
;
...
...
@@ -21,7 +21,7 @@ describe('Board component', () => {
boardId
:
1
,
});
vm
=
new
gl
.
issueBoards
.
Board
({
vm
=
new
Board
({
propsData
:
{
boardId
:
'
1
'
,
disabled
:
false
,
...
...
spec/javascripts/boards/issue_card_spec.js
View file @
a0189744
...
...
@@ -8,7 +8,6 @@ import '~/vue_shared/models/label';
import
'
~/vue_shared/models/assignee
'
;
import
'
~/boards/models/issue
'
;
import
'
~/boards/models/list
'
;
import
'
~/boards/stores/boards_store
'
;
import
IssueCardInner
from
'
~/boards/components/issue_card_inner.vue
'
;
import
{
listObj
}
from
'
./mock_data
'
;
...
...
spec/javascripts/boards/issue_spec.js
View file @
a0189744
...
...
@@ -6,7 +6,7 @@ import '~/vue_shared/models/assignee';
import
'
~/boards/models/issue
'
;
import
'
~/boards/models/list
'
;
import
'
~/boards/services/board_service
'
;
import
'
~/boards/stores/boards_store
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
{
mockBoardService
}
from
'
./mock_data
'
;
describe
(
'
Issue model
'
,
()
=>
{
...
...
@@ -14,7 +14,7 @@ describe('Issue model', () => {
beforeEach
(()
=>
{
gl
.
boardService
=
mockBoardService
();
gl
.
issueBoards
.
B
oardsStore
.
create
();
b
oardsStore
.
create
();
issue
=
new
ListIssue
({
title
:
'
Testing
'
,
...
...
spec/javascripts/boards/list_spec.js
View file @
a0189744
...
...
@@ -9,7 +9,7 @@ import '~/vue_shared/models/assignee';
import
'
~/boards/models/issue
'
;
import
'
~/boards/models/list
'
;
import
'
~/boards/services/board_service
'
;
import
'
~/boards/stores/boards_store
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
{
listObj
,
listObjDuplicate
,
boardsMockInterceptor
,
mockBoardService
}
from
'
./mock_data
'
;
describe
(
'
List model
'
,
()
=>
{
...
...
@@ -22,7 +22,7 @@ describe('List model', () => {
gl
.
boardService
=
mockBoardService
({
bulkUpdatePath
:
'
/test/issue-boards/board/1/lists
'
,
});
gl
.
issueBoards
.
B
oardsStore
.
create
();
b
oardsStore
.
create
();
list
=
new
List
(
listObj
);
});
...
...
@@ -58,13 +58,13 @@ describe('List model', () => {
});
it
(
'
destroys the list
'
,
(
done
)
=>
{
gl
.
issueBoards
.
B
oardsStore
.
addList
(
listObj
);
list
=
gl
.
issueBoards
.
B
oardsStore
.
findList
(
'
id
'
,
listObj
.
id
);
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
b
oardsStore
.
addList
(
listObj
);
list
=
b
oardsStore
.
findList
(
'
id
'
,
listObj
.
id
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
1
);
list
.
destroy
();
setTimeout
(()
=>
{
expect
(
gl
.
issueBoards
.
B
oardsStore
.
state
.
lists
.
length
).
toBe
(
0
);
expect
(
b
oardsStore
.
state
.
lists
.
length
).
toBe
(
0
);
done
();
},
0
);
});
...
...
spec/javascripts/boards/mock_data.js
View file @
a0189744
/* global BoardService */
import
BoardService
from
'
~/boards/services/board_service
'
;
export
const
listObj
=
{
id
:
300
,
position
:
0
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment