-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix action menu dropdown not closing when clicking outside the table or board and introduce helper functions to get the action menu component ids.
- Loading branch information
1 parent
278ab4c
commit a6007d4
Showing
21 changed files
with
164 additions
and
76 deletions.
There are no files selected for viewing
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
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
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
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
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
18 changes: 12 additions & 6 deletions
18
packages/twenty-front/src/modules/action-menu/hooks/useActionMenu.ts
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
9 changes: 9 additions & 0 deletions
9
...enty-front/src/modules/action-menu/utils/__tests__/getActionBarIdFromActionMenuId.test.ts
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,9 @@ | ||
import { getActionBarIdFromActionMenuId } from '@/action-menu/utils/getActionBarIdFromActionMenuId'; | ||
|
||
describe('getActionBarIdFromActionMenuId', () => { | ||
it('should return the correct action bar id', () => { | ||
expect(getActionBarIdFromActionMenuId('action-menu-id')).toBe( | ||
'action-bar-action-menu-id', | ||
); | ||
}); | ||
}); |
9 changes: 9 additions & 0 deletions
9
...t/src/modules/action-menu/utils/__tests__/getActionMenuDropdownIdFromActionMenuId.test.ts
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,9 @@ | ||
import { getActionMenuDropdownIdFromActionMenuId } from '@/action-menu/utils/getActionMenuDropdownIdFromActionMenuId'; | ||
|
||
describe('getActionMenuDropdownIdFromActionMenuId', () => { | ||
it('should return the correct action menu dropdown id', () => { | ||
expect(getActionMenuDropdownIdFromActionMenuId('action-menu-id')).toBe( | ||
'action-menu-dropdown-action-menu-id', | ||
); | ||
}); | ||
}); |
9 changes: 9 additions & 0 deletions
9
...ty-front/src/modules/action-menu/utils/__tests__/getActionMenuIdFromRecordIndexId.test.ts
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,9 @@ | ||
import { getActionMenuIdFromRecordIndexId } from '@/action-menu/utils/getActionMenuIdFromRecordIndexId'; | ||
|
||
describe('getActionMenuIdFromRecordIndexId', () => { | ||
it('should return the correct action menu id', () => { | ||
expect(getActionMenuIdFromRecordIndexId('record-index-id')).toBe( | ||
'action-menu-record-index-record-index-id', | ||
); | ||
}); | ||
}); |
3 changes: 3 additions & 0 deletions
3
packages/twenty-front/src/modules/action-menu/utils/getActionBarIdFromActionMenuId.ts
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,3 @@ | ||
export const getActionBarIdFromActionMenuId = (actionMenuId: string) => { | ||
return `action-bar-${actionMenuId}`; | ||
}; |
5 changes: 5 additions & 0 deletions
5
...ges/twenty-front/src/modules/action-menu/utils/getActionMenuDropdownIdFromActionMenuId.ts
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,5 @@ | ||
export const getActionMenuDropdownIdFromActionMenuId = ( | ||
actionMenuId: string, | ||
) => { | ||
return `action-menu-dropdown-${actionMenuId}`; | ||
}; |
3 changes: 3 additions & 0 deletions
3
packages/twenty-front/src/modules/action-menu/utils/getActionMenuIdFromRecordIndexId.ts
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,3 @@ | ||
export const getActionMenuIdFromRecordIndexId = (recordIndexId: string) => { | ||
return `action-menu-record-index-${recordIndexId}`; | ||
}; |
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
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
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
Oops, something went wrong.