From 471085f0f36e91daa74938e34ad738a86849894a Mon Sep 17 00:00:00 2001
From: taehoon
Date: Wed, 20 Mar 2019 12:37:13 -0400
Subject: [PATCH] add error message
---
.../user_reporting_modal/user_reporting_modal.js | 12 +++++++++++-
.../user_reporting_modal/user_reporting_modal.vue | 7 +++++++
2 files changed, 18 insertions(+), 1 deletion(-)
diff --git a/src/components/user_reporting_modal/user_reporting_modal.js b/src/components/user_reporting_modal/user_reporting_modal.js
index 6b1177b9..34a87720 100644
--- a/src/components/user_reporting_modal/user_reporting_modal.js
+++ b/src/components/user_reporting_modal/user_reporting_modal.js
@@ -12,7 +12,8 @@ const UserReportingModal = {
comment: '',
forward: false,
statusIdsToReport: [],
- processing: false
+ processing: false,
+ error: false
}
},
computed: {
@@ -45,12 +46,14 @@ const UserReportingModal = {
this.forward = false
this.statusIdsToReport = []
this.processing = false
+ this.error = false
},
closeModal () {
this.$store.dispatch('closeUserReportingModal')
},
reportUser () {
this.processing = true
+ this.error = false
const params = {
userId: this.userId,
comment: this.comment,
@@ -63,6 +66,13 @@ const UserReportingModal = {
this.resetState()
this.closeModal()
})
+ .catch(() => {
+ this.processing = false
+ this.error = true
+ })
+ },
+ clearError () {
+ this.error = false
},
isChecked (statusId) {
return this.statusIdsToReport.indexOf(statusId) !== -1
diff --git a/src/components/user_reporting_modal/user_reporting_modal.vue b/src/components/user_reporting_modal/user_reporting_modal.vue
index 30d3ab19..eae97900 100644
--- a/src/components/user_reporting_modal/user_reporting_modal.vue
+++ b/src/components/user_reporting_modal/user_reporting_modal.vue
@@ -20,6 +20,9 @@
+
+ An error occured processing your request
+
@@ -84,6 +87,10 @@
min-width: 10em;
padding: 0 2em;
}
+
+ .alert {
+ margin: 1em 0 0 0;
+ }
}
&-right {