-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4612 from hashicorp/f-ui-job-edit
UI: Edit a job
- Loading branch information
Showing
24 changed files
with
950 additions
and
516 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
import Component from '@ember/component'; | ||
import { assert } from '@ember/debug'; | ||
import { inject as service } from '@ember/service'; | ||
import { computed } from '@ember/object'; | ||
import { task } from 'ember-concurrency'; | ||
import messageFromAdapterError from 'nomad-ui/utils/message-from-adapter-error'; | ||
import localStorageProperty from 'nomad-ui/utils/properties/local-storage'; | ||
|
||
export default Component.extend({ | ||
store: service(), | ||
config: service(), | ||
|
||
'data-test-job-editor': true, | ||
|
||
job: null, | ||
onSubmit() {}, | ||
context: computed({ | ||
get() { | ||
return this.get('_context'); | ||
}, | ||
set(key, value) { | ||
const allowedValues = ['new', 'edit']; | ||
|
||
assert(`context must be one of: ${allowedValues.join(', ')}`, allowedValues.includes(value)); | ||
|
||
this.set('_context', value); | ||
return value; | ||
}, | ||
}), | ||
|
||
_context: null, | ||
parseError: null, | ||
planError: null, | ||
runError: null, | ||
|
||
planOutput: null, | ||
|
||
showPlanMessage: localStorageProperty('nomadMessageJobPlan', true), | ||
showEditorMessage: localStorageProperty('nomadMessageJobEditor', true), | ||
|
||
stage: computed('planOutput', function() { | ||
return this.get('planOutput') ? 'plan' : 'editor'; | ||
}), | ||
|
||
plan: task(function*() { | ||
this.reset(); | ||
|
||
try { | ||
yield this.get('job').parse(); | ||
} catch (err) { | ||
const error = messageFromAdapterError(err) || 'Could not parse input'; | ||
this.set('parseError', error); | ||
this.scrollToError(); | ||
return; | ||
} | ||
|
||
try { | ||
const plan = yield this.get('job').plan(); | ||
this.set('planOutput', plan); | ||
} catch (err) { | ||
const error = messageFromAdapterError(err) || 'Could not plan job'; | ||
this.set('planError', error); | ||
this.scrollToError(); | ||
} | ||
}).drop(), | ||
|
||
submit: task(function*() { | ||
try { | ||
if (this.get('context') === 'new') { | ||
yield this.get('job').run(); | ||
} else { | ||
yield this.get('job').update(); | ||
} | ||
|
||
const id = this.get('job.plainId'); | ||
const namespace = this.get('job.namespace.name') || 'default'; | ||
|
||
this.reset(); | ||
|
||
// Treat the job as ephemeral and only provide ID parts. | ||
this.get('onSubmit')(id, namespace); | ||
} catch (err) { | ||
const error = messageFromAdapterError(err) || 'Could not submit job'; | ||
this.set('runError', error); | ||
this.set('planOutput', null); | ||
this.scrollToError(); | ||
} | ||
}), | ||
|
||
reset() { | ||
this.set('planOutput', null); | ||
this.set('planError', null); | ||
this.set('parseError', null); | ||
this.set('runError', null); | ||
}, | ||
|
||
scrollToError() { | ||
if (!this.get('config.isTest')) { | ||
window.scrollTo(0, 0); | ||
} | ||
}, | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,9 @@ | ||
import Controller from '@ember/controller'; | ||
import { inject as service } from '@ember/service'; | ||
import { computed } from '@ember/object'; | ||
import { task } from 'ember-concurrency'; | ||
import messageFromAdapterError from 'nomad-ui/utils/message-from-adapter-error'; | ||
import localStorageProperty from 'nomad-ui/utils/properties/local-storage'; | ||
|
||
export default Controller.extend({ | ||
store: service(), | ||
|
||
parseError: null, | ||
planError: null, | ||
runError: null, | ||
|
||
planOutput: null, | ||
|
||
showPlanMessage: localStorageProperty('nomadMessageJobPlan', true), | ||
showEditorMessage: localStorageProperty('nomadMessageJobEditor', true), | ||
|
||
stage: computed('planOutput', function() { | ||
return this.get('planOutput') ? 'plan' : 'editor'; | ||
}), | ||
|
||
plan: task(function*() { | ||
this.reset(); | ||
|
||
try { | ||
yield this.get('model').parse(); | ||
} catch (err) { | ||
const error = messageFromAdapterError(err) || 'Could not parse input'; | ||
this.set('parseError', error); | ||
return; | ||
} | ||
|
||
try { | ||
yield this.get('model').plan(); | ||
const plan = this.get('store').peekRecord('job-plan', this.get('model.id')); | ||
this.set('planOutput', plan); | ||
} catch (err) { | ||
const error = messageFromAdapterError(err) || 'Could not plan job'; | ||
this.set('planError', error); | ||
} | ||
}).drop(), | ||
|
||
submit: task(function*() { | ||
try { | ||
yield this.get('model').run(); | ||
|
||
const id = this.get('model.plainId'); | ||
const namespace = this.get('model.namespace.name') || 'default'; | ||
|
||
this.reset(); | ||
|
||
// navigate to the new job page | ||
this.transitionToRoute('jobs.job', id, { | ||
queryParams: { jobNamespace: namespace }, | ||
}); | ||
} catch (err) { | ||
const error = messageFromAdapterError(err) || 'Could not submit job'; | ||
this.set('runError', error); | ||
} | ||
}), | ||
|
||
reset() { | ||
this.set('planOutput', null); | ||
this.set('planError', null); | ||
this.set('parseError', null); | ||
onSubmit(id, namespace) { | ||
this.transitionToRoute('jobs.job', id, { | ||
queryParams: { jobNamespace: namespace }, | ||
}); | ||
}, | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ export default Service.extend({ | |
}, | ||
|
||
setIndexFor(url, value) { | ||
list[url] = value; | ||
list[url] = +value; | ||
}, | ||
}); |
Oops, something went wrong.