forked from twentyhq/twenty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the heart icon button to add the view as a favorite from the t…
…op bar (twentyhq#8769) closes twentyhq#8546 @Bonapara please check the behaviour, if this is what you were looking for! ;)
- Loading branch information
1 parent
5752afb
commit 0300f33
Showing
11 changed files
with
233 additions
and
112 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
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
36 changes: 36 additions & 0 deletions
36
...enty-front/src/modules/views/view-picker/components/ViewPickerFavoriteFoldersDropdown.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,36 @@ | ||
import { FavoriteFolderPicker } from '@/favorites/favorite-folder-picker/components/FavoriteFolderPicker'; | ||
import { FavoriteFolderPickerEffect } from '@/favorites/favorite-folder-picker/components/FavoriteFolderPickerEffect'; | ||
import { FavoriteFolderPickerComponentInstanceContext } from '@/favorites/favorite-folder-picker/scopes/FavoriteFolderPickerScope'; | ||
import { usePrefetchedData } from '@/prefetch/hooks/usePrefetchedData'; | ||
import { PrefetchKey } from '@/prefetch/types/PrefetchKey'; | ||
import { DropdownScope } from '@/ui/layout/dropdown/scopes/DropdownScope'; | ||
import { useRecoilComponentStateV2 } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentStateV2'; | ||
import { View } from '@/views/types/View'; | ||
import { VIEW_PICKER_DROPDOWN_ID } from '@/views/view-picker/constants/ViewPickerDropdownId'; | ||
import { viewPickerReferenceViewIdComponentState } from '@/views/view-picker/states/viewPickerReferenceViewIdComponentState'; | ||
|
||
export const ViewPickerFavoriteFoldersDropdown = () => { | ||
const { records: views } = usePrefetchedData<View>(PrefetchKey.AllViews); | ||
const [viewPickerReferenceViewId] = useRecoilComponentStateV2( | ||
viewPickerReferenceViewIdComponentState, | ||
); | ||
|
||
const view = views.find((view) => view.id === viewPickerReferenceViewId); | ||
|
||
return ( | ||
<FavoriteFolderPickerComponentInstanceContext | ||
favoriteFoldersScopeId={VIEW_PICKER_DROPDOWN_ID} | ||
> | ||
<DropdownScope dropdownScopeId={VIEW_PICKER_DROPDOWN_ID}> | ||
<> | ||
<FavoriteFolderPickerEffect record={view} /> | ||
<FavoriteFolderPicker | ||
record={view} | ||
objectNameSingular="view" | ||
dropdownId={VIEW_PICKER_DROPDOWN_ID} | ||
/> | ||
</> | ||
</DropdownScope> | ||
</FavoriteFolderPickerComponentInstanceContext> | ||
); | ||
}; |
Oops, something went wrong.