feat-路由拦截

This commit is contained in:
Huang 2022-06-13 17:32:54 +08:00
parent a146e6bc18
commit ddbe908502
13 changed files with 149 additions and 6 deletions

View File

@ -1,9 +1,11 @@
<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';
onLaunch(() => { onLaunch(() => {
console.log('App Launch'); console.log('App Launch');
setupInterceptors();
}); });
onShow(() => { onShow(() => {
const authStore = useAuthStore(); const authStore = useAuthStore();

12
src/enums/routerEnum.ts Normal file
View File

@ -0,0 +1,12 @@
export enum NAVIGATE_TYPE {
NAVIGATE_TO = 'navigateTo',
REDIRECT_TO = 'redirectTo',
RE_LAUNCH = 'reLaunch',
SWITCH_TAB = 'switchTab',
}
export const NAVIGATE_TYPE_LIST = ['navigateTo', 'redirectTo', 'reLaunch', 'switchTab'];
export const HOME_PAGE = '/pages/index/index';
export const LOGIN_PAGE = '/pages/login/index';
export const NOT_FOUND_PAGE = '/pages/notFound/404';

View File

@ -1,11 +1,8 @@
import { createSSRApp } from 'vue'; import { createSSRApp } from 'vue';
import App from './App.vue'; import App from './App.vue';
import 'virtual:windi.css'; import 'virtual:windi.css';
import { setupInterceptors } from '@/utils/interceptors';
import { setupStore } from '@/state'; import { setupStore } from '@/state';
setupInterceptors();
export function createApp() { export function createApp() {
const app = createSSRApp(App); const app = createSSRApp(App);

View File

@ -12,6 +12,18 @@
"style": { "style": {
"navigationBarTitleText": "登录" "navigationBarTitleText": "登录"
} }
},
{
"path": "pages/log/index",
"style": {
"navigationBarTitleText": "日志"
}
},
{
"path": "pages/notFound/404",
"style": {
"navigationBarTitleText": "Not Found"
}
} }
], ],
"globalStyle": { "globalStyle": {

View File

@ -9,6 +9,12 @@
<view> <view>
<button @tap="jumLogin">登录</button> <button @tap="jumLogin">登录</button>
</view> </view>
<view url="pages/login/index?d=43" @tap="jumLogin1" hover-class="navigator-hover">
<button type="default">跳转到新页面</button>
</view>
<navigator url="/pages/log/index?d=43&title='日志'" hover-class="navigator-hover">
<button type="default">log</button>
</navigator>
</view> </view>
</template> </template>
@ -20,8 +26,12 @@
token: string; token: string;
}; };
const jumLogin1 = () => {
uni.navigateTo({
url: '/pages/login1/index',
});
};
const jumLogin = () => { const jumLogin = () => {
console.log('/pages/login/index');
uni.navigateTo({ uni.navigateTo({
url: '/pages/login/index', url: '/pages/login/index',
}); });

12
src/pages/log/index.vue Normal file
View File

@ -0,0 +1,12 @@
<template>
<view>log</view>
</template>
<script lang="ts" setup>
import { onLoad } from '@dcloudio/uni-app';
onLoad((query) => {
console.log('log onLOad', query);
});
</script>
<style lang="scss" scoped></style>

View File

@ -20,6 +20,13 @@
<script setup lang="ts"> <script setup lang="ts">
import { reactive, ref } from 'vue'; import { reactive, ref } from 'vue';
import { useAuthStore } from '@/state/modules/auth'; import { useAuthStore } from '@/state/modules/auth';
import { onLoad } from '@dcloudio/uni-app';
const redirect = ref<string | undefined>(undefined);
onLoad((query) => {
console.log('log onLOad', query);
redirect.value = query.redirect || undefined;
});
const form = reactive({ const form = reactive({
email: 'catch@admin.com', email: 'catch@admin.com',
password: 'catchadmin', password: 'catchadmin',

View File

@ -0,0 +1,7 @@
<template>
<view>404</view>
</template>
<script lang="ts" setup></script>
<style lang="scss" scoped></style>

View File

@ -67,7 +67,7 @@ request.interceptors.response.use(
}, },
(response) => { (response) => {
// 请求错误做点什么。可以使用async await 做异步操作 // 请求错误做点什么。可以使用async await 做异步操作
error('Request Error!'); // error('Request Error!');
return Promise.reject(response); return Promise.reject(response);
}, },
); );

View File

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

View File

@ -0,0 +1,5 @@
/**
*
* (subPackage)
*/
export const authRouter: string[] = ['pages/log/index'];

View File

@ -0,0 +1,65 @@
import { HOME_PAGE, LOGIN_PAGE, NAVIGATE_TYPE_LIST, NOT_FOUND_PAGE } from '@/enums/routerEnum';
import { authRouter } from '@/utils/router/index';
import { useAuthStore } from '@/state/modules/auth';
import { Toast } from '@/utils/uniApi';
/**
*
* @param path
* @return boolean
*/
function isIncludesAuthRouter(path: string): boolean {
if (!authRouter.length) return false;
return authRouter.includes(path) || authRouter.some((item) => path.includes(item));
}
// 跳转登录
function jumpLogin(path: string) {
const _path = path.startsWith('/') ? path : `/${path}`;
let pathQuery = encodeURIComponent(_path);
uni.navigateTo({
url: `${LOGIN_PAGE}?redirect=${pathQuery}`,
});
}
/**
*
* uni.switchTab拦截无效,onShow处理
* <navigator>,使api
* @param routerName
* @export void
*/
function addInterceptor(routerName: string) {
uni.addInterceptor(routerName, {
// 跳转前拦截
invoke: (args) => {
if (isIncludesAuthRouter(args.url) && args.url !== LOGIN_PAGE) {
const authStore = useAuthStore();
if (authStore.isLogin) return args;
jumpLogin(args.url);
return false;
}
return args;
},
// 成功回调拦截
success: (res: any) => {},
// 失败回调拦截
fail: (err: any) => {
if (err.errMsg.includes(`${routerName}:fail page`)) {
Toast('页面不存在');
uni.navigateTo({
url: `${NOT_FOUND_PAGE}?redirect=${HOME_PAGE}`,
});
}
return false;
},
// 完成回调拦截
complete: (res: any) => {},
});
}
export function routerInterceptor() {
NAVIGATE_TYPE_LIST.forEach((item) => {
addInterceptor(item);
});
}

10
src/utils/router/router.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
declare interface Router extends Record<string, any> {
path: string;
meta?: {
auth?: boolean;
};
}
declare interface TabBar extends Record<string, any> {
list: Router[];
}