Files
Hugo Häggmark 2b8c74de2e i18n: removes useTranslate hook (#106556)
* i18n: removes useTranslate hook

* chore: fix duplicate imports

* chore: fix import sorting and hook dependencies
2025-06-12 11:03:52 +02:00

94 lines
2.3 KiB
TypeScript

import debounce from 'debounce-promise';
import { isNil } from 'lodash';
import { Component } from 'react';
import { SelectableValue } from '@grafana/data';
import { t } from '@grafana/i18n';
import { getBackendSrv } from '@grafana/runtime';
import { AsyncSelect } from '@grafana/ui';
import { Team } from 'app/types';
export interface Props {
onSelected: (team: SelectableValue<Team>) => void;
className?: string;
teamId?: number;
}
export interface State {
isLoading: boolean;
value?: SelectableValue<Team>;
}
export class TeamPicker extends Component<Props, State> {
constructor(props: Props) {
super(props);
this.state = { isLoading: false };
}
componentDidMount(): void {
const { teamId } = this.props;
if (!teamId) {
return;
}
getBackendSrv()
.get(`/api/teams/${teamId}`)
.then((team: Team) => {
this.setState({
value: {
value: team,
label: team.name,
imgUrl: team.avatarUrl,
},
});
});
}
search = debounce(
async (query?: string) => {
this.setState({ isLoading: true });
if (isNil(query)) {
query = '';
}
return getBackendSrv()
.get(`/api/teams/search?perpage=100&page=1&query=${query}`)
.then((result: { teams: Team[] }) => {
const teams: Array<SelectableValue<Team>> = result.teams.map((team) => {
return {
value: team,
label: team.name,
imgUrl: team.avatarUrl,
};
});
this.setState({ isLoading: false });
return teams;
});
},
300,
{ leading: true }
);
render() {
const { onSelected, className } = this.props;
const { isLoading, value } = this.state;
return (
<div className="user-picker" data-testid="teamPicker">
<AsyncSelect
isLoading={isLoading}
defaultOptions={true}
loadOptions={this.search}
value={value}
onChange={onSelected}
className={className}
placeholder={t('team-picker.select-placeholder', 'Select a team')}
noOptionsMessage="No teams found"
aria-label={t('team-picker.select-aria-label', 'Team picker')}
/>
</div>
);
}
}