Skip to content

Commit

Permalink
ajout de commentaires à exemple_probleme.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
paullfhc committed Dec 17, 2024
1 parent e0484d0 commit c1fc08c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ssr-testing/app/checkbox/exemple_probleme.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Ce fichier est une implémentation du problème de base
// Il génère une erreur "infinite depth"
// Pour tester le problème, il faut renommer le fichier en page.tsx

'use client';
Expand All @@ -6,17 +8,19 @@ import * as React from 'react';
import * as Checkbox from '@radix-ui/react-checkbox';

export default function Page() {
// État (booléen) associé à la checkbox et au div
const [isChecked, setIsChecked] = React.useState(false);

// Fonction pour alterner l’état de la checkbox
const handleCheckedChange = (newChecked: boolean) => {
console.log('Checkbox checked:', newChecked); // Affiche l'état dans la console
setIsChecked(newChecked);
};

return (
<form>
<div onClick={() => setIsChecked((prev) => !prev)}>
<Checkbox.Root checked={isChecked} onCheckedChange={handleCheckedChange}>
<div onClick={() => setIsChecked((prev) => !prev)}> {/* Alterne l’état*/}
<Checkbox.Root checked={isChecked} onCheckedChange={handleCheckedChange}> {/* Associe l'état de la checkbox et la fonction d'inversion de l'état*/}
[ <Checkbox.Indicator></Checkbox.Indicator> ]
</Checkbox.Root>
<span>test</span>
Expand Down

0 comments on commit c1fc08c

Please sign in to comment.