mirror of https://github.com/portainer/portainer
26 lines
679 B
TypeScript
26 lines
679 B
TypeScript
import { useCurrentStateAndParams } from '@uirouter/react';
|
|
|
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
|
|
|
/**
|
|
* useEnvironmentId is a hook that returns the environmentId from the url params.
|
|
* use only when endpointId is set in the path.
|
|
* for example: /kubernetes/clusters/:endpointId
|
|
* for `:id` paths, use a different hook
|
|
*/
|
|
export function useEnvironmentId(force = true): EnvironmentId {
|
|
const {
|
|
params: { endpointId: environmentId },
|
|
} = useCurrentStateAndParams();
|
|
|
|
if (!environmentId) {
|
|
if (!force) {
|
|
return 0;
|
|
}
|
|
|
|
throw new Error('endpointId url param is required');
|
|
}
|
|
|
|
return parseInt(environmentId, 10);
|
|
}
|