Universal search (#412)
* Global search scaffold * Add search preview text * Add generic fallback for preview text in search * fixup! Add generic fallback for preview text in search * Add more tweaks * fixup! Add more tweaks * Fix an issue with criteria * fixup! Fix an issue with criteria * fixup! fixup! Fix an issue with criteria * fixup! fixup! fixup! Fix an issue with criteria * Fix an issue with priority filter * fixup! Fix an issue with priority filter * Add sortable pins * fixup! Add sortable pins * Make options collapsed by default * Tweak UI * Add tests * Add translations * Add more translations * fixup! Add more translations * Add minor tweaks
This commit is contained in:
parent
180bdaef35
commit
02b493d61f
56 changed files with 5630 additions and 160 deletions
|
|
@ -9,6 +9,7 @@ import SidebarNav from './Sidebar/SidebarNav';
|
|||
import SidebarNotes from './Sidebar/SidebarNotes';
|
||||
import SidebarProjects from './Sidebar/SidebarProjects';
|
||||
import SidebarTags from './Sidebar/SidebarTags';
|
||||
import SidebarViews from './Sidebar/SidebarViews';
|
||||
|
||||
interface SidebarProps {
|
||||
isSidebarOpen: boolean;
|
||||
|
|
@ -101,6 +102,11 @@ const Sidebar: React.FC<SidebarProps> = ({
|
|||
openTagModal={openTagModal}
|
||||
tags={tags}
|
||||
/>
|
||||
<SidebarViews
|
||||
handleNavClick={handleNavClick}
|
||||
location={location}
|
||||
isDarkMode={isDarkMode}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<SidebarFooter
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue