mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
* Initial commit * Progress * Update * Progress * updates * Minor fix * fixed ts issue * fixed e2e tests * More explorations * Making progress * Panel options and field options unified * With nested categories * Starting to find something * fix paddings * Progress * Breakthrough ux layout * Progress * Updates * New way of composing options with search * added regex search * Refactoring to react note tree * Show overrides * Adding overrides radio button support * Added popular view * Separate stat/gauge/bargauge options into value options and display options * Initial work on getting library panels into viz picker flow * Fixed issues switching to panel library panel * Move search input put of LibraryPanelsView * Changing design again to have content inside boxes * Style updates * Refactoring to fix scroll issue * Option category naming * Fixed FilterInput issue * Updated snapshots * Fix padding * Updated viz picker design * Unify library panel an viz picker card * Updated card with delete action * Major refactoring back to an object model instead of searching and filtering react node tree * More refactoring * Show option category in label when searching * Nice logic for categories rendering when searching or when only child * Make getSuggestions more lazy for DataLinksEditor * Add missing repeat options and handle conditional options * Prepping options category to be more flexibly and control state from outside * Added option count to search result * Minor style tweak * Added button to close viz picker * Rewrote overrides to enable searching overrides * New search engine and tests * Searching overrides works * Hide radio buttons while searching * Added angular options back * Added memoize for all options so they are not rebuilt for every search key stroke * Added back support for category counters * Started unit test work * Refactoring and base popular options list * Initial update to e2e test, more coming to add e2e test for search features * Minor fix * Review updates * Fixing category open states * Unit test progress * Do not show visualization list mode radio button if library panels is not enabled * Use boolean * More unit tests * Increase library panels per page count and give search focus when switching list mode * field config change test and search test * Feedback updates * Minor tweaks * Minor refactorings * More minimal override collapse state
77 lines
2.4 KiB
TypeScript
77 lines
2.4 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { setUsersSearchQuery } from './state/reducers';
|
|
import { getInviteesCount, getUsersSearchQuery } from './state/selectors';
|
|
import { FilterInput } from 'app/core/components/FilterInput/FilterInput';
|
|
import { RadioButtonGroup, LinkButton } from '@grafana/ui';
|
|
|
|
export interface Props {
|
|
searchQuery: string;
|
|
setUsersSearchQuery: typeof setUsersSearchQuery;
|
|
onShowInvites: () => void;
|
|
pendingInvitesCount: number;
|
|
canInvite: boolean;
|
|
showInvites: boolean;
|
|
externalUserMngLinkUrl: string;
|
|
externalUserMngLinkName: string;
|
|
}
|
|
|
|
export class UsersActionBar extends PureComponent<Props> {
|
|
render() {
|
|
const {
|
|
canInvite,
|
|
externalUserMngLinkName,
|
|
externalUserMngLinkUrl,
|
|
searchQuery,
|
|
pendingInvitesCount,
|
|
setUsersSearchQuery,
|
|
onShowInvites,
|
|
showInvites,
|
|
} = this.props;
|
|
const options = [
|
|
{ label: 'Users', value: 'users' },
|
|
{ label: `Pending Invites (${pendingInvitesCount})`, value: 'invites' },
|
|
];
|
|
|
|
return (
|
|
<div className="page-action-bar">
|
|
<div className="gf-form gf-form--grow">
|
|
<FilterInput
|
|
value={searchQuery}
|
|
onChange={setUsersSearchQuery}
|
|
placeholder="Search user by login, email or name"
|
|
/>
|
|
{pendingInvitesCount > 0 && (
|
|
<div style={{ marginLeft: '1rem' }}>
|
|
<RadioButtonGroup value={showInvites ? 'invites' : 'users'} options={options} onChange={onShowInvites} />
|
|
</div>
|
|
)}
|
|
<div className="page-action-bar__spacer" />
|
|
{canInvite && <LinkButton href="org/users/invite">Invite</LinkButton>}
|
|
{externalUserMngLinkUrl && (
|
|
<LinkButton href={externalUserMngLinkUrl} target="_blank" rel="noopener">
|
|
{externalUserMngLinkName}
|
|
</LinkButton>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
function mapStateToProps(state: any) {
|
|
return {
|
|
searchQuery: getUsersSearchQuery(state.users),
|
|
pendingInvitesCount: getInviteesCount(state.users),
|
|
externalUserMngLinkName: state.users.externalUserMngLinkName,
|
|
externalUserMngLinkUrl: state.users.externalUserMngLinkUrl,
|
|
canInvite: state.users.canInvite,
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
setUsersSearchQuery,
|
|
};
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(UsersActionBar);
|