Skip to content

Commit

Permalink
Merge pull request #999 from oliver-sanders/workflow-service-mutate-a…
Browse files Browse the repository at this point in the history
…sync

aotf: fix mutations in workflow toolbar
  • Loading branch information
hjoliver authored May 4, 2022
2 parents 9c156e2 + 14e4ede commit ff41e80
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 22 deletions.
33 changes: 18 additions & 15 deletions src/components/cylc/workflow/Toolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -260,31 +260,34 @@ export default {
},
methods: {
onClickPlay () {
const ret = this.$workflowService.mutate(
this.$workflowService.mutate(
'play',
this.currentWorkflow.id
)
if (ret[0] === mutationStatus.SUCCEEDED) {
this.expecting.play = !this.isRunning
}
).then(ret => {
if (ret[0] === mutationStatus.SUCCEEDED) {
this.expecting.play = !this.isRunning
}
})
},
onClickReleaseHold () {
const ret = this.$workflowService.mutate(
this.$workflowService.mutate(
this.isPaused ? 'resume' : 'pause',
this.currentWorkflow.id
)
if (ret[0] === mutationStatus.SUCCEEDED) {
this.expecting.paused = !this.isPaused
}
).then(ret => {
if (ret[0] === mutationStatus.SUCCEEDED) {
this.expecting.paused = !this.isPaused
}
})
},
async onClickStop () {
const ret = this.$workflowService.mutate(
this.$workflowService.mutate(
'stop',
this.currentWorkflow.id
)
if (ret[0] === mutationStatus.SUCCEEDED) {
this.expecting.stop = WorkflowState.STOPPING
}
).then(ret => {
if (ret[0] === mutationStatus.SUCCEEDED) {
this.expecting.stop = WorkflowState.STOPPING
}
})
},
toggleExtended () {
this.extended = !this.extended
Expand Down
15 changes: 8 additions & 7 deletions src/services/workflow.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ class WorkflowService {
this.subscriptions = {}

// mutations defaults
this.associations = null
this.primaryMutations = primaryMutations

this.mutationsAndTypes = this.loadMutations()
Expand All @@ -85,11 +84,11 @@ class WorkflowService {
*
* @param {String} mutationName
* @param {String} id
* @returns {Promise}
* @returns {Promise<Array>}
*/
mutate (mutationName, id) {
const mutation = this.getMutation(mutationName)
return mutate(
async mutate (mutationName, id) {
const mutation = await this.getMutation(mutationName)
return await mutate(
mutation,
getMutationArgsFromTokens(
mutation,
Expand Down Expand Up @@ -121,9 +120,11 @@ class WorkflowService {
* Return a mutation by name.
*
* @param {String} mutationName
* @returns {Promise<Object>}
*/
getMutation (mutationName) {
return this.mutations.find(mutation => mutation.name === mutationName)
async getMutation (mutationName) {
const { mutations } = await this.mutationsAndTypes
return mutations.find(mutation => mutation.name === mutationName)
}

// --- GraphQL query subscriptions
Expand Down

0 comments on commit ff41e80

Please sign in to comment.