-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Charge la liste des catégories pour le filtrage des indicateurs depui…
…s le backend
- Loading branch information
1 parent
de5a4f6
commit d69de31
Showing
3 changed files
with
36 additions
and
21 deletions.
There are no files selected for viewing
38 changes: 20 additions & 18 deletions
38
...oiresentransitions.react/src/ui/dropdownLists/indicateur/IndicateurCategoriesDropdown.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
app.territoiresentransitions.react/src/ui/dropdownLists/indicateur/use-categorie-tags.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { trpc } from '@/api/utils/trpc/client'; | ||
import { useCollectiviteId } from '../../../core-logic/hooks/params'; | ||
|
||
export const useCategorieTags = () => { | ||
const collectiviteId = useCollectiviteId(); | ||
if (!collectiviteId) return { data: null }; | ||
return trpc.tags.categories.list.useQuery({ | ||
collectiviteId, | ||
withPredefinedTags: true, | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters