summaryrefslogtreecommitdiffstats
path: root/src/services
diff options
context:
space:
mode:
Diffstat (limited to 'src/services')
-rw-r--r--src/services/ChatService.js14
-rw-r--r--src/services/CommandsService.js8
-rw-r--r--src/services/NotifyErrorService.js31
3 files changed, 40 insertions, 13 deletions
diff --git a/src/services/ChatService.js b/src/services/ChatService.js
index 08deba2..d077e9b 100644
--- a/src/services/ChatService.js
+++ b/src/services/ChatService.js
@@ -13,7 +13,7 @@ export default {
13 } 13 }
14 }) 14 })
15 .catch(error => error_notify(error)) 15 .catch(error => error_notify(error))
16 }, 16 },
17 17
18 async get_all_user_groups() { 18 async get_all_user_groups() {
19 return await axios 19 return await axios
@@ -25,5 +25,17 @@ export default {
25 } 25 }
26 }) 26 })
27 .catch(error => error_notify(error)) 27 .catch(error => error_notify(error))
28 },
29
30 async get_group_messages(group_pk) {
31 return await axios
32 .get(url+`groups/detail/${group_pk}/messages/`)
33 .then(res => {
34 return {
35 status: res.status,
36 data: res.data
37 }
38 })
39 .catch(error => error_notify(error))
28 } 40 }
29} 41}
diff --git a/src/services/CommandsService.js b/src/services/CommandsService.js
index cc5bdf2..181d50e 100644
--- a/src/services/CommandsService.js
+++ b/src/services/CommandsService.js
@@ -3,9 +3,9 @@ import ChatService from "./ChatService"
3import store from "@/store/index.js" 3import store from "@/store/index.js"
4import router from '@/router/index.js' 4import router from '@/router/index.js'
5 5
6function set_groups(data) { 6function set_groups(searcher, data) {
7 function group_command(group) { 7 function group_command(group) {
8 console.log(group) 8 searcher.$emit("group_set", group)
9 } 9 }
10 10
11 let groups = {} 11 let groups = {}
@@ -21,11 +21,11 @@ function set_groups(data) {
21export default { 21export default {
22 groups() { 22 groups() {
23 return { 23 return {
24 async send() { 24 async send(searcher) {
25 const {data, status} = await ChatService.get_all_user_groups() 25 const {data, status} = await ChatService.get_all_user_groups()
26 if (status!==200) 26 if (status!==200)
27 return {} 27 return {}
28 const groups = set_groups(data) 28 const groups = set_groups(searcher, data)
29 return groups 29 return groups
30 }, 30 },
31 31
diff --git a/src/services/NotifyErrorService.js b/src/services/NotifyErrorService.js
index b28e664..465b908 100644
--- a/src/services/NotifyErrorService.js
+++ b/src/services/NotifyErrorService.js
@@ -1,16 +1,31 @@
1import Vue from 'vue' 1import Vue from 'vue'
2import router from '@/router/index.js'
3import store from "@/store/index.js"
4
2 5
3const error_notify = (error) => { 6const error_notify = (error) => {
4 for (const [key, values] of Object.entries(error.response.data)) { 7 if(error.response.status === 401) {
5 console.log(values) 8 Vue.notify({
6 values.forEach(value => { 9 type: 'error',
7 Vue.notify({ 10 title: 'Please login again!',
8 type: 'error', 11 text: 'Token expire'
9 title: value,
10 text: (key !== 'non_field_errors') ? key : ''
11 })
12 }) 12 })
13
14 store.dispatch('logout')
15 router.push('/login')
13 } 16 }
17 else
18 for (const [key, values] of Object.entries(error.response.data)) {
19 console.log(values)
20 values.forEach(value => {
21 Vue.notify({
22 type: 'error',
23 title: value,
24 text: (key !== 'non_field_errors') ? key : ''
25 })
26 })
27 }
28
14 return { 29 return {
15 data: error.response.data, 30 data: error.response.data,
16 status: error.response.status 31 status: error.response.status