Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
8716b5cc
U
uni-app
项目概览
DCloud
/
uni-app
6 个月 前同步成功
通知
751
Star
38709
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
8
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
8
Issue
8
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
8716b5cc
编写于
10月 19, 2022
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wip(uts): compiler
上级
09405f65
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
33 addition
and
5 deletion
+33
-5
packages/uni-app/dist/uni-app.cjs.js
packages/uni-app/dist/uni-app.cjs.js
+16
-0
packages/uni-app/dist/uni-app.d.ts
packages/uni-app/dist/uni-app.d.ts
+12
-0
packages/uni-app/dist/uni-app.es.js
packages/uni-app/dist/uni-app.es.js
+1
-0
packages/uni-app/src/utils.ts
packages/uni-app/src/utils.ts
+1
-1
packages/uni-app/src/uts.ts
packages/uni-app/src/uts.ts
+1
-1
packages/uni-uts-vite/src/utils/compiler/code.ts
packages/uni-uts-vite/src/utils/compiler/code.ts
+2
-3
未找到文件。
packages/uni-app/dist/uni-app.cjs.js
浏览文件 @
8716b5cc
...
...
@@ -319,6 +319,22 @@ function initUtsClassName(moduleName, className, is_uni_modules) {
return
''
;
}
Object
.
defineProperty
(
exports
,
'
capitalize
'
,
{
enumerable
:
true
,
get
:
function
()
{
return
shared
.
capitalize
;
}
});
Object
.
defineProperty
(
exports
,
'
extend
'
,
{
enumerable
:
true
,
get
:
function
()
{
return
shared
.
extend
;
}
});
Object
.
defineProperty
(
exports
,
'
hasOwn
'
,
{
enumerable
:
true
,
get
:
function
()
{
return
shared
.
hasOwn
;
}
});
Object
.
defineProperty
(
exports
,
'
isPlainObject
'
,
{
enumerable
:
true
,
get
:
function
()
{
return
shared
.
isPlainObject
;
}
});
exports
.
formatAppLog
=
formatAppLog
;
exports
.
formatH5Log
=
formatH5Log
;
exports
.
getCurrentSubNVue
=
getCurrentSubNVue
;
...
...
packages/uni-app/dist/uni-app.d.ts
浏览文件 @
8716b5cc
import
{
capitalize
}
from
'
@vue/shared
'
;
import
type
{
ComponentInternalInstance
}
from
'
@vue/runtime-core
'
;
import
{
extend
}
from
'
@vue/shared
'
;
import
{
hasOwn
}
from
'
@vue/shared
'
;
import
{
isPlainObject
}
from
'
@vue/shared
'
;
import
{
ref
}
from
'
vue
'
;
import
{
shallowRef
}
from
'
vue
'
;
...
...
@@ -16,6 +20,8 @@ declare interface BackPressOption {
from
:
'
backbutton
'
|
'
navigateBack
'
;
}
export
{
capitalize
}
declare
interface
CustomShareAppMessage
{
title
?:
string
;
path
?:
string
;
...
...
@@ -28,6 +34,8 @@ declare interface CustomShareTimeline {
imageUrl
?:
string
;
}
export
{
extend
}
export
declare
function
formatAppLog
(
type
:
'
log
'
|
'
info
'
|
'
debug
'
|
'
warn
'
|
'
error
'
,
filename
:
string
,
...
args
:
unknown
[]):
void
;
export
declare
function
formatH5Log
(
type
:
keyof
Console
,
filename
:
string
,
...
args
:
unknown
[]):
void
;
...
...
@@ -39,6 +47,8 @@ export declare function getCurrentSubNVue(): any;
export
declare
function
getSsrGlobalData
():
any
;
export
{
hasOwn
}
export
declare
function
initUtsClassName
(
moduleName
:
string
,
className
:
string
,
is_uni_modules
:
boolean
):
string
;
export
declare
function
initUtsIndexClassName
(
moduleName
:
string
,
is_uni_modules
:
boolean
):
string
;
...
...
@@ -51,6 +61,8 @@ export declare const initUtsProxyFunction: typeof initUtsStaticMethod;
declare
function
initUtsStaticMethod
(
async
:
boolean
,
opts
:
ProxyFunctionOptions
):
(...
args
:
unknown
[])
=>
unknown
;
export
{
isPlainObject
}
declare
type
LaunchOption
=
LaunchShowOption
;
declare
interface
LaunchShowOption
{
...
...
packages/uni-app/dist/uni-app.es.js
浏览文件 @
8716b5cc
import
{
shallowRef
,
ref
,
getCurrentInstance
,
isInSSRComponentSetup
,
injectHook
}
from
'
vue
'
;
import
{
hasOwn
,
isString
,
extend
,
capitalize
,
isPlainObject
}
from
'
@vue/shared
'
;
export
{
capitalize
,
extend
,
hasOwn
,
isPlainObject
}
from
'
@vue/shared
'
;
import
{
sanitise
,
UNI_SSR_DATA
,
UNI_SSR_GLOBAL_DATA
,
UNI_SSR
,
ON_SHOW
,
ON_HIDE
,
ON_LAUNCH
,
ON_ERROR
,
ON_THEME_CHANGE
,
ON_PAGE_NOT_FOUND
,
ON_UNHANDLE_REJECTION
,
ON_INIT
,
ON_LOAD
,
ON_READY
,
ON_UNLOAD
,
ON_RESIZE
,
ON_BACK_PRESS
,
ON_PAGE_SCROLL
,
ON_TAB_ITEM_TAP
,
ON_REACH_BOTTOM
,
ON_PULL_DOWN_REFRESH
,
ON_SAVE_EXIT_STATE
,
ON_SHARE_TIMELINE
,
ON_ADD_TO_FAVORITES
,
ON_SHARE_APP_MESSAGE
,
ON_NAVIGATION_BAR_BUTTON_TAP
,
ON_NAVIGATION_BAR_SEARCH_INPUT_CHANGED
,
ON_NAVIGATION_BAR_SEARCH_INPUT_CLICKED
,
ON_NAVIGATION_BAR_SEARCH_INPUT_CONFIRMED
,
ON_NAVIGATION_BAR_SEARCH_INPUT_FOCUS_CHANGED
}
from
'
@dcloudio/uni-shared
'
;
function
getSSRDataType
()
{
...
...
packages/uni-app/src/utils.ts
浏览文件 @
8716b5cc
import
{
isString
}
from
'
@vue/shared
'
export
{
isPlainObject
,
hasOwn
,
extend
,
capitalize
}
from
'
@vue/shared
'
export
function
resolveEasycom
(
component
:
unknown
,
easycom
:
unknown
)
{
return
isString
(
component
)
?
easycom
:
component
}
packages/uni-app/src/uts.ts
浏览文件 @
8716b5cc
import
{
isPlainObject
,
hasOwn
,
extend
,
capitalize
}
from
'
@vue/shared
'
import
{
isPlainObject
,
hasOwn
,
extend
,
capitalize
}
from
'
./utils
'
declare
const
uni
:
any
declare
const
plus
:
any
let
callbackId
=
1
...
...
packages/uni-uts-vite/src/utils/compiler/code.ts
浏览文件 @
8716b5cc
...
...
@@ -29,7 +29,6 @@ export async function genProxyCode(
)
{
const
{
name
,
is_uni_modules
}
=
options
return
`
import { extend } from '@vue/shared'
import { initUtsProxyClass, initUtsProxyFunction, initUtsPackageName, initUtsIndexClassName, initUtsClassName } from '@dcloudio/uni-app'
const name = '
${
name
}
'
const is_uni_modules =
${
is_uni_modules
}
...
...
@@ -68,7 +67,7 @@ function genModuleCode(decls: ProxyDecl[]) {
if
(
decl
.
type
===
'
Class
'
)
{
if
(
decl
.
isDefault
)
{
codes
.
push
(
`export default initUtsProxyClass(
extend
({ package: pkg, class: initUtsClassName(name, '
${
`export default initUtsProxyClass(
Object.assign
({ package: pkg, class: initUtsClassName(name, '
${
decl
.
cls
}
', is_uni_modules) },
${
JSON
.
stringify
(
decl
.
options
)}
))`
)
...
...
@@ -76,7 +75,7 @@ function genModuleCode(decls: ProxyDecl[]) {
codes
.
push
(
`export const
${
decl
.
cls
}
= initUtsProxyClass(
extend
({ package: pkg, class: initUtsClassName(name, '
${
}
= initUtsProxyClass(
Object.assign
({ package: pkg, class: initUtsClassName(name, '
${
decl
.
cls
}
', is_uni_modules) },
${
JSON
.
stringify
(
decl
.
options
)}
))`
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录