wip: pages

This commit is contained in:
Huang 2022-09-15 17:59:01 +08:00
parent d6b71321b5
commit 356ab3b666
14 changed files with 174 additions and 26 deletions

View File

@ -2,10 +2,13 @@
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 { setupInterceptors } from '@/utils/interceptors';
import { useAppStore } from '@/state/modules/app';
onLaunch(() => { onLaunch(() => {
console.log('App Launch'); console.log('App Launch');
setupInterceptors(); setupInterceptors();
const appStore = useAppStore();
appStore.initialize();
}); });
onShow(() => { onShow(() => {
const authStore = useAuthStore(); const authStore = useAuthStore();

View File

@ -0,0 +1,15 @@
<script lang="ts" setup name="AppProvider">
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>
<view>
<slot></slot>
</view>
</template>
<style scoped></style>

View File

@ -18,6 +18,9 @@
}, },
/* */ /* */
"modules" : {}, "modules" : {},
"optimization": {
"subPackages": true
},
/* */ /* */
"distribute" : { "distribute" : {
/* android */ /* android */
@ -58,10 +61,16 @@
"minified" : true "minified" : true
}, },
"usingComponents" : true, "usingComponents" : true,
"permission" : {} "permission" : {},
"optimization": {
"subPackages": true
}
}, },
"mp-alipay" : { "mp-alipay" : {
"usingComponents" : true "usingComponents" : true,
"optimization": {
"subPackages": true
}
}, },
"mp-baidu" : { "mp-baidu" : {
"usingComponents" : true "usingComponents" : true
@ -81,6 +90,6 @@
"devServer" : { "devServer" : {
"https" : false "https" : false
}, },
"title" : "uni-preset-vue3" "title" : "uniapp_vue3_vite_ts"
} }
} }

View File

@ -5,6 +5,9 @@
"path": "pages/index/index", "path": "pages/index/index",
"style": { "style": {
"navigationBarTitleText": "首页" "navigationBarTitleText": "首页"
},
"meta": {
"ignoreAuth": true
} }
}, },
{ {
@ -38,6 +41,28 @@
} }
} }
], ],
"subPackages": [{
"root": "pagesA",
"pages": [{
"path": "list/test1/index",
"style": {
"navigationBarTitleText": "test1"
}
},{
"path": "list/test2/index",
"style": {
"navigationBarTitleText": "test2"
}
}]
}, {
"root": "pagesB",
"pages": [{
"path": "detail/index",
"style": {
"navigationBarTitleText": "Detail"
}
}]
}],
"globalStyle": { "globalStyle": {
"navigationBarTextStyle": "black", "navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app", "navigationBarTitleText": "uni-app",

View File

@ -1,5 +1,6 @@
<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 { router } from '@/utils/router'; 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';
@ -22,19 +23,25 @@
</script> </script>
<template> <template>
<view class="container"> <AppProvider>
<view class="head-wrap"> <view class="container">
<view class="avatar"> <view class="head-wrap">
<image class="img" src="/static/images/avatar.png" /> <view class="avatar">
<image class="img" src="/static/images/avatar.png" />
</view>
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view>
</view> </view>
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view> <view class="cell"
><BasicButton @click="handleJump('/pages/log/index')">log</BasicButton></view
>
<view class="cell" v-if="isLogin"
><BasicButton @click="handleLoginOut">登出</BasicButton></view
>
<view class="cell" v-else
><BasicButton @click="handleJump('/pages/login/index')">登入</BasicButton></view
>
</view> </view>
<view class="cell"><BasicButton @click="handleJump('/pages/log/index')">log</BasicButton></view> </AppProvider>
<view class="cell" v-if="isLogin"><BasicButton @click="handleLoginOut">登出</BasicButton></view>
<view class="cell" v-else
><BasicButton @click="handleJump('/pages/login/index')">登入</BasicButton></view
>
</view>
</template> </template>
<style lang="scss" scoped> <style lang="scss" scoped>

View File

@ -1,11 +1,15 @@
<script lang="ts" setup></script> <script lang="ts" setup>
import AppProvider from '@/components/AppProvider/inedx.vue';
</script>
<template> <template>
<view class="container"> 页面构建中...54264536 </view> <AppProvider>
<view class="flex-row"> <view class="container"> 页面构建中...54264536 </view>
<view>item1</view> <view class="flex-row">
<view>item2</view> <view>item1</view>
</view> <view>item2</view>
</view>
</AppProvider>
</template> </template>
<style lang="scss" scoped> <style lang="scss" scoped>

View File

@ -1,5 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import BasicButton from '@/components/BasicButton/index.vue'; import BasicButton from '@/components/BasicButton/index.vue';
import AppProvider from '@/components/AppProvider/inedx.vue';
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');
@ -8,13 +9,15 @@
}; };
</script> </script>
<template> <template>
<view class="content"> <AppProvider>
<image class="logo" src="/static/svg/LOGO.svg" /> <view class="content">
<view class="text-area"> <image class="logo" src="/static/svg/LOGO.svg" />
<text class="">{{ title }}</text> <view class="text-area">
<text class="">{{ title }}</text>
</view>
<BasicButton @click="handleGetStarted">Get Started </BasicButton>
</view> </view>
<BasicButton @click="handleGetStarted">Get Started </BasicButton> </AppProvider>
</view>
</template> </template>
<style lang="scss"> <style lang="scss">
.content { .content {

View File

@ -0,0 +1,3 @@
<script lang="ts" setup></script>
<template> Test1 </template>
<style scoped></style>

View File

@ -0,0 +1,3 @@
<script lang="ts" setup></script>
<template> Test2 </template>
<style scoped></style>

View File

@ -0,0 +1,3 @@
<script lang="ts" setup></script>
<template> Detail </template>
<style scoped></style>

35
src/state/modules/app.ts Normal file
View File

@ -0,0 +1,35 @@
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);
},
},
});

15
src/types/pages.d.ts vendored Normal file
View File

@ -0,0 +1,15 @@
export interface Pages extends Record<string, any> {
path: string;
meta?: {
ignoreAuth?: boolean;
};
style: {
navigationBarTitleText: string;
[key: string]: string;
};
}
export interface SubPackages {
root: string;
pages: Pages[];
}

View File

23
src/utils/router/pages.ts Normal file
View File

@ -0,0 +1,23 @@
import pagesJson from '@/pages.json';
import { Pages } from '@/types/pages';
const { pages, subPackages } = pagesJson;
// 将pages.json转换成Map对象,path为key
const pagesMap = new Map<string, Pages>();
pages.forEach((page) => {
pagesMap.set(page.path, page as Pages);
});
if (Array.isArray(subPackages) && subPackages.length) {
subPackages.forEach((el) => {
const rootPath = el.root;
el.pages.forEach((page) => {
page.path = rootPath + '/' + page.path;
pagesMap.set(page.path, page as Pages);
});
});
}
export { pagesMap };