You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
609 B
17 lines
609 B
import { locationService } from '@grafana/runtime';
|
|
import { useLocation } from 'react-router-dom';
|
|
|
|
export type UseUrlParamsResult = [URLSearchParams, (params: Record<string, any>, replace?: boolean) => void];
|
|
|
|
/** @internal experimental */
|
|
export function useUrlParams(): UseUrlParamsResult {
|
|
const location = useLocation();
|
|
const params = new URLSearchParams(location.search);
|
|
|
|
const updateUrlParams = (params: Record<string, any>, replace?: boolean) => {
|
|
// Should find a way to use history directly here
|
|
locationService.partial(params, replace);
|
|
};
|
|
|
|
return [params, updateUrlParams];
|
|
}
|
|
|