BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
cf8ae790
Commit
cf8ae790
authored
Nov 07, 2016
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add filter params to search
parent
71dc5af9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
10 deletions
+22
-10
filtered_search_manager.js.es6
...avascripts/filtered_search/filtered_search_manager.js.es6
+22
-10
No files found.
app/assets/javascripts/filtered_search/filtered_search_manager.js.es6
View file @
cf8ae790
...
...
@@ -5,15 +5,19 @@
const validTokenKeys = [{
key: 'author',
type: 'string',
param: 'id',
},{
key: 'assignee',
type: 'string'
type: 'string',
param: 'id',
},{
key: 'milestone',
type: 'string'
type: 'string',
param: 'title',
},{
key: 'label',
type: 'array'
type: 'array',
param: 'name%5B%5D',
},];
class FilteredSearchManager {
...
...
@@ -53,14 +57,14 @@
const tokenValue = i.slice(colonIndex + 1);
const match = validTokenKeys.filter((v) => {
return v.
name
=== tokenKey;
return v.
key
=== tokenKey;
})[0];
if (match) {
this.tokens.push =
{
if (match
&& tokenValue.length > 0
) {
this.tokens.push(
{
key: match.key,
value: tokenValue,
}
;
})
;
}
} else {
searchTerms += i + ' ';
...
...
@@ -72,8 +76,11 @@
}
printTokens() {
console.log(this.tokens);
console.log(this.searchToken);
console.log('tokens:')
this.tokens.forEach((token) => {
console.log(token);
})
console.log('search: ' + this.searchToken);
}
checkForEnter(event) {
...
...
@@ -88,8 +95,13 @@
console.log('search');
let path = '?scope=all&state=opened&utf8=✓';
this.tokens.foreach((token) => {
this.tokens.forEach((token) => {
const param = validTokenKeys.find((t) => {
return t.key === token.key;
}).param;
path += `&${token.key}_${param}=${token.value}`;
});
if (this.searchToken) {
...
...
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