-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Dashboard] Bloc zones réglementaires + Création du composant accordéon #1711
Conversation
ac379fb
to
1d22b1f
Compare
|
||
const AccordionContainer = styled.div<{ $withCursor: boolean }>` | ||
box-shadow: 0px 3px 6px #70778540; | ||
cursor: ${({ $withCursor }) => ($withCursor ? 'pointer' : 'default')}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: pourquoi mettre tout le container avec le pointer ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
c'était une demande de Xavier de pouvoir cliquer sur tout le container pour ouvrir l'accordéon. J'ai fait sur tout le container quand il n'y a pas d'autre icône et quand il y a une icône (cf bloc signalement) , je l'ai mis seulement sur le chevron.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion: comme ce n'est pas un bouton mais une div cliquable. Ce serait bien d'avoir un aria-control
qui réfère ce qu'il se ferme ou pas ainsi qu'un aria-expanded
frontend/src/features/Dashboard/components/DashboardForm/Accordion.tsx
Outdated
Show resolved
Hide resolved
frontend/src/features/Dashboard/components/DashboardForm/Accordion.tsx
Outdated
Show resolved
Hide resolved
font-weight: 500; | ||
` | ||
|
||
const HeaderSeparator = styled.div` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion: si tu met la border-bottom sur la div du container ca fait le meme taf non ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Le header a un padding alors que le trait fait toute la longueur c'est pour ça
frontend/src/features/Dashboard/components/DashboardForm/RegulatoryAreas/Layer.tsx
Outdated
Show resolved
Hide resolved
frontend/src/features/Dashboard/components/DashboardForm/RegulatoryAreas/Panel.tsx
Outdated
Show resolved
Hide resolved
108e8a2
to
fd48c76
Compare
8d08dbd
to
4cc4966
Compare
Création du composant
Accordion
Gestion de la fermeture des autres accordéons
Pour le moment j'ai mis un click sur toute la longueur du titre s'il n'y a pas d'autre bouton dans le titre, s'il y en a il faut cliquer sur le chevron pour ouvrir/ fermer l'accordéon
Ajout du bloc "Zones réglementaires"
Resolve [Brief et Tableau de Bord] Création du bloc zones réglementaires #1714