fix: refs #8534 update stateQueryGuard to check route changes and improve loading state handling
gitea/salix-front/pipeline/pr-dev Something is wrong with the build of this commit
Details
gitea/salix-front/pipeline/pr-dev Something is wrong with the build of this commit
Details
This commit is contained in:
parent
b3661c1674
commit
d63c35192d
|
@ -38,9 +38,11 @@ export async function navigationGuard(to, from, next, Router, state) {
|
|||
next();
|
||||
}
|
||||
|
||||
export async function stateQueryGuard(next) {
|
||||
const stateQuery = useStateQueryStore();
|
||||
await waitUntilFalse(stateQuery.isLoading());
|
||||
export async function stateQueryGuard(to, from, next) {
|
||||
if (to.name !== from.name) {
|
||||
const stateQuery = useStateQueryStore();
|
||||
await waitUntilFalse(stateQuery.isLoading());
|
||||
}
|
||||
|
||||
next();
|
||||
}
|
||||
|
@ -82,6 +84,7 @@ function waitUntilFalse(ref) {
|
|||
const stop = watch(
|
||||
ref,
|
||||
(val) => {
|
||||
console.log('val: ', val);
|
||||
if (!val) {
|
||||
stop();
|
||||
resolve();
|
||||
|
|
|
@ -23,7 +23,7 @@ export { Router };
|
|||
export default defineRouter(() => {
|
||||
const state = useState();
|
||||
Router.beforeEach((to, from, next) => navigationGuard(to, from, next, Router, state));
|
||||
Router.beforeEach((to, from, next) => stateQueryGuard(next));
|
||||
Router.beforeEach((to, from, next) => stateQueryGuard(to, from, next));
|
||||
Router.afterEach((to) => setPageTitle(to));
|
||||
|
||||
Router.onError(({ message }) => {
|
||||
|
|
Loading…
Reference in New Issue