-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
File Search Bar #3926
File Search Bar #3926
Conversation
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.
Please fix some things
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
Directory name issue fixed in 43d44da. Also I am able to search in directories. |
You can search when you're inside a folder, but not when you're in the main directory and want to search in other directories. I was the one that made the issue about this feature request, and that is the way I had in mind. |
From what I can tell this is only possible with modifications to wings as only the files/folders the user is viewing are sent by wings. |
How does it look on mobile? |
Does the searchbar still overlap the filestructurr breadcrumbs, on desktop? |
Nope |
Glad to hear. I however feel that the mobile version should have a little more work done, so that it matches with the quality of the rest of the ui |
@@ -36,7 +36,7 @@ export default ({ renderLeft, withinFileEditor, isNewFile }: Props) => { | |||
}); | |||
|
|||
return ( | |||
<div css={tw`flex flex-grow-0 items-center text-sm text-neutral-500 overflow-x-hidden`}> | |||
<div css={tw`flex flex-grow-0 items-center text-sm text-neutral-500`}> |
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.
Why was this change made?
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.
The directory path would be masked by the input field if overflow-x-hidden
was present.
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
resources/scripts/components/server/files/FileManagerContainer.tsx
Outdated
Show resolved
Hide resolved
Nice work! |
@matthewpi Could you review this when you have time |
Co-authored-by: Matthew Penner <[email protected]>
0baf237
to
6f5fb09
Compare
This pr adds a search bar to the file manager.
closes #3503