-
Notifications
You must be signed in to change notification settings - Fork 8
Add support for including and excluding drives from listing #89
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
Merged
Merged
Changes from 26 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
e94b260
add backend functionality to exclude drive from browser
DenisaCG 5257f5d
add frontend function for excluding drive
DenisaCG c6b4ac1
add backend functionality for including drive in listing
DenisaCG 565f46a
add frontend functionality to include drive in listing
DenisaCG b8a9955
iterate on include drive functionality
DenisaCG d2f2f9a
add commands for new funcitonalities
DenisaCG dd328ac
add backend function to retrieve list of excluded drives
DenisaCG 1c1e107
add frontend request for retrieving list of excluded drives
DenisaCG 332cb5f
refactor dialog to manage listed drives
DenisaCG 4bde19c
refactor openDriveDialogPlugin
DenisaCG 6003dc0
remove unnecessary code
DenisaCG 9e71fbd
fix drives region in backend
DenisaCG 32c59f2
update dialog for managing listed drives
DenisaCG 0ccb108
update publc drive component
DenisaCG 7e8df91
update available drives component
DenisaCG 45b54ef
update available drives listed component
DenisaCG 816fc65
update selected drives component
DenisaCG 8490a24
remove duplicate
DenisaCG 2195ec3
iterate on public drive functionality
DenisaCG e5c6957
check if external drives are excluded
DenisaCG 775489a
iterate
DenisaCG 4a2b8b7
iterate on style
DenisaCG e6f9bf8
fix icons
DenisaCG 6996e99
update command icons
DenisaCG a5215e9
change commands visibility
DenisaCG 6700e66
iterate
DenisaCG aac52c6
fix typos
DenisaCG ba05f37
remove include drive command
DenisaCG 8004f7a
rename exclude command to remove
DenisaCG 4914bfe
add titles to buttons
DenisaCG e8201a5
move drives manager command to toolbar
DenisaCG 93effd6
remove commentes
DenisaCG File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,7 +1,19 @@ | ||
| import { LabIcon } from '@jupyterlab/ui-components'; | ||
| import driveBrowserSvg from '../style/driveIconFileBrowser.svg'; | ||
| import addIconSvg from '../style/addIcon.svg'; | ||
| import removeIconSvg from '../style/removeIcon.svg'; | ||
|
|
||
| export const driveBrowserIcon = new LabIcon({ | ||
| name: 'jupyter-drives:drive-browser', | ||
| svgstr: driveBrowserSvg | ||
| }); | ||
|
|
||
| export const addIcon = new LabIcon({ | ||
| name: 'jupyter-drives:add-drive', | ||
| svgstr: addIconSvg | ||
| }); | ||
|
|
||
| export const removeIcon = new LabIcon({ | ||
| name: 'jupyter-drives:remove-drive', | ||
| svgstr: removeIconSvg | ||
| }); |
This file contains hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.