Commit 6f76936c authored by Fatih Acet's avatar Fatih Acet

Merge branch '27124-search-bar-does-not-load-discussion-notes-selected-labels' into 'master'

Fix filtered search so that labels selected from discussion notes display correctly

Closes #27124

See merge request !8756
parents abc50fa5 cd13d5dc
...@@ -21,6 +21,15 @@ ...@@ -21,6 +21,15 @@
symbol: '~', symbol: '~',
}]; }];
const alternativeTokenKeys = [{
key: 'label',
type: 'string',
param: 'name',
symbol: '~',
}];
const tokenKeysWithAlternative = tokenKeys.concat(alternativeTokenKeys);
const conditions = [{ const conditions = [{
url: 'assignee_id=0', url: 'assignee_id=0',
tokenKey: 'assignee', tokenKey: 'assignee',
...@@ -44,6 +53,10 @@ ...@@ -44,6 +53,10 @@
return tokenKeys; return tokenKeys;
} }
static getAlternatives() {
return alternativeTokenKeys;
}
static getConditions() { static getConditions() {
return conditions; return conditions;
} }
...@@ -57,7 +70,7 @@ ...@@ -57,7 +70,7 @@
} }
static searchByKeyParam(keyParam) { static searchByKeyParam(keyParam) {
return tokenKeys.find((tokenKey) => { return tokenKeysWithAlternative.find((tokenKey) => {
let tokenKeyParam = tokenKey.key; let tokenKeyParam = tokenKey.key;
if (tokenKey.param) { if (tokenKey.param) {
......
...@@ -72,6 +72,12 @@ ...@@ -72,6 +72,12 @@
const result = gl.FilteredSearchTokenKeys.searchByKeyParam(`${tokenKeys[0].key}_${tokenKeys[0].param}`); const result = gl.FilteredSearchTokenKeys.searchByKeyParam(`${tokenKeys[0].key}_${tokenKeys[0].param}`);
expect(result).toEqual(tokenKeys[0]); expect(result).toEqual(tokenKeys[0]);
}); });
it('should return alternative tokenKey when found by key param', () => {
const tokenKeys = gl.FilteredSearchTokenKeys.getAlternatives();
const result = gl.FilteredSearchTokenKeys.searchByKeyParam(`${tokenKeys[0].key}_${tokenKeys[0].param}`);
expect(result).toEqual(tokenKeys[0]);
});
}); });
describe('searchByConditionUrl', () => { describe('searchByConditionUrl', () => {
......
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