Skip to content

Commit 15bb48e

Browse files
committed
chore: init project
0 parents  commit 15bb48e

29 files changed

+4306
-0
lines changed

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.cache
2+
.DS_Store
3+
.idea
4+
*.log
5+
*.tgz
6+
coverage
7+
dist
8+
lib-cov
9+
logs
10+
node_modules
11+
temp

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 KeJun <https://github.com/kejunmao>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# @uni-helper/vite-plugin-uni-pages
2+
3+
**WIP** File system based routing for uni-app applications using Vite

build.config.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { defineBuildConfig } from "unbuild";
2+
3+
export default defineBuildConfig({
4+
entries: ["src/index"],
5+
declaration: true,
6+
clean: true,
7+
rollup: {
8+
emitCJS: true,
9+
},
10+
failOnWarn: false,
11+
externals: ["vite"],
12+
});

package.json

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"name": "@uni-helper/vite-plugin-uni-pages",
3+
"type": "module",
4+
"version": "0.0.0",
5+
"packageManager": "[email protected]",
6+
"description": "File system based routing for uni-app applications using Vite",
7+
"author": "KeJun",
8+
"license": "MIT",
9+
"homepage": "https://github.com/uni-helper/vite-plugin-uni-pages#readme",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/uni-helper/vite-plugin-uni-pages.git"
13+
},
14+
"bugs": "https://github.com/uni-helper/vite-plugin-uni-pages/issues",
15+
"keywords": [],
16+
"sideEffects": false,
17+
"exports": {
18+
".": {
19+
"types": "./dist/index.d.ts",
20+
"require": "./dist/index.cjs",
21+
"import": "./dist/index.mjs"
22+
}
23+
},
24+
"main": "./dist/index.mjs",
25+
"module": "./dist/index.mjs",
26+
"types": "./dist/index.d.ts",
27+
"typesVersions": {
28+
"*": {
29+
"*": [
30+
"./dist/*",
31+
"./dist/index.d.ts"
32+
]
33+
}
34+
},
35+
"files": [
36+
"dist"
37+
],
38+
"scripts": {
39+
"build": "unbuild",
40+
"dev": "unbuild --stub",
41+
"play": "nr -C playground dev:h5",
42+
"prepublishOnly": "pnpm build",
43+
"release": "bumpp && npm publish",
44+
"start": "esno src/index.ts",
45+
"test": "vitest"
46+
},
47+
"devDependencies": {
48+
"@types/node": "^18.11.9",
49+
"bumpp": "^8.2.1",
50+
"esno": "^0.16.3",
51+
"typescript": "^4.8.4",
52+
"unbuild": "^0.9.4",
53+
"vite": "^3.2.3",
54+
"vitest": "^0.24.5"
55+
},
56+
"dependencies": {
57+
"unconfig": "^0.3.7"
58+
}
59+
}

pages.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"pages": [
3+
{
4+
"path": "pages/index",
5+
"style": {
6+
"navigationBarTitleText": "index"
7+
}
8+
},
9+
{
10+
"path": "pages/test",
11+
"style": {
12+
"navigationBarTitleText": "test"
13+
}
14+
}
15+
],
16+
"globalStyle": {
17+
"navigationBarTextStyle": "black",
18+
"navigationBarTitleText": "@uni-helper",
19+
"navigationBarBackgroundColor": "#F8F8F8",
20+
"backgroundColor": "#F8F8F8"
21+
}
22+
}

playground/index.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<script>
6+
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
7+
CSS.supports('top: constant(a)'))
8+
document.write(
9+
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
10+
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
11+
</script>
12+
<title></title>
13+
<!--preload-links-->
14+
<!--app-context-->
15+
</head>
16+
<body>
17+
<div id="app"><!--app-html--></div>
18+
<script type="module" src="/src/main.ts"></script>
19+
</body>
20+
</html>

playground/package.json

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"name": "uni-preset-vue",
3+
"version": "0.0.0",
4+
"scripts": {
5+
"dev:app": "uni -p app",
6+
"dev:app-android": "uni -p app-android",
7+
"dev:app-ios": "uni -p app-ios",
8+
"dev:custom": "uni -p",
9+
"dev:h5": "uni",
10+
"dev:h5:ssr": "uni --ssr",
11+
"dev:mp-alipay": "uni -p mp-alipay",
12+
"dev:mp-baidu": "uni -p mp-baidu",
13+
"dev:mp-kuaishou": "uni -p mp-kuaishou",
14+
"dev:mp-lark": "uni -p mp-lark",
15+
"dev:mp-qq": "uni -p mp-qq",
16+
"dev:mp-toutiao": "uni -p mp-toutiao",
17+
"dev:mp-weixin": "uni -p mp-weixin",
18+
"dev:quickapp-webview": "uni -p quickapp-webview",
19+
"dev:quickapp-webview-huawei": "uni -p quickapp-webview-huawei",
20+
"dev:quickapp-webview-union": "uni -p quickapp-webview-union",
21+
"build:app": "uni build -p app",
22+
"build:app-android": "uni build -p app-android",
23+
"build:app-ios": "uni build -p app-ios",
24+
"build:custom": "uni build -p",
25+
"build:h5": "uni build",
26+
"build:h5:ssr": "uni build --ssr",
27+
"build:mp-alipay": "uni build -p mp-alipay",
28+
"build:mp-baidu": "uni build -p mp-baidu",
29+
"build:mp-kuaishou": "uni build -p mp-kuaishou",
30+
"build:mp-lark": "uni build -p mp-lark",
31+
"build:mp-qq": "uni build -p mp-qq",
32+
"build:mp-toutiao": "uni build -p mp-toutiao",
33+
"build:mp-weixin": "uni build -p mp-weixin",
34+
"build:quickapp-webview": "uni build -p quickapp-webview",
35+
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
36+
"build:quickapp-webview-union": "uni build -p quickapp-webview-union"
37+
},
38+
"dependencies": {
39+
"@dcloudio/uni-app": "3.0.0-alpha-3060720221018006",
40+
"@dcloudio/uni-app-plus": "3.0.0-alpha-3060720221018006",
41+
"@dcloudio/uni-components": "3.0.0-alpha-3060720221018006",
42+
"@dcloudio/uni-h5": "3.0.0-alpha-3060720221018006",
43+
"@dcloudio/uni-mp-alipay": "3.0.0-alpha-3060720221018006",
44+
"@dcloudio/uni-mp-baidu": "3.0.0-alpha-3060720221018006",
45+
"@dcloudio/uni-mp-kuaishou": "3.0.0-alpha-3060720221018006",
46+
"@dcloudio/uni-mp-lark": "3.0.0-alpha-3060720221018006",
47+
"@dcloudio/uni-mp-qq": "3.0.0-alpha-3060720221018006",
48+
"@dcloudio/uni-mp-toutiao": "3.0.0-alpha-3060720221018006",
49+
"@dcloudio/uni-mp-weixin": "3.0.0-alpha-3060720221018006",
50+
"@dcloudio/uni-quickapp-webview": "3.0.0-alpha-3060720221018006",
51+
"@uni-helper/vite-plugin-uni-pages": "workspace:*",
52+
"vue": "^3.2.45",
53+
"vue-i18n": "^9.2.2"
54+
},
55+
"devDependencies": {
56+
"@dcloudio/types": "^3.0.19",
57+
"@dcloudio/uni-automator": "3.0.0-alpha-3060720221018006",
58+
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3060720221018006",
59+
"@dcloudio/uni-stacktracey": "3.0.0-alpha-3060720221018006",
60+
"@dcloudio/vite-plugin-uni": "3.0.0-alpha-3060720221018006",
61+
"typescript": "^4.8.4",
62+
"vite": "^3.2.3"
63+
}
64+
}

playground/pages.config.ts

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { definePages } from "@uni-helper/vite-plugin-uni-pages";
2+
3+
export default definePages({
4+
pages: [
5+
{
6+
path: "pages/index",
7+
style: {
8+
navigationBarTitleText: "index",
9+
},
10+
},
11+
{
12+
path: "pages/test",
13+
style: {
14+
navigationBarTitleText: "test",
15+
},
16+
},
17+
],
18+
globalStyle: {
19+
navigationBarTextStyle: "black",
20+
navigationBarTitleText: "@uni-helper",
21+
navigationBarBackgroundColor: "#F8F8F8",
22+
backgroundColor: "#F8F8F8",
23+
},
24+
});

playground/src/App.vue

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<script setup lang="ts">
2+
import { onLaunch, onShow, onHide } from "@dcloudio/uni-app";
3+
onLaunch(() => {
4+
console.log("App Launch");
5+
});
6+
onShow(() => {
7+
console.log("App Show");
8+
});
9+
onHide(() => {
10+
console.log("App Hide");
11+
});
12+
</script>
13+
<style></style>

playground/src/env.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/// <reference types="vite/client" />
2+
3+
declare module '*.vue' {
4+
import { DefineComponent } from 'vue'
5+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
6+
const component: DefineComponent<{}, {}, any>
7+
export default component
8+
}

playground/src/main.ts

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { createSSRApp } from "vue";
2+
import App from "./App.vue";
3+
4+
const routerMethods = [
5+
"navigateTo",
6+
"redirectTo",
7+
"reLaunch",
8+
"switchTab",
9+
"navigateBack",
10+
];
11+
12+
function testMiddleware(to: string, from: string): void | boolean | string {
13+
console.log(to, from);
14+
}
15+
16+
routerMethods.forEach((method) => {
17+
uni.addInterceptor(method, {
18+
invoke(result) {
19+
const routerList = getCurrentPages();
20+
const from = routerList[routerList.length - 1];
21+
testMiddleware(result.url, from.route);
22+
},
23+
});
24+
});
25+
26+
export function createApp() {
27+
const app = createSSRApp(App);
28+
return {
29+
app,
30+
};
31+
}

playground/src/manifest.json

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"name" : "",
3+
"appid" : "",
4+
"description" : "",
5+
"versionName" : "1.0.0",
6+
"versionCode" : "100",
7+
"transformPx" : false,
8+
/* 5+App特有相关 */
9+
"app-plus" : {
10+
"usingComponents" : true,
11+
"nvueStyleCompiler" : "uni-app",
12+
"compilerVersion" : 3,
13+
"splashscreen" : {
14+
"alwaysShowBeforeRender" : true,
15+
"waiting" : true,
16+
"autoclose" : true,
17+
"delay" : 0
18+
},
19+
/* 模块配置 */
20+
"modules" : {},
21+
/* 应用发布信息 */
22+
"distribute" : {
23+
/* android打包配置 */
24+
"android" : {
25+
"permissions" : [
26+
"<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
27+
"<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
28+
"<uses-permission android:name=\"android.permission.VIBRATE\"/>",
29+
"<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
30+
"<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
31+
"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
32+
"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
33+
"<uses-permission android:name=\"android.permission.CAMERA\"/>",
34+
"<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
35+
"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
36+
"<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
37+
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
38+
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
39+
"<uses-feature android:name=\"android.hardware.camera\"/>",
40+
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
41+
]
42+
},
43+
/* ios打包配置 */
44+
"ios" : {},
45+
/* SDK配置 */
46+
"sdkConfigs" : {}
47+
}
48+
},
49+
/* 快应用特有相关 */
50+
"quickapp" : {},
51+
/* 小程序特有相关 */
52+
"mp-weixin" : {
53+
"appid" : "",
54+
"setting" : {
55+
"urlCheck" : false
56+
},
57+
"usingComponents" : true
58+
},
59+
"mp-alipay" : {
60+
"usingComponents" : true
61+
},
62+
"mp-baidu" : {
63+
"usingComponents" : true
64+
},
65+
"mp-toutiao" : {
66+
"usingComponents" : true
67+
},
68+
"uniStatistics": {
69+
"enable": false
70+
},
71+
"vueVersion" : "3"
72+
}

playground/src/pages.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"pages":[{"path":"pages/index","style":{"navigationBarTitleText":"index"}},{"path":"pages/test","style":{"navigationBarTitleText":"test"}}],"globalStyle":{"navigationBarTextStyle":"black","navigationBarTitleText":"@uni-helper","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"}}

0 commit comments

Comments
 (0)