laravel/vue.js(vuex)を使用してフォロー機能を非同期にしています。
解決したいこと: mutations内からactionsもしくはmutationsを呼び出したいです。(非同期にするならactionsでしょうか?)
現状: methods内でdispatchを2回呼び出して実装しています。
vuex
1 state省略。。。 2 3 mutations: { 4 follow_list(state, id) { 5 const array = ["http://127.0.0.1:8000/user/", id, "/follow_list"]; 6 // パスをjoinで結合 7 const t = array.join('') 8 axios.get(path).then(res => { 9 state.follow_users = res.data 10 }).catch(function(error) { 11 console.log(error) 12 }) 13 }, 14 follower_list(state, id) { 15 const array = ["http://127.0.0.1:8000/user/", id, "/follower_list"]; 16 // パスをjoinで結合 17 const t = array.join('') 18 axios.get(t).then(res => { 19 state.follower_users = res.data 20 }).catch(function(error) { 21 console.log(error) 22 }) 23 }, 24 follow_action(state, id) { 25 const array = ["http://127.0.0.1:8000/user/", id, "/follow"]; 26 // パスをjoinで結合 27 const path = array.join('') 28 axios.post(path).then(res => { 29 30 }).catch(function(error) { 31 console.log(error) 32 }) 33 } 34 }, 35 actions: { 36 get_follow_list({commit}, id) { 37 commit('follow_list',id) 38 }, 39 get_follower_list({commit}, id) { 40 commit('follower_list', id) 41 }, 42 get_link({commit}, id) { 43 commit('link', id) 44 }, 45 follow_do({commit}, id) { 46 commit('follow_action', id) 47 } 48 }
vue
1methods: { 2 send(id){ 3 this.$store.dispatch('follow_do', id) 4 this.$store.dispatch('get_follow_list', this.user_id) 5 }, 6}
仮説 上記を第3引数にthis.user_idも入れて下記のように1つにまとめてしまおうと。そうすればvuex側で呼び出せるのでは?と考えています。 (methods) this.$store.dispatch('follow_do', {id: id, user_id: this.user_id}) (actions) follow_do({commit}, {id, user_id}) { commit('follow_action', id, user_id) } (mutations) follow_action(state, {id, user_id}) { const array = ["http://127.0.0.1:8000/user/", id, "/follow"]; const path = array.join('') axios.post(path).then(res => { // ここで呼び出したい }).catch(function(error) { console.log(error) }) }
ただ、引数は渡せるようになったのですがそこからactionsもしくはmutationsをどう呼び出すのだろうというところで止まっています。
follow_do1つにまとめようと思ったのですが、mutationsのfollow_list, follower_listは他のコンポーネントでも呼び出しているのでfollow_do1つにまとめると発火できなくなるな〜。。と思いfollow_doの中から呼び出せないだろうか?
というとこにいます。
どなたかお分かりになる方いましたら、ぜひ教えていただきたいです。
よろしくお願い致します。
検索したサイト
https://qiita.com/daisei-yoshino/items/a7c5dfdf272adb5ca323
https://shkn.hatenablog.com/entry/2019/05/29/020223
vue.js 2.6.11
あなたの回答
tips
プレビュー