質問編集履歴
2
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
1
補足情報を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -105,3 +105,93 @@
|
|
105
105
|
原因が分かる方が入れば、是非教えていただければ嬉しいです。
|
106
106
|
|
107
107
|
よろしくお願いいたします。
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
---
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
●補足情報
|
116
|
+
|
117
|
+
vuex-persisitedstateを削除し、Authenticated.jsを以下のように編集し、再度試してみたのですがうまくいきませんでした。。。泣
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
```Authenticated
|
122
|
+
|
123
|
+
import firebase from "~/plugins/firebase";
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
export default function({ store, route, redirect }) {
|
128
|
+
|
129
|
+
firebase.auth().onAuthStateChanged(user => {
|
130
|
+
|
131
|
+
const currentPath = route.path;
|
132
|
+
|
133
|
+
if (user) {
|
134
|
+
|
135
|
+
//ログインしている時の処理
|
136
|
+
|
137
|
+
//まずデータベースの内容をstoreに保存
|
138
|
+
|
139
|
+
firebase
|
140
|
+
|
141
|
+
.database()
|
142
|
+
|
143
|
+
.ref(user.uid)
|
144
|
+
|
145
|
+
.on('value', res => {
|
146
|
+
|
147
|
+
const userInfo = {
|
148
|
+
|
149
|
+
uid: res.uid,
|
150
|
+
|
151
|
+
name: res.name,
|
152
|
+
|
153
|
+
email: res.email
|
154
|
+
|
155
|
+
}
|
156
|
+
|
157
|
+
store.commit('setUser', userInfo);
|
158
|
+
|
159
|
+
})
|
160
|
+
|
161
|
+
store.commit("resetErrors");
|
162
|
+
|
163
|
+
//不正なアクセスを除去
|
164
|
+
|
165
|
+
if (currentPath === "/auth/login") {
|
166
|
+
|
167
|
+
redirect("/");
|
168
|
+
|
169
|
+
}
|
170
|
+
|
171
|
+
} else {
|
172
|
+
|
173
|
+
//ログインしてない時の処理
|
174
|
+
|
175
|
+
store.commit("resetErrors");
|
176
|
+
|
177
|
+
//不正なアクセスを除去
|
178
|
+
|
179
|
+
if (currentPath !== "/auth/login" && currentPath !== "/auth/signup") {
|
180
|
+
|
181
|
+
redirect("/auth/login");
|
182
|
+
|
183
|
+
}
|
184
|
+
|
185
|
+
}
|
186
|
+
|
187
|
+
});
|
188
|
+
|
189
|
+
}
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
```
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
全く検討がつきません。。。
|