aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/modals/search-modal.tsx
Commit message (Collapse)AuthorAgeFilesLines
* refactor(components): replace Toolbar with Navbar componentArmand Philippot2023-11-111-45/+0
| | | | | | | | * remove SearchModal and SettingsModal components * add a generic NavbarItem component (instead of the previous toolbar items to avoid unreadable styles...) * move FlippingLabel component logic into NavbarItem since it is only used here
* refactor(components): rewrite Modal componentArmand Philippot2023-11-111-2/+3
| | | | | * add an optional close button * add an icon prop
* refactor(components): rewrite form componentsArmand Philippot2023-10-241-3/+10
|
* refactor: use named export for everything except pagesArmand Philippot2023-09-201-10/+10
| | | | | | Next expect a default export for pages so only those components should use default exports. Everything else should use named exports to reduce the number of import statements.
* refactor(build): replace paths aliases with relative pathsArmand Philippot2023-09-191-1/+1
| | | | | | Using paths aliases starting with "@" can be confusing and can lead to conflict with existings modules. I prefer to use relative paths to avoid extra configuration in tools because of these aliases.
* chore: give autofocus to the toolbar search formArmand Philippot2022-05-241-16/+9
|
* chore: handle settings changeArmand Philippot2022-05-181-0/+1
|
* chore: close toolbar modals on click/focus outsideArmand Philippot2022-05-181-2/+11
|
* chore: add Search pageArmand Philippot2022-05-151-4/+4
|
* refactor: support React 18Armand Philippot2022-04-161-4/+4
| | | | | | | | I replaced the deprecated VFC type with FC type and made all children explicits. Formatjs is still not compatible with React 18 so I need to skip type checking when comitting. There are some type errors because of IntlProvider in Storybook stories.
* chore: add a SearchModal componentArmand Philippot2022-04-141-0/+34