style: 优化路由跳转

This commit is contained in:
Huang 2022-09-19 15:13:07 +08:00
parent e28a64a693
commit 43786d6672
9 changed files with 106 additions and 20 deletions

View File

@ -1,12 +1,13 @@
<script lang="ts" setup> <script lang="ts" setup>
import BasicButton from '@/components/BasicButton/index.vue'; import BasicButton from '@/components/BasicButton/index.vue';
import AppProvider from '@/components/AppProvider/inedx.vue'; import AppProvider from '@/components/AppProvider/inedx.vue';
import { router } from '@/utils/router';
import { useAuthStore } from '@/state/modules/auth'; import { useAuthStore } from '@/state/modules/auth';
import { ref } from 'vue'; import { ref } from 'vue';
import { onShow } from '@dcloudio/uni-app'; import { onShow } from '@dcloudio/uni-app';
import { useRouter } from '@/hooks/router';
const authStore = useAuthStore(); const authStore = useAuthStore();
const isLogin = ref(false); const isLogin = ref(false);
const router = useRouter();
onShow(() => { onShow(() => {
isLogin.value = authStore.isLogin; isLogin.value = authStore.isLogin;
}); });
@ -32,7 +33,9 @@
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view> <view class="desc">{{ isLogin ? '测试' : '未登入' }}</view>
</view> </view>
<view class="cell" <view class="cell"
><BasicButton @click="handleJump('/pages/log/index')">log</BasicButton></view ><BasicButton @click="handleJump('/pages/log/index?id=4345&title=log')"
>log</BasicButton
></view
> >
<view class="cell" v-if="isLogin" <view class="cell" v-if="isLogin"
><BasicButton @click="handleLoginOut">登出</BasicButton></view ><BasicButton @click="handleLoginOut">登出</BasicButton></view

View File

@ -5,7 +5,7 @@
<script lang="ts" setup> <script lang="ts" setup>
import { onLoad } from '@dcloudio/uni-app'; import { onLoad } from '@dcloudio/uni-app';
onLoad((query) => { onLoad((query) => {
console.log('log onLOad', query); console.log('log onLoad', query);
}); });
</script> </script>

View File

@ -3,12 +3,15 @@
import { useAuthStore } from '@/state/modules/auth'; import { useAuthStore } from '@/state/modules/auth';
import { onLoad } from '@dcloudio/uni-app'; import { onLoad } from '@dcloudio/uni-app';
import { Toast } from '@/utils/uniapi/prompt'; import { Toast } from '@/utils/uniapi/prompt';
import { router } from '@/utils/router'; import { useRouter } from '@/hooks/router';
const redirect = ref<string | undefined>(undefined); const redirect = ref<string | undefined>(undefined);
onLoad((query) => { onLoad((query) => {
redirect.value = query.redirect || undefined; redirect.value = query.redirect ? decodeURIComponent(query.redirect) : undefined;
console.log('login redirect', redirect.value);
}); });
const router = useRouter();
const form = reactive({ const form = reactive({
email: 'uni-app@test.com', email: 'uni-app@test.com',
password: 'Vue3_Ts_Vite', password: 'Vue3_Ts_Vite',
@ -18,6 +21,10 @@
authStore.login(e.detail.value).then(() => { authStore.login(e.detail.value).then(() => {
Toast('登录成功', { duration: 1500 }); Toast('登录成功', { duration: 1500 });
setTimeout(() => { setTimeout(() => {
if (redirect.value) {
router.go(redirect.value, { replace: true });
return;
}
router.pushTab('/pages/about/index'); router.pushTab('/pages/about/index');
}, 1500); }, 1500);
}); });

View File

@ -1,10 +1,11 @@
<script lang="ts" setup> <script lang="ts" setup>
import { onLoad } from '@dcloudio/uni-app'; import { onLoad } from '@dcloudio/uni-app';
import { ref } from 'vue'; import { ref } from 'vue';
import { router } from '@/utils/router';
import BasicButton from '@/components/BasicButton/index.vue'; import BasicButton from '@/components/BasicButton/index.vue';
import { useRouter } from '@/hooks/router';
const go = ref<string>(''); const go = ref<string>('');
const router = useRouter();
const redirect = ref<string>(''); const redirect = ref<string>('');
onLoad((query) => { onLoad((query) => {
go.value = query.go || ''; go.value = query.go || '';

View File

@ -1,11 +1,15 @@
import { types } from 'sass';
import Boolean = types.Boolean;
export interface Route extends Record<string, any> { export interface Route extends Record<string, any> {
path: string; path: string;
meta?: { meta?: {
ignoreAuth?: boolean; ignoreAuth?: boolean;
tabBar: boolean;
}; };
style: { style: {
navigationBarTitleText: string; navigationBarTitleText: string;
[key: string]: string; [key: string]: string | boolean;
}; };
} }

View File

@ -1,6 +1,6 @@
import { router } from '@/utils/router/index';
import { LOGIN_PAGE } from '@/enums/routerEnum'; import { LOGIN_PAGE } from '@/enums/routerEnum';
import { useRouterStore } from '@/state/modules/router'; import { useRouterStore } from '@/state/modules/router';
import { useRouter } from '@/hooks/router';
/** /**
* *
@ -8,8 +8,7 @@ import { useRouterStore } from '@/state/modules/router';
* @return boolean * @return boolean
*/ */
export function isIgnoreAuth(path: string): boolean { export function isIgnoreAuth(path: string): boolean {
let _path = path.split('?')[0]; const _path = filterPath(path);
_path = _path.startsWith('/') ? _path.slice(1) : _path;
const routerStore = useRouterStore(); const routerStore = useRouterStore();
const routes = routerStore.getRoutes; const routes = routerStore.getRoutes;
if (!routes) return false; if (!routes) return false;
@ -24,5 +23,16 @@ export function isIgnoreAuth(path: string): boolean {
export function jumpLogin(path: string) { export function jumpLogin(path: string) {
const _path = path.startsWith('/') ? path : `/${path}`; const _path = path.startsWith('/') ? path : `/${path}`;
const pathQuery = encodeURIComponent(_path); const pathQuery = encodeURIComponent(_path);
const router = useRouter();
router.push(`${LOGIN_PAGE}?redirect=${pathQuery}`); router.push(`${LOGIN_PAGE}?redirect=${pathQuery}`);
} }
/**
* url,path
* @param url
* @param prefix
*/
export function filterPath(url: string, prefix = '') {
const path = url.split('?')[0];
return prefix + (path.startsWith('/') ? path.substring(1) : path);
}

View File

@ -1,9 +0,0 @@
import { Navigates } from '@/utils/router/navigates';
/**
*
* (subPackage)
*/
export const AUTH_PAGE: string[] = ['pages/log/index'];
export const router = new Navigates();

View File

@ -3,6 +3,8 @@ import { warn } from 'vue';
import { deepMerge } from '@/utils'; import { deepMerge } from '@/utils';
import { routerBeforeEach } from '@/utils/router/interceptor'; import { routerBeforeEach } from '@/utils/router/interceptor';
import { cloneDeep } from 'lodash-es'; import { cloneDeep } from 'lodash-es';
import { useRouterStore } from '@/state/modules/router';
import { filterPath } from '@/utils/router/constant';
export type NavigateOptions = Partial<Omit<UniApp.NavigateToOptions, 'url'>> & { delta?: number }; export type NavigateOptions = Partial<Omit<UniApp.NavigateToOptions, 'url'>> & { delta?: number };
@ -37,18 +39,42 @@ export class Navigates {
break; break;
} }
} }
/**
* uni.navigateTo
* @param url
* @param options
*/
push(url: string, options?: NavigateOptions) { push(url: string, options?: NavigateOptions) {
this.type = NAVIGATE_TYPE.NAVIGATE_TO; this.type = NAVIGATE_TYPE.NAVIGATE_TO;
this.navigate(url, options); this.navigate(url, options);
} }
/**
* uni.redirectTo
* @param url
* @param options
*/
replace(url: string, options?: NavigateOptions) { replace(url: string, options?: NavigateOptions) {
this.type = NAVIGATE_TYPE.REDIRECT_TO; this.type = NAVIGATE_TYPE.REDIRECT_TO;
this.navigate(url, options); this.navigate(url, options);
} }
/**
* uni.reLaunch
* @param url
* @param options
*/
replaceAll(url: string, options?: NavigateOptions) { replaceAll(url: string, options?: NavigateOptions) {
this.type = NAVIGATE_TYPE.RE_LAUNCH; this.type = NAVIGATE_TYPE.RE_LAUNCH;
this.navigate(url, options); this.navigate(url, options);
} }
/**
* uni.switchTab
* @param url
* @param options
*/
pushTab(url: string, options?: NavigateOptions) { pushTab(url: string, options?: NavigateOptions) {
// 微信小程序端uni.switchTab拦截无效处理 // 微信小程序端uni.switchTab拦截无效处理
/* #ifdef MP-WEIXIN */ /* #ifdef MP-WEIXIN */
@ -59,8 +85,34 @@ export class Navigates {
this.type = NAVIGATE_TYPE.SWITCH_TAB; this.type = NAVIGATE_TYPE.SWITCH_TAB;
this.navigate(url, options); this.navigate(url, options);
} }
/**
* uni.navigateBack
* @param options
*/
back(options?: NavigateOptions) { back(options?: NavigateOptions) {
this.type = NAVIGATE_TYPE.NAVIGATE_BACK; this.type = NAVIGATE_TYPE.NAVIGATE_BACK;
this.navigate('', options); this.navigate('', options);
} }
/**
* (navigateTo|switchTab)
* @param url
* @param options
*/
go(url: string, options?: NavigateOptions & { replace?: boolean }) {
const path = filterPath(url);
const routerStore = useRouterStore();
const routes = routerStore.getRoutes;
const route = routes?.get(path);
if (route?.meta?.tabBar) {
this.pushTab(url, options);
return;
}
if (options?.replace) {
this.replace(url, options);
return;
}
this.push(url, options);
}
} }

View File

@ -1,7 +1,8 @@
import pagesJson from '@/pages.json'; import pagesJson from '@/pages.json';
import { Route } from '@/types/router/route'; import { Route } from '@/types/router/route';
import { assign } from 'lodash-es';
const { pages, subPackages } = pagesJson; const { pages, subPackages, tabBar } = pagesJson;
// 将pages.json转换成Map对象,path为key // 将pages.json转换成Map对象,path为key
const pagesMap = new Map<string, Route>(); const pagesMap = new Map<string, Route>();
@ -20,4 +21,21 @@ if (Array.isArray(subPackages) && subPackages.length) {
}); });
} }
if (tabBar) {
const tabBarList = tabBar.list;
if (Array.isArray(tabBarList)) {
tabBarList.forEach((el) => {
if (pagesMap.has(el.pagePath)) {
const page = pagesMap.get(el.pagePath);
const meta = page?.meta || {};
// @ts-ignore
meta.tabBar = true;
// @ts-ignore
page.meta = assign({}, meta);
pagesMap.set(el.pagePath, page as Route);
}
});
}
}
export { pagesMap }; export { pagesMap };