Files
Josh Hunt e0c5b4f0e0 NestedFolders: Basic item selection (#66843)
* NestedFolders: Item selection state

* Select children in state

* Unselect parents when children are unselected

* remove unneeded comment

* tests

* tidy test a little bit

* tidy test a little bit

* tidy test a little bit

* tidy test a little bit

* tidy test a little bit
2023-04-19 22:44:07 +03:00

90 lines
2.4 KiB
TypeScript

import { DataFrameView, IconName } from '@grafana/data';
import { getDashboardSrv } from 'app/features/dashboard/services/DashboardSrv';
import { DashboardViewItem } from '../types';
import { DashboardQueryResult, SearchQuery, SearchResultMeta } from './types';
/** prepare the query replacing folder:current */
export async function replaceCurrentFolderQuery(query: SearchQuery): Promise<SearchQuery> {
if (query.query && query.query.indexOf('folder:current') >= 0) {
query = {
...query,
location: await getCurrentFolderUID(),
query: query.query.replace('folder:current', '').trim(),
};
if (!query.query?.length) {
query.query = '*';
}
}
return Promise.resolve(query);
}
async function getCurrentFolderUID(): Promise<string | undefined> {
try {
let dash = getDashboardSrv().getCurrent();
if (!dash) {
await delay(500); // may not be loaded yet
dash = getDashboardSrv().getCurrent();
}
return Promise.resolve(dash?.meta?.folderUid);
} catch (e) {
console.error(e);
}
return undefined;
}
function delay(ms: number) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
export function getIconForKind(kind: string): IconName {
if (kind === 'dashboard') {
return 'apps';
}
if (kind === 'folder') {
return 'folder';
}
return 'question-circle';
}
export function queryResultToViewItem(
item: DashboardQueryResult,
view?: DataFrameView<DashboardQueryResult>
): DashboardViewItem {
const meta = view?.dataFrame.meta?.custom as SearchResultMeta | undefined;
const viewItem: DashboardViewItem = {
kind: 'dashboard',
uid: item.uid,
title: item.name,
url: item.url,
tags: item.tags ?? [],
};
// Set enterprise sort value property
const sortFieldName = meta?.sortBy;
if (sortFieldName) {
const sortFieldValue = item[sortFieldName];
if (typeof sortFieldValue === 'string' || typeof sortFieldValue === 'number') {
viewItem.sortMetaName = sortFieldName;
viewItem.sortMeta = sortFieldValue;
}
}
if (item.location) {
const ancestors = item.location.split('/');
const parentUid = ancestors[ancestors.length - 1];
const parentInfo = meta?.locationInfo[parentUid];
if (parentInfo) {
viewItem.parentTitle = parentInfo.name;
viewItem.parentKind = parentInfo.kind;
viewItem.parentUID = parentUid;
}
}
return viewItem;
}