mirror of
https://github.com/grafana/grafana.git
synced 2025-01-07 14:43:42 -06:00
89c8855f9d
* Search: add search wrapper * Search: add DashboardSearch.tsx * Search: enable search * Search: update types * Search: useReducer for saving search results * Search: use default query * Search: add toggle custom action * Search: add onQueryChange * Search: debounce search * Search: pas dispatch as a prop * Search: add tag filter * Search: Fix types * Search: revert changes * Search: close overlay on esc * Search: enable tag filtering * Search: clear query * Search: add autofocus to search field * Search: Rename close to closeSearch * Search: Add no results message * Search: Add loading state * Search: Remove Select from Forms namespace * Remove Add selectedIndex * Remove Add getFlattenedSections * Remove Enable selecting items * Search: add hasId * Search: preselect first item * Search: Add utils tests * Search: Fix moving selection down * Search: Add findSelected * Search: Add type to section * Search: Handle Enter key press on item highlight * Search: Move reducer et al. to separate files * Search: Remove redundant render check * Search: Close overlay on Esc and ArrowLeft press * Search: Add close button * Search: Document utils * Search: use Icon for remove icon * Search: Add DashboardSearch.test.tsx * Search: Move test data to a separate file * Search: Finalise DashboardSearch.test.tsx * Add search reducer tests * Search: Add search results loading indicator * Search: Remove inline function * Search: Do not mutate item * Search: Tweak utils * Search: Do not clear query on tag clear * Search: Fix folder:current search * Search: Fix results scroll * Search: Update tests * Search: Close overlay on cog icon click * Add mobile styles for close button * Search: Use CustomScrollbar * Search: Memoize TagList.tsx * Search: Fix type errors * Search: More strictNullChecks fixes * Search: Add ManageDashboards.tsx * Search: Add mergeReducers * Search: Use mergeReducers * Search: remove default state from reducers * Search: Fix recent and starred icons * Search: Enable search * Search: Add markup * Search: Separate manageDashboardsReducer * Search: Add DashboardActions.tsx * Use new Select for TagFilter * Search: Use TagFilter for search filters * Search: Use TagList * Search: Add toggleSection * Search: Add more actions * Search add manageDashboards.test.ts * Search: Add getCheckedUids * Search: Add modify and toggle checked actions * Search: Update tests * Search: Update component template * Search: Enable section toggle * Search: Derive canMove and canDelete * Search: Handle delete items * Search: Fix tests * Search: Enable toggle items * Search: Add confirm modal subtitle * Search: Use theme vars * Search: Add getCheckedDashboardsUids * Search: Add MoveToFolderModal * Search: Enable moving dashboards * Search: Fix strict null checks errors * Search: Fix strict null checks errors[2] * Search: Enable filters * Search: Add useSearchQuery.ts * Search: Toggle items when toggling all * Search: Update useSearchQuery to accept custom params * Search: Add useSearchQuery to dashboard search * Search: use SearchField for manage dashboards * Search: Remove event param from query change * Search: Add base search hooks * Search: refactor useSearch to accept reducer * Search: use useDashboardSearch hook * Search: Fix useSearchQuery params * Search: Enable folder search * Search: Update tests * Search: Pass the props to manage-dashboards * Search: Add search filters margin * Search: Remove search-field-wrapper class and hide logic for it * Search: Adjust SearchField styles * Search: Move search-results-container inside SearchResults * Search: Fix type errors * Search: Add EmptyListCTA * Search: Update move message * Search: Cleanup * Search: Add todo * Search: Fix action type * Search: Use React wrapper vs FolderDashboardsCtrl and DashboardListCtrl * Search: DashboardList => DashboardListPage * Search: Remove ManageDashboards from angular_wrappers * Minor style tweaks * Search: Use LinkButton Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
150 lines
5.1 KiB
TypeScript
150 lines
5.1 KiB
TypeScript
import {
|
|
findSelected,
|
|
getCheckedDashboardsUids,
|
|
getCheckedUids,
|
|
getFlattenedSections,
|
|
markSelected,
|
|
mergeReducers,
|
|
} from './utils';
|
|
import { sections, searchResults } from './testData';
|
|
|
|
describe('Search utils', () => {
|
|
describe('getFlattenedSections', () => {
|
|
it('should return an array of items plus children for expanded items', () => {
|
|
const flatSections = getFlattenedSections(sections as any[]);
|
|
expect(flatSections).toHaveLength(10);
|
|
expect(flatSections).toEqual([
|
|
'Starred',
|
|
'Starred-1',
|
|
'Recent',
|
|
'2',
|
|
'2568',
|
|
'4074',
|
|
'0',
|
|
'0-4069',
|
|
'0-4072',
|
|
'0-1',
|
|
]);
|
|
});
|
|
|
|
describe('markSelected', () => {
|
|
it('should correctly mark the section item without id as selected', () => {
|
|
const results = markSelected(sections as any, 'Recent');
|
|
//@ts-ignore
|
|
expect(results[1].selected).toBe(true);
|
|
});
|
|
|
|
it('should correctly mark the section item with id as selected', () => {
|
|
const results = markSelected(sections as any, '4074');
|
|
//@ts-ignore
|
|
expect(results[4].selected).toBe(true);
|
|
});
|
|
|
|
it('should mark all other sections as not selected', () => {
|
|
const results = markSelected(sections as any, 'Starred');
|
|
const newResults = markSelected(results as any, '0');
|
|
//@ts-ignore
|
|
expect(newResults[0].selected).toBeFalsy();
|
|
expect(newResults[5].selected).toBeTruthy();
|
|
});
|
|
|
|
it('should correctly mark an item of a section as selected', () => {
|
|
const results = markSelected(sections as any, '0-4072');
|
|
expect(results[5].items[1].selected).toBeTruthy();
|
|
});
|
|
|
|
it('should not mark an item as selected for non-expanded section', () => {
|
|
const results = markSelected(sections as any, 'Recent-4072');
|
|
expect(results[1].items[0].selected).toBeFalsy();
|
|
});
|
|
|
|
it('should mark all other items as not selected', () => {
|
|
const results = markSelected(sections as any, '0-4069');
|
|
const newResults = markSelected(results as any, '0-1');
|
|
//@ts-ignore
|
|
expect(newResults[5].items[0].selected).toBeFalsy();
|
|
expect(newResults[5].items[1].selected).toBeFalsy();
|
|
expect(newResults[5].items[2].selected).toBeTruthy();
|
|
});
|
|
|
|
it('should correctly select one of the same items in different sections', () => {
|
|
const results = markSelected(sections as any, 'Starred-1');
|
|
expect(results[0].items[0].selected).toBeTruthy();
|
|
// Same item in diff section
|
|
expect(results[5].items[2].selected).toBeFalsy();
|
|
|
|
// Switch order
|
|
const newResults = markSelected(sections as any, '0-1');
|
|
expect(newResults[0].items[0].selected).toBeFalsy();
|
|
// Same item in diff section
|
|
expect(newResults[5].items[2].selected).toBeTruthy();
|
|
});
|
|
});
|
|
|
|
describe('findSelected', () => {
|
|
it('should find selected section', () => {
|
|
const results = [...sections, { id: 'Test', selected: true }];
|
|
|
|
const found = findSelected(results);
|
|
expect(found?.id).toEqual('Test');
|
|
});
|
|
|
|
it('should find selected item', () => {
|
|
const results = [{ expanded: true, id: 'Test', items: [{ id: 1 }, { id: 2, selected: true }, { id: 3 }] }];
|
|
|
|
const found = findSelected(results);
|
|
expect(found?.id).toEqual(2);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('mergeReducers', () => {
|
|
const reducer1 = (state: any = { reducer1: false }, action: any) => {
|
|
if (action.type === 'reducer1') {
|
|
return { ...state, reducer1: !state.reducer1 };
|
|
}
|
|
return state;
|
|
};
|
|
|
|
const reducer2 = (state: any = { reducer2: false }, action: any) => {
|
|
if (action.type === 'reducer2') {
|
|
return { ...state, reducer2: !state.reducer2 };
|
|
}
|
|
return state;
|
|
};
|
|
|
|
const mergedReducers = mergeReducers([reducer1, reducer2]);
|
|
|
|
it('should merge state from all reducers into one without nesting', () => {
|
|
expect(mergedReducers({ reducer1: false }, { type: '' })).toEqual({ reducer1: false });
|
|
});
|
|
|
|
it('should correctly set state from multiple reducers', () => {
|
|
const state = { reducer1: false, reducer2: true };
|
|
const newState = mergedReducers(state, { type: 'reducer2' });
|
|
expect(newState).toEqual({ reducer1: false, reducer2: false });
|
|
const newState2 = mergedReducers(newState, { type: 'reducer1' });
|
|
expect(newState2).toEqual({ reducer1: true, reducer2: false });
|
|
});
|
|
});
|
|
|
|
describe('getCheckedUids', () => {
|
|
it('should return object with empty arrays if no checked items are available', () => {
|
|
expect(getCheckedUids(sections as any[])).toEqual({ folders: [], dashboards: [] });
|
|
});
|
|
|
|
it('should return uids for all checked items', () => {
|
|
expect(getCheckedUids(searchResults as any[])).toEqual({
|
|
folders: ['JB_zdOUWk'],
|
|
dashboards: ['lBdLINUWk', '8DY63kQZk'],
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('getCheckedDashboardsUids', () => {
|
|
it('should get uids of all checked dashboards', () => {
|
|
expect(getCheckedDashboardsUids(searchResults as any[])).toEqual(['lBdLINUWk', '8DY63kQZk']);
|
|
});
|
|
});
|
|
});
|