diff options
author | jdlugosz963 <jdlugosz963@gmail.com> | 2021-12-15 15:02:45 +0100 |
---|---|---|
committer | jdlugosz963 <jdlugosz963@gmail.com> | 2021-12-15 15:04:52 +0100 |
commit | 1f60c86c538cda423a82554fc15cb95d3ca6a1d8 (patch) | |
tree | 9fb8c14f4ac081cbed850058055bfd4a06e7d269 /src/services | |
parent | 49379b11b8dfa179fd81398e8b4b5423c7275038 (diff) | |
download | lom_frontend-1f60c86c538cda423a82554fc15cb95d3ca6a1d8.tar.gz lom_frontend-1f60c86c538cda423a82554fc15cb95d3ca6a1d8.zip |
add Groups View and message fetcher
Diffstat (limited to 'src/services')
-rw-r--r-- | src/services/ChatService.js | 14 | ||||
-rw-r--r-- | src/services/CommandsService.js | 8 | ||||
-rw-r--r-- | src/services/NotifyErrorService.js | 31 |
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" | |||
3 | import store from "@/store/index.js" | 3 | import store from "@/store/index.js" |
4 | import router from '@/router/index.js' | 4 | import router from '@/router/index.js' |
5 | 5 | ||
6 | function set_groups(data) { | 6 | function 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) { | |||
21 | export default { | 21 | export 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 @@ | |||
1 | import Vue from 'vue' | 1 | import Vue from 'vue' |
2 | import router from '@/router/index.js' | ||
3 | import store from "@/store/index.js" | ||
4 | |||
2 | 5 | ||
3 | const error_notify = (error) => { | 6 | const 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 |