Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-11-19 11:53:56 +0300
committerJulius Härtl <jus@bitgrid.net>2019-11-27 00:00:03 +0300
commitcaad94142f9b55898f8f63db18310e092fbb6bad (patch)
treee8e0ccdae7c887fd9966bc3217c232f656e530c0 /apps/workflowengine/src
parentce6aed8667eb7c828a72246ee930324cae61084b (diff)
Add cancel button to restore previously saved rule
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/src')
-rw-r--r--apps/workflowengine/src/components/Rule.vue19
1 files changed, 15 insertions, 4 deletions
diff --git a/apps/workflowengine/src/components/Rule.vue b/apps/workflowengine/src/components/Rule.vue
index 18db4eef696..5bfbe48138d 100644
--- a/apps/workflowengine/src/components/Rule.vue
+++ b/apps/workflowengine/src/components/Rule.vue
@@ -36,10 +36,10 @@
@click="saveRule">
{{ ruleStatus.title }}
</button>
- <button v-if="rule.id < -1" @click="cancelRule">
+ <button v-if="rule.id < -1 || dirty" @click="cancelRule">
{{ t('workflowengine', 'Cancel') }}
</button>
- <button v-else @click="deleteRule">
+ <button v-else-if="!dirty" @click="deleteRule">
{{ t('workflowengine', 'Delete') }}
</button>
</div>
@@ -75,7 +75,8 @@ export default {
checks: [],
error: null,
dirty: this.rule.id < 0,
- checking: false
+ checking: false,
+ originalRule: null
}
},
computed: {
@@ -101,6 +102,9 @@ export default {
return typeof lastCheck === 'undefined' || lastCheck.class !== null
}
},
+ mounted() {
+ this.originalRule = JSON.parse(JSON.stringify(this.rule))
+ },
methods: {
async updateOperation(operation) {
this.$set(this.rule, 'operation', operation)
@@ -128,6 +132,7 @@ export default {
await this.$store.dispatch('pushUpdateRule', this.rule)
this.dirty = false
this.error = null
+ this.originalRule = JSON.parse(JSON.stringify(this.rule))
} catch (e) {
console.error('Failed to save operation')
this.error = e.response.data.ocs.meta.message
@@ -142,7 +147,13 @@ export default {
}
},
cancelRule() {
- this.$store.dispatch('removeRule', this.rule)
+ if (this.rule.id < 0) {
+ this.$store.dispatch('removeRule', this.rule)
+ } else {
+ this.$store.dispatch('updateRule', this.originalRule)
+ this.originalRule = JSON.parse(JSON.stringify(this.rule))
+ this.dirty = false
+ }
},
async removeCheck(check) {
const index = this.rule.checks.findIndex(item => item === check)