-
Notifications
You must be signed in to change notification settings - Fork 33
feat: create new environment using a remote mamba solver #141
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
Open
mariobuikhuizen
wants to merge
15
commits into
mamba-org:main
Choose a base branch
from
mariobuikhuizen:mamba_hint_solve
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
2da6178
feat: create new environment using a remote mamba solver
mariobuikhuizen e9caf49
fix: set quetzUrl and quetzSolverUrl via the settings system
mariobuikhuizen 35374f7
added args to standalone app
hbcarlos 6892473
added quetzUrl and quetzSolverUrl to config_data
hbcarlos e71b4de
Added settings to config_data on standalone app
hbcarlos f53ab5e
refactor: get subdir from command line
mariobuikhuizen d9c4745
refactor: reuse import_env for explicit list
mariobuikhuizen 6f60a41
fix: add better error handling
mariobuikhuizen 86e7334
feat: wire standalone settings to Ennvironment Manager
mariobuikhuizen 0a9294e
feat: add document editor for .conda, .conda.yml and .yml
mariobuikhuizen ff07f05
refactor: use initialize method on Handler to pass extra settings
mariobuikhuizen 089923c
refactor: use functions instead of arrow functions for components
mariobuikhuizen cfbe405
docs: document props and functions
mariobuikhuizen 72a2f70
feat: enable conda complete depending presence of quetzUrl
mariobuikhuizen b337da6
refactor: use proper plugin name
mariobuikhuizen 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
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import * as React from 'react'; | ||
import CodeMirror from 'codemirror'; | ||
import 'codemirror/lib/codemirror.css'; | ||
import './yaml'; | ||
import * as condaHint from './CondaHint'; | ||
|
||
/** | ||
* Conda solve properties | ||
*/ | ||
export interface ICondaEnvSolveProps { | ||
quetzUrl: string; | ||
quetzSolverUrl: string; | ||
subdir: string; | ||
create(name: string, explicitList: string): void; | ||
} | ||
|
||
export const CondaEnvSolve = (props: ICondaEnvSolveProps): JSX.Element => { | ||
mariobuikhuizen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
condaHint.register(props.quetzUrl); | ||
|
||
const codemirrorElem = React.useRef(); | ||
|
||
const [editor, setEditor] = React.useState(null); | ||
const [solveState, setSolveState] = React.useState(null); | ||
|
||
async function solve() { | ||
const environment_yml = editor.getValue(); | ||
setSolveState('Solving...'); | ||
const name = condaHint.getName(environment_yml); | ||
try { | ||
const solveResult = await condaHint.fetchSolve( | ||
props.quetzUrl, | ||
props.quetzSolverUrl, | ||
props.subdir, | ||
environment_yml | ||
); | ||
setSolveState(`Creating environment ${name}...`); | ||
await props.create(name, solveResult); | ||
setSolveState('Ok'); | ||
} catch (e) { | ||
setSolveState(`Error: ${e}`); | ||
} | ||
} | ||
|
||
React.useEffect(() => { | ||
if (editor) { | ||
return; | ||
} | ||
setEditor( | ||
CodeMirror(codemirrorElem.current, { | ||
lineNumbers: true, | ||
extraKeys: { | ||
'Ctrl-Space': 'autocomplete', | ||
'Ctrl-Tab': 'autocomplete' | ||
}, | ||
tabSize: 2, | ||
mode: 'yaml', | ||
autofocus: true | ||
}) | ||
); | ||
}); | ||
return ( | ||
<div style={{ width: '80vw', maxWidth: '900px' }}> | ||
<div ref={codemirrorElem}></div> | ||
<div style={{ paddingTop: '8px' }}> | ||
<button onClick={solve}>Create</button> | ||
<span style={{ marginLeft: '16px' }}>{solveState}</span> | ||
</div> | ||
</div> | ||
); | ||
}; |
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.
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.