mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* FolderPicker: Add permission filter to nested folder picker * Add permission filtering to Searcher * make default edit only * dashlist view folders * update tests
83 lines
2.4 KiB
TypeScript
83 lines
2.4 KiB
TypeScript
import React from 'react';
|
|
|
|
import { PanelPlugin } from '@grafana/data';
|
|
import { TagsInput } from '@grafana/ui';
|
|
import { FolderPicker } from 'app/core/components/Select/FolderPicker';
|
|
import { PermissionLevelString } from 'app/types';
|
|
|
|
import { DashList } from './DashList';
|
|
import { dashlistMigrationHandler } from './migrations';
|
|
import { defaultOptions, Options } from './panelcfg.gen';
|
|
|
|
export const plugin = new PanelPlugin<Options>(DashList)
|
|
.setPanelOptions((builder) => {
|
|
builder
|
|
.addBooleanSwitch({
|
|
path: 'keepTime',
|
|
name: 'Include current time range',
|
|
defaultValue: defaultOptions.keepTime,
|
|
})
|
|
.addBooleanSwitch({
|
|
path: 'includeVars',
|
|
name: 'Include current template variable values',
|
|
defaultValue: defaultOptions.includeVars,
|
|
})
|
|
.addBooleanSwitch({
|
|
path: 'showStarred',
|
|
name: 'Starred',
|
|
defaultValue: defaultOptions.showStarred,
|
|
})
|
|
.addBooleanSwitch({
|
|
path: 'showRecentlyViewed',
|
|
name: 'Recently viewed',
|
|
defaultValue: defaultOptions.showRecentlyViewed,
|
|
})
|
|
.addBooleanSwitch({
|
|
path: 'showSearch',
|
|
name: 'Search',
|
|
defaultValue: defaultOptions.showSearch,
|
|
})
|
|
.addBooleanSwitch({
|
|
path: 'showHeadings',
|
|
name: 'Show headings',
|
|
defaultValue: defaultOptions.showHeadings,
|
|
})
|
|
.addNumberInput({
|
|
path: 'maxItems',
|
|
name: 'Max items',
|
|
defaultValue: defaultOptions.maxItems,
|
|
})
|
|
.addTextInput({
|
|
path: 'query',
|
|
name: 'Query',
|
|
defaultValue: defaultOptions.query,
|
|
})
|
|
.addCustomEditor({
|
|
path: 'folderUID',
|
|
name: 'Folder',
|
|
id: 'folderUID',
|
|
defaultValue: undefined,
|
|
editor: function RenderFolderPicker({ value, onChange }) {
|
|
return (
|
|
<FolderPicker
|
|
clearable
|
|
permission={PermissionLevelString.View}
|
|
value={value}
|
|
onChange={(folderUID) => onChange(folderUID)}
|
|
/>
|
|
);
|
|
},
|
|
})
|
|
.addCustomEditor({
|
|
id: 'tags',
|
|
path: 'tags',
|
|
name: 'Tags',
|
|
description: '',
|
|
defaultValue: defaultOptions.tags,
|
|
editor(props) {
|
|
return <TagsInput tags={props.value} onChange={props.onChange} />;
|
|
},
|
|
});
|
|
})
|
|
.setMigrationHandler(dashlistMigrationHandler);
|