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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
ce2bf106
Commit
ce2bf106
authored
Aug 12, 2020
by
Florie Guibert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Swimlanes - Filters
VueX filtering for Swimlanes and GraphQL boards
parent
2b6d2bdd
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
130 additions
and
61 deletions
+130
-61
app/assets/javascripts/boards/filtered_search_boards.js
app/assets/javascripts/boards/filtered_search_boards.js
+5
-0
app/assets/javascripts/boards/index.js
app/assets/javascripts/boards/index.js
+14
-2
app/assets/javascripts/boards/stores/actions.js
app/assets/javascripts/boards/stores/actions.js
+5
-0
app/assets/javascripts/boards/stores/boards_store.js
app/assets/javascripts/boards/stores/boards_store.js
+4
-0
app/assets/javascripts/boards/stores/mutation_types.js
app/assets/javascripts/boards/stores/mutation_types.js
+1
-0
app/assets/javascripts/boards/stores/mutations.js
app/assets/javascripts/boards/stores/mutations.js
+4
-0
app/assets/javascripts/boards/stores/state.js
app/assets/javascripts/boards/stores/state.js
+1
-0
ee/app/assets/javascripts/boards/queries/group_epics_swimlanes.query.graphql
...cripts/boards/queries/group_epics_swimlanes.query.graphql
+25
-4
ee/app/assets/javascripts/boards/queries/project_epics_swimlanes.query.graphql
...ipts/boards/queries/project_epics_swimlanes.query.graphql
+0
-19
ee/app/assets/javascripts/boards/stores/actions.js
ee/app/assets/javascripts/boards/stores/actions.js
+42
-36
spec/frontend/boards/stores/actions_spec.js
spec/frontend/boards/stores/actions_spec.js
+19
-0
spec/frontend/boards/stores/mutations_spec.js
spec/frontend/boards/stores/mutations_spec.js
+10
-0
No files found.
app/assets/javascripts/boards/filtered_search_boards.js
View file @
ce2bf106
...
...
@@ -27,6 +27,11 @@ export default class FilteredSearchBoards extends FilteredSearchManager {
updateObject
(
path
)
{
this
.
store
.
path
=
path
.
substr
(
1
);
if
(
gon
.
features
.
boardsWithSwimlanes
)
{
boardsStore
.
updateFiltersUrl
();
boardsStore
.
performSearch
();
}
if
(
this
.
updateUrl
)
{
boardsStore
.
updateFiltersUrl
();
}
...
...
app/assets/javascripts/boards/index.js
View file @
ce2bf106
import
$
from
'
jquery
'
;
import
Vue
from
'
vue
'
;
import
{
mapActions
}
from
'
vuex
'
;
import
{
mapActions
,
mapState
}
from
'
vuex
'
;
import
'
ee_else_ce/boards/models/issue
'
;
import
'
ee_else_ce/boards/models/list
'
;
...
...
@@ -42,6 +42,7 @@ import {
NavigationType
,
convertObjectPropsToCamelCase
,
parseBoolean
,
urlParamsToObject
,
}
from
'
~/lib/utils/common_utils
'
;
import
{
getIdFromGraphQLId
}
from
'
~/graphql_shared/utils
'
;
import
mountMultipleBoardsSwitcher
from
'
./mount_multiple_boards_switcher
'
;
...
...
@@ -104,6 +105,7 @@ export default () => {
};
},
computed
:
{
...
mapState
([
'
isShowingEpicsSwimlanes
'
]),
detailIssueVisible
()
{
return
Object
.
keys
(
this
.
detailIssue
.
issue
).
length
;
},
...
...
@@ -125,17 +127,21 @@ export default () => {
eventHub
.
$on
(
'
newDetailIssue
'
,
this
.
updateDetailIssue
);
eventHub
.
$on
(
'
clearDetailIssue
'
,
this
.
clearDetailIssue
);
sidebarEventHub
.
$on
(
'
toggleSubscription
'
,
this
.
toggleSubscription
);
eventHub
.
$on
(
'
performSearch
'
,
this
.
performSearch
);
},
beforeDestroy
()
{
eventHub
.
$off
(
'
updateTokens
'
,
this
.
updateTokens
);
eventHub
.
$off
(
'
newDetailIssue
'
,
this
.
updateDetailIssue
);
eventHub
.
$off
(
'
clearDetailIssue
'
,
this
.
clearDetailIssue
);
sidebarEventHub
.
$off
(
'
toggleSubscription
'
,
this
.
toggleSubscription
);
eventHub
.
$off
(
'
performSearch
'
,
this
.
performSearch
);
},
mounted
()
{
this
.
filterManager
=
new
FilteredSearchBoards
(
boardsStore
.
filter
,
true
,
boardsStore
.
cantEdit
);
this
.
filterManager
.
setup
();
this
.
performSearch
();
boardsStore
.
disabled
=
this
.
disabled
;
if
(
gon
.
features
.
graphqlBoardLists
)
{
...
...
@@ -189,10 +195,16 @@ export default () => {
}
},
methods
:
{
...
mapActions
([
'
setInitialBoardData
'
]),
...
mapActions
([
'
setInitialBoardData
'
,
'
setFilters
'
,
'
fetchEpicsSwimlanes
'
]),
updateTokens
()
{
this
.
filterManager
.
updateTokens
();
},
performSearch
()
{
this
.
setFilters
(
convertObjectPropsToCamelCase
(
urlParamsToObject
(
window
.
location
.
search
)));
if
(
gon
.
features
.
boardsWithSwimlanes
&&
this
.
isShowingEpicsSwimlanes
)
{
this
.
fetchEpicsSwimlanes
(
false
);
}
},
updateDetailIssue
(
newIssue
,
multiSelect
=
false
)
{
const
{
sidebarInfoEndpoint
}
=
newIssue
;
if
(
sidebarInfoEndpoint
&&
newIssue
.
subscribed
===
undefined
)
{
...
...
app/assets/javascripts/boards/stores/actions.js
View file @
ce2bf106
...
...
@@ -21,6 +21,11 @@ export default {
commit
(
types
.
SET_ACTIVE_ID
,
id
);
},
setFilters
:
({
commit
},
filters
)
=>
{
const
{
scope
,
utf8
,
state
,
...
filterParams
}
=
filters
;
commit
(
types
.
SET_FILTERS
,
filterParams
);
},
fetchLists
:
()
=>
{
notImplemented
();
},
...
...
app/assets/javascripts/boards/stores/boards_store.js
View file @
ce2bf106
...
...
@@ -513,6 +513,10 @@ const boardsStore = {
eventHub
.
$emit
(
'
updateTokens
'
);
},
performSearch
()
{
eventHub
.
$emit
(
'
performSearch
'
);
},
setListDetail
(
newList
)
{
this
.
detail
.
list
=
newList
;
},
...
...
app/assets/javascripts/boards/stores/mutation_types.js
View file @
ce2bf106
export
const
SET_INITIAL_BOARD_DATA
=
'
SET_INITIAL_BOARD_DATA
'
;
export
const
SET_FILTERS
=
'
SET_FILTERS
'
;
export
const
REQUEST_ADD_LIST
=
'
REQUEST_ADD_LIST
'
;
export
const
RECEIVE_ADD_LIST_SUCCESS
=
'
RECEIVE_ADD_LIST_SUCCESS
'
;
export
const
RECEIVE_ADD_LIST_ERROR
=
'
RECEIVE_ADD_LIST_ERROR
'
;
...
...
app/assets/javascripts/boards/stores/mutations.js
View file @
ce2bf106
...
...
@@ -17,6 +17,10 @@ export default {
state
.
activeId
=
id
;
},
[
mutationTypes
.
SET_FILTERS
](
state
,
filterParams
)
{
state
.
filterParams
=
filterParams
;
},
[
mutationTypes
.
REQUEST_ADD_LIST
]:
()
=>
{
notImplemented
();
},
...
...
app/assets/javascripts/boards/stores/state.js
View file @
ce2bf106
...
...
@@ -8,6 +8,7 @@ export default () => ({
boardLists
:
[],
issuesByListId
:
{},
isLoadingIssues
:
false
,
filterParams
:
{},
error
:
undefined
,
// TODO: remove after ce/ee split of board_content.vue
isShowingEpicsSwimlanes
:
false
,
...
...
ee/app/assets/javascripts/boards/queries/group_epics_swimlanes.query.graphql
View file @
ce2bf106
#import "ee_else_ce/boards/queries/board_list.fragment.graphql"
#import "~/graphql_shared/fragments/epic.fragment.graphql"
query
GroupBoardEE
(
$fullPath
:
ID
!,
$boardId
:
ID
!)
{
group
(
fullPath
:
$fullPath
)
{
query
BoardEE
(
$fullPath
:
ID
!
$boardId
:
ID
!
$issueFilters
:
BoardEpicIssueInput
$withLists
:
Boolean
=
true
$isGroup
:
Boolean
=
false
$isProject
:
Boolean
=
false
)
{
group
(
fullPath
:
$fullPath
)
@include
(
if
:
$isGroup
)
{
board
(
id
:
$boardId
)
{
lists
{
lists
@include
(
if
:
$withLists
)
{
nodes
{
...
BoardListFragment
}
}
epics
{
epics
(
issueFilters
:
$issueFilters
)
{
nodes
{
...
EpicNode
}
}
}
}
project
(
fullPath
:
$fullPath
)
@include
(
if
:
$isProject
)
{
board
(
id
:
$boardId
)
{
lists
@include
(
if
:
$withLists
)
{
nodes
{
...
BoardListFragment
}
}
epics
(
issueFilters
:
$issueFilters
)
{
nodes
{
...
EpicNode
}
...
...
ee/app/assets/javascripts/boards/queries/project_epics_swimlanes.query.graphql
deleted
100644 → 0
View file @
2b6d2bdd
#import "ee_else_ce/boards/queries/board_list.fragment.graphql"
#import "~/graphql_shared/fragments/epic.fragment.graphql"
query
ProjectBoardEE
(
$fullPath
:
ID
!,
$boardId
:
ID
!)
{
project
(
fullPath
:
$fullPath
)
{
board
(
id
:
$boardId
)
{
lists
{
nodes
{
...
BoardListFragment
}
}
epics
{
nodes
{
...
EpicNode
}
}
}
}
}
ee/app/assets/javascripts/boards/stores/actions.js
View file @
ce2bf106
...
...
@@ -8,7 +8,6 @@ import * as types from './mutation_types';
import
createDefaultClient
from
'
~/lib/graphql
'
;
import
{
BoardType
}
from
'
~/boards/constants
'
;
import
groupEpicsSwimlanesQuery
from
'
../queries/group_epics_swimlanes.query.graphql
'
;
import
projectEpicsSwimlanesQuery
from
'
../queries/project_epics_swimlanes.query.graphql
'
;
const
notImplemented
=
()
=>
{
/* eslint-disable-next-line @gitlab/require-i18n-strings */
...
...
@@ -17,42 +16,49 @@ const notImplemented = () => {
const
gqlClient
=
createDefaultClient
();
const
fetchEpicsSwimlanes
=
({
endpoints
,
boardType
})
=>
{
const
{
fullPath
,
boardId
}
=
endpoints
;
const
query
=
boardType
===
BoardType
.
group
?
groupEpicsSwimlanesQuery
:
projectEpicsSwimlanesQuery
;
const
variables
=
{
fullPath
,
boardId
:
`gid://gitlab/Board/
${
boardId
}
`
,
};
return
gqlClient
.
query
({
query
,
variables
,
})
.
then
(({
data
})
=>
{
const
{
epics
,
lists
}
=
data
[
boardType
]?.
board
;
const
epicsFormatted
=
epics
.
nodes
.
map
(
e
=>
({
...
e
,
issues
:
(
e
?.
issues
?.
nodes
||
[]).
map
(
i
=>
({
...
i
,
labels
:
i
.
labels
?.
nodes
||
[],
assignees
:
i
.
assignees
?.
nodes
||
[],
})),
}));
return
{
epics
:
epicsFormatted
,
lists
:
lists
.
nodes
,
};
});
};
export
default
{
...
actionsCE
,
fetchEpicsSwimlanes
({
state
,
commit
},
withLists
=
true
)
{
const
{
endpoints
,
boardType
,
filterParams
}
=
state
;
const
{
fullPath
,
boardId
}
=
endpoints
;
const
variables
=
{
fullPath
,
boardId
:
`gid://gitlab/Board/
${
boardId
}
`
,
issueFilters
:
filterParams
,
withLists
,
isGroup
:
boardType
===
BoardType
.
group
,
isProject
:
boardType
===
BoardType
.
project
,
};
return
gqlClient
.
query
({
query
:
groupEpicsSwimlanesQuery
,
variables
,
})
.
then
(({
data
})
=>
{
const
{
epics
,
lists
}
=
data
[
boardType
]?.
board
;
const
epicsFormatted
=
epics
.
nodes
.
map
(
e
=>
({
...
e
,
issues
:
(
e
?.
issues
?.
nodes
||
[]).
map
(
i
=>
({
...
i
,
labels
:
i
.
labels
?.
nodes
||
[],
assignees
:
i
.
assignees
?.
nodes
||
[],
})),
}));
if
(
!
withLists
)
{
commit
(
types
.
RECEIVE_EPICS_SUCCESS
,
epicsFormatted
);
}
return
{
epics
:
epicsFormatted
,
lists
:
lists
?.
nodes
,
};
});
},
setShowLabels
({
commit
},
val
)
{
commit
(
types
.
SET_SHOW_LABELS
,
val
);
},
...
...
@@ -91,11 +97,11 @@ export default {
notImplemented
();
},
toggleEpicSwimlanes
:
({
state
,
commit
})
=>
{
toggleEpicSwimlanes
:
({
state
,
commit
,
dispatch
})
=>
{
commit
(
types
.
TOGGLE_EPICS_SWIMLANES
);
if
(
state
.
isShowingEpicsSwimlanes
)
{
fetchEpicsSwimlanes
(
state
)
dispatch
(
'
fetchEpicsSwimlanes
'
)
.
then
(({
lists
,
epics
})
=>
{
if
(
lists
)
{
let
boardLists
=
lists
.
map
(
list
=>
...
...
spec/frontend/boards/stores/actions_spec.js
View file @
ce2bf106
...
...
@@ -26,6 +26,25 @@ describe('setInitialBoardData', () => {
});
});
describe
(
'
setFilters
'
,
()
=>
{
it
(
'
should commit mutation SET_FILTERS
'
,
done
=>
{
const
state
=
{
filters
:
{},
};
const
filters
=
{
labelName
:
'
label
'
};
testAction
(
actions
.
setFilters
,
filters
,
state
,
[{
type
:
types
.
SET_FILTERS
,
payload
:
filters
}],
[],
done
,
);
});
});
describe
(
'
setActiveId
'
,
()
=>
{
it
(
'
should commit mutation SET_ACTIVE_ID
'
,
done
=>
{
const
state
=
{
...
...
spec/frontend/boards/stores/mutations_spec.js
View file @
ce2bf106
...
...
@@ -44,6 +44,16 @@ describe('Board Store Mutations', () => {
});
});
describe
(
'
SET_FILTERS
'
,
()
=>
{
it
(
'
updates filterParams to be the value that is passed
'
,
()
=>
{
const
filterParams
=
{
labelName
:
'
label
'
};
mutations
.
SET_FILTERS
(
state
,
filterParams
);
expect
(
state
.
filterParams
).
toBe
(
filterParams
);
});
});
describe
(
'
REQUEST_ADD_LIST
'
,
()
=>
{
expectNotImplemented
(
mutations
.
REQUEST_ADD_LIST
);
});
...
...
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