wip: router

This commit is contained in:
Huang 2022-09-16 18:03:18 +08:00
parent 356ab3b666
commit 7ed0c40e53
12 changed files with 120 additions and 76 deletions

View File

@ -1,13 +1,16 @@
<script setup lang="ts"> <script setup lang="ts">
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app'; import { onLaunch, onShow, onHide } from '@dcloudio/uni-app';
import { useAuthStore } from '@/state/modules/auth'; import { useAuthStore } from '@/state/modules/auth';
import { setupInterceptors } from '@/utils/interceptors'; import { removeInterceptor, setupInterceptors } from '@/utils/interceptors';
import { useAppStore } from '@/state/modules/app'; import { useRouterStore } from '@/state/modules/router';
onLaunch(() => { onLaunch(() => {
console.log('App Launch'); console.log('App Launch');
removeInterceptor();
setupInterceptors(); setupInterceptors();
const appStore = useAppStore(); const appStore = useRouterStore();
appStore.initialize(); appStore.initialize();
}); });
onShow(() => { onShow(() => {

View File

@ -1,12 +1,4 @@
<script lang="ts" setup name="AppProvider"> <script lang="ts" setup name="AppProvider"></script>
import { useAppStore } from '@/state/modules/app';
const appStore = useAppStore();
console.log('getPages', appStore.getPages);
// eslint-disable-next-line no-undef
let currentPages = getCurrentPages();
console.log('currentPages', currentPages);
</script>
<template> <template>
<view> <view>
<slot></slot> <slot></slot>

11
src/hooks/router.ts Normal file
View File

@ -0,0 +1,11 @@
import { Navigates } from '@/utils/router/navigates';
const navigates = new Navigates();
export function useRouter() {
return navigates;
}
export function useRoute() {
const currentPages = getCurrentPages();
}

View File

@ -26,6 +26,9 @@
"path": "pages/login/index", "path": "pages/login/index",
"style": { "style": {
"navigationBarTitleText": "登录" "navigationBarTitleText": "登录"
},
"meta": {
"ignoreAuth": true
} }
}, },
{ {
@ -38,6 +41,9 @@
"path": "pages/notFound/404", "path": "pages/notFound/404",
"style": { "style": {
"navigationBarTitleText": "Not Found" "navigationBarTitleText": "Not Found"
},
"meta": {
"ignoreAuth": true
} }
} }
], ],

View File

@ -4,8 +4,9 @@
import { ref } from 'vue'; import { ref } from 'vue';
import { router } from '@/utils/router'; import { router } from '@/utils/router';
const title = ref('uni-app vue3 ts --Vite'); const title = ref('uni-app vue3 ts --Vite');
console.log('感受到考虑到垮落法');
const handleGetStarted = () => { const handleGetStarted = () => {
router.pushTab('/pages/demo/index'); router.pushTab('/pages/demo/index?d=str');
}; };
</script> </script>
<template> <template>

View File

@ -1,35 +0,0 @@
import { defineStore } from 'pinia';
import { Pages } from '@/types/pages';
import { pagesMap } from '@/utils/router/pages';
interface AppStore {
pages: Map<string, Pages> | undefined;
currentPage: Pages | undefined;
}
export const useAppStore = defineStore({
id: 'app',
state: (): AppStore => ({
pages: undefined,
currentPage: undefined,
}),
getters: {
getPages(state) {
return state.pages;
},
getCurrentPage(state) {
return state.currentPage;
},
},
actions: {
initialize() {
this.setPages();
},
setPages() {
this.pages = pagesMap;
},
setCurrentPage(path: string) {
this.currentPage = this.pages?.get(path);
},
},
});

View File

@ -45,6 +45,7 @@ export const useAuthStore = defineStore({
* @description * @description
*/ */
async loginOut(): Promise<any> { async loginOut(): Promise<any> {
console.log('~~loginOut请求');
try { try {
const res = await logout(); const res = await logout();
removeCache(TOKEN_KEY); removeCache(TOKEN_KEY);

View File

@ -0,0 +1,35 @@
import { defineStore } from 'pinia';
import { Pages } from '@/types/pages';
import { pagesMap } from '@/utils/router/pages';
interface routeStore {
routes: Map<string, Pages> | undefined;
currentRouter: Pages | undefined;
}
export const useRouterStore = defineStore({
id: 'routerStore',
state: (): routeStore => ({
routes: undefined,
currentRouter: undefined,
}),
getters: {
getRoutes(state) {
return state.routes;
},
getCurrentRoute(state) {
return state.currentRouter;
},
},
actions: {
initialize() {
this.setRoutes();
},
setRoutes() {
this.routes = pagesMap;
},
setCurrentRoute(path: string) {
this.currentRouter = this.routes?.get(path) || undefined;
},
},
});

View File

@ -1,5 +1,9 @@
import { routerInterceptor } from '@/utils/router/interceptor'; import { routerInterceptor, routerRemoveInterceptor } from '@/utils/router/interceptor';
export function setupInterceptors() { export function setupInterceptors() {
routerInterceptor(); routerInterceptor();
} }
export function removeInterceptor() {
routerRemoveInterceptor();
}

View File

@ -0,0 +1,12 @@
import { router } from '@/utils/router/index';
import { LOGIN_PAGE } from '@/enums/routerEnum';
/**
*
* @param path
*/
export function jumpLogin(path: string) {
const _path = path.startsWith('/') ? path : `/${path}`;
const pathQuery = encodeURIComponent(_path);
router.push(`${LOGIN_PAGE}?redirect=${pathQuery}`);
}

View File

@ -1,25 +1,22 @@
import { HOME_PAGE, LOGIN_PAGE, NAVIGATE_TYPE_LIST, NOT_FOUND_PAGE } from '@/enums/routerEnum'; import { HOME_PAGE, LOGIN_PAGE, NAVIGATE_TYPE_LIST, NOT_FOUND_PAGE } from '@/enums/routerEnum';
import { AUTH_PAGE, router } from '@/utils/router/index'; import { AUTH_PAGE, router } from '@/utils/router/index';
import { useAuthStore } from '@/state/modules/auth'; import { useAuthStore } from '@/state/modules/auth';
import { jumpLogin } from '@/utils/router/constant';
import { useRouterStore } from '@/state/modules/router';
/** /**
* *
* @param path * @param path
* @return boolean * @return boolean
*/ */
export function isIncludesAuthRouter(path: string): boolean { export function ignoreAuth(path: string): boolean {
if (!AUTH_PAGE.length) return false; console.log('忽略验证', path);
return AUTH_PAGE.includes(path) || AUTH_PAGE.some((item) => path.includes(item)); const _path = path.startsWith('/') ? path.slice(1) : path;
} const routerStore = useRouterStore();
const routes = routerStore.getRoutes;
/** if (!routes) return false;
* const route = routes.get(_path);
* @param path return !!route?.meta?.ignoreAuth;
*/
export function jumpLogin(path: string) {
const _path = path.startsWith('/') ? path : `/${path}`;
const pathQuery = encodeURIComponent(_path);
router.push(`${LOGIN_PAGE}?redirect=${pathQuery}`);
} }
/** /**
@ -34,16 +31,21 @@ function addInterceptor(routerName: string) {
uni.addInterceptor(routerName, { uni.addInterceptor(routerName, {
// 跳转前拦截 // 跳转前拦截
invoke: (args) => { invoke: (args) => {
if (isIncludesAuthRouter(args.url) && args.url !== LOGIN_PAGE) { console.log(args, ignoreAuth(args.url));
if (ignoreAuth(args.url)) return args;
const authStore = useAuthStore(); const authStore = useAuthStore();
if (authStore.isLogin) return args; if (authStore.isLogin) return args;
jumpLogin(args.url); // jumpLogin(args.url);
return false; return false;
}
return args;
}, },
// 成功回调拦截 // 成功回调拦截
success: () => {}, success: (args) => {
// console.log('回调', args);
// const currentPages = getCurrentPages();
// console.log('currentPages', currentPages);
// const currentRoute = currentPages[currentPages.length - 1];
// console.log('currentRoute', currentRoute);
},
// 失败回调拦截 // 失败回调拦截
fail: (err: any) => { fail: (err: any) => {
let reg: RegExp; let reg: RegExp;
@ -66,8 +68,20 @@ function addInterceptor(routerName: string) {
}); });
} }
/**
*
*/
export function routerInterceptor() { export function routerInterceptor() {
NAVIGATE_TYPE_LIST.forEach((item) => { NAVIGATE_TYPE_LIST.forEach((item) => {
addInterceptor(item); addInterceptor(item);
}); });
} }
/**
*
*/
export function routerRemoveInterceptor() {
NAVIGATE_TYPE_LIST.forEach((item) => {
uni.removeInterceptor(item);
});
}

View File

@ -44,11 +44,11 @@ export default ({ mode }: ConfigEnv): UserConfig => {
}, },
plugins: [ plugins: [
uni(), uni(),
eslintPlugin({ // eslintPlugin({
include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'], // include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
exclude: ['./node_modules/**'], // exclude: ['./node_modules/**'],
cache: false, // cache: false,
}), // }),
], ],
css: { css: {
preprocessorOptions: { preprocessorOptions: {