Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
Hello UTS
提交
fc1a78cb
H
Hello UTS
项目概览
DCloud
/
Hello UTS
通知
1595
Star
27
Fork
9
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
Hello UTS
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
fc1a78cb
编写于
3月 14, 2023
作者:
lizhongyi_
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: uni-usercapturescreen / uni-syntaxcase 部分uts语法更改
上级
638c27e1
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
118 addition
and
41 deletion
+118
-41
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
+31
-18
uni_modules/uni-usercapturescreen/utssdk/interface.uts
uni_modules/uni-usercapturescreen/utssdk/interface.uts
+21
-0
uni_modules/uts-syntaxcase/index.uts
uni_modules/uts-syntaxcase/index.uts
+30
-11
uni_modules/uts-syntaxcase/utssdk/app-ios/index.uts
uni_modules/uts-syntaxcase/utssdk/app-ios/index.uts
+36
-12
未找到文件。
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
浏览文件 @
fc1a78cb
import { NotificationCenter} from 'Foundation';
import { UIApplication } from "UIKit"
import { OnUserCaptureScreen, OffUserCaptureScreen, UserCaptureScreenCallback } from "../interface.uts"
/**
* 定义监听截屏事件工具类
*/
class CaptureScreenTool {
static listener
?: UTSCallback
;
static listener
: UserCaptureScreenCallback | null
;
// 监听截屏
static listenCaptureScreen(callback
?: UTSCallback
) {
static listenCaptureScreen(callback
: UserCaptureScreenCallback | null
) {
this.listener = callback
// 注册监听截屏事件及回调方法
...
...
@@ -20,30 +22,41 @@ class CaptureScreenTool {
// 捕获截屏回调的方法
// target-action 的方法前需要添加 @objc 前缀
@objc static userDidTakeScreenshot() {
const obj = new UTSJSONObject()
// 回调
this.listener?.(
obj
)
this.listener?.(
{}
)
}
// 移除监听事件
static removeListen(callback
?: UTSCallback
) {
static removeListen(callback
: UserCaptureScreenCallback | null
) {
this.listener = null
NotificationCenter.default.removeObserver(this)
const obj = new UTSJSONObject()
callback?.(obj)
}
}
/**
* 开启截图监听
*/
export function onUserCaptureScreen(callback?: UTSCallback) {
CaptureScreenTool.listenCaptureScreen(callback)
}
/
/ /
**
//
* 开启截图监听
//
*/
//
export function onUserCaptureScreen(callback?: UTSCallback) {
//
CaptureScreenTool.listenCaptureScreen(callback)
//
}
/**
* 关闭截屏监听
*/
export function offUserCaptureScreen(callback?: UTSCallback) {
CaptureScreenTool.removeListen(callback)
// /**
// * 关闭截屏监听
// */
// export function offUserCaptureScreen(callback?: UTSCallback) {
// CaptureScreenTool.removeListen(callback)
// }
/**
* 开启截图监听
*/
export const onUserCaptureScreen : OnUserCaptureScreen = function (callback : UserCaptureScreenCallback | null) {
CaptureScreenTool.listenCaptureScreen(callback)
}
/**
* 关闭截屏监听
*/
export const offUserCaptureScreen : OffUserCaptureScreen = function (callback : UserCaptureScreenCallback | null) {
CaptureScreenTool.removeListen(callback)
}
uni_modules/uni-usercapturescreen/utssdk/interface.uts
0 → 100644
浏览文件 @
fc1a78cb
export type UserCaptureScreenCallback = (res: any) => void
/**
* 开启截屏监听
*
* @param {UTSCallback} callback
* @tutorial https://uniapp.dcloud.net.cn/api/system/capture-screen.html#onusercapturescreen
* @platforms APP-IOS = ^9.0,APP-ANDROID = ^22
* @since 3.6.8
*/
export type OnUserCaptureScreen = (callback : UserCaptureScreenCallback | null) => void
/**
* 关闭截屏监听
*
* @param {UTSCallback} callback
* @tutorial https://uniapp.dcloud.net.cn/api/system/capture-screen.html#offusercapturescreen
* @platforms APP-IOS = ^9.0,APP-ANDROID = ^22
* @since 3.6.8
*/
export type OffUserCaptureScreen = (callback : UserCaptureScreenCallback | null) => void
\ No newline at end of file
uni_modules/uts-syntaxcase/index.uts
浏览文件 @
fc1a78cb
...
...
@@ -4,6 +4,16 @@ type AsyncOptions = {
fail
:
(
res
:
string
)
=>
void
;
complete
:
(
res
:
string
)
=>
void
;
};
type
SyntaxResult
=
{
name
:
string
};
type
SyncResult
=
{
msg
:
string
}
/**
* 导出一个属性
*/
...
...
@@ -13,11 +23,12 @@ export const MAX = 100;
* 导出一个同步方法
* @returns
*/
export
function
testSync
(
msg
:
string
)
{
export
function
testSync
(
msg
:
string
)
:
SyncResult
{
console
.
log
(
"log test"
);
return
{
msg
:
`hello ${msg}`
,
};
const
res
:
SyncResult
=
{
msg
:
`hello ${msg}`
}
return
res
}
/**
* 导出一个同步方法(触发了数组越界异常)
...
...
@@ -37,20 +48,28 @@ export function testSyncWithCallback(opts: AsyncOptions) {
opts
.
fail
(
"fail"
);
}
opts
.
complete
(
"complete"
);
return
{
name
:
"testSyncWithCallback"
};
const
res
:
SyntaxResult
=
{
name
:
"testSyncWithCallback"
}
return
res
}
/**
* 导出一个异步方法
* @returns
*/
export
async
function
testAsync
(
opts
:
AsyncOptions
)
{
export
async
function
testAsync
(
opts
:
AsyncOptions
)
:
Promise
<
SyntaxResult
>
{
if
(
opts
.
type
==
"success"
)
{
opts
.
success
(
"success"
);
}
else
{
opts
.
fail
(
"fail"
);
}
opts
.
complete
(
"complete"
);
return
{
name
:
"testAsync"
};
const
res
:
SyntaxResult
=
{
name
:
"testAsync"
}
return
res
}
type
TestOptions
=
{
...
...
@@ -67,17 +86,17 @@ export class Test {
this
.
name
=
options
.
name
;
options
.
callback
(
"Test.constructor"
);
}
static
testClassStaticSyncWithCallback
(
opts
:
AsyncOptions
)
:
UTSJSONObjec
t
{
static
testClassStaticSyncWithCallback
(
opts
:
AsyncOptions
)
:
SyntaxResul
t
{
return
testSyncWithCallback
(
opts
);
}
static
async
testClassStaticAsync
(
opts
:
AsyncOptions
)
:
Promise
<
UTSJSONObjec
t
>
{
static
async
testClassStaticAsync
(
opts
:
AsyncOptions
)
:
Promise
<
SyntaxResul
t
>
{
const
res
=
await
testAsync
(
opts
);
return
res
;
}
testClassSyncWithCallback
(
opts
:
AsyncOptions
)
:
UTSJSONObjec
t
{
testClassSyncWithCallback
(
opts
:
AsyncOptions
)
:
SyntaxResul
t
{
return
testSyncWithCallback
(
opts
);
}
async
testClassAsync
(
opts
:
AsyncOptions
)
:
Promise
<
UTSJSONObjec
t
>
{
async
testClassAsync
(
opts
:
AsyncOptions
)
:
Promise
<
SyntaxResul
t
>
{
const
res
=
await
testAsync
(
opts
);
return
res
;
}
...
...
uni_modules/uts-syntaxcase/utssdk/app-ios/index.uts
浏览文件 @
fc1a78cb
...
...
@@ -5,6 +5,15 @@ type AsyncOptions = {
fail
:
(
res
:
string
)
=>
void
;
complete
:
(
res
:
string
)
=>
void
;
};
type
SyntaxResult
=
{
name
:
string
};
type
SyncResult
=
{
msg
:
string
}
/**
* 导出一个属性
*/
...
...
@@ -14,12 +23,17 @@ export const MAX = 100;
* 导出一个同步方法
* @returns
*/
export
function
testSync
(
msg
:
string
)
{
export
function
testSync
(
msg
:
string
)
:
SyncResult
{
console
.
log
(
"log test"
);
log
(
"log test1"
);
return
{
msg
:
`hello ${msg}`
,
};
const
res
:
SyncResult
=
{
msg
:
`hello ${msg}`
}
return
res
// return {
// msg: `hello ${msg}`,
// };
}
/**
* 导出一个同步方法(触发了数组越界异常)
...
...
@@ -32,27 +46,37 @@ export function testSyncError() {
* 导出一个带callback的同步方法
* @param opts
*/
export
function
testSyncWithCallback
(
opts
:
AsyncOptions
)
{
export
function
testSyncWithCallback
(
opts
:
AsyncOptions
)
:
SyntaxResult
{
if
(
opts
.
type
==
"success"
)
{
opts
.
success
(
"success"
);
}
else
{
opts
.
fail
(
"fail"
);
}
opts
.
complete
(
"complete"
);
return
{
name
:
"testSyncWithCallback"
};
const
res
:
SyntaxResult
=
{
name
:
"testSyncWithCallback"
}
return
res
;
// return { name: "testSyncWithCallback" };
}
/**
* 导出一个异步方法
* @returns
*/
export
async
function
testAsync
(
opts
:
AsyncOptions
)
{
export
async
function
testAsync
(
opts
:
AsyncOptions
)
:
Promise
<
SyntaxResult
>
{
if
(
opts
.
type
==
"success"
)
{
opts
.
success
(
"success"
);
}
else
{
opts
.
fail
(
"fail"
);
}
opts
.
complete
(
"complete"
);
return
{
name
:
"testAsync"
};
const
res
:
SyntaxResult
=
{
name
:
"testAsync"
}
return
res
;
// return { name: "testAsync" };
}
type
TestOptions
=
{
...
...
@@ -69,17 +93,17 @@ export class Test {
this
.
name
=
options
.
name
;
options
.
callback
(
"Test.constructor"
);
}
static
testClassStaticSyncWithCallback
(
opts
:
AsyncOptions
)
:
UTSJSONObjec
t
{
static
testClassStaticSyncWithCallback
(
opts
:
AsyncOptions
)
:
SyntaxResul
t
{
return
testSyncWithCallback
(
opts
);
}
static
async
testClassStaticAsync
(
opts
:
AsyncOptions
)
:
Promise
<
UTSJSONObjec
t
>
{
static
async
testClassStaticAsync
(
opts
:
AsyncOptions
)
:
Promise
<
SyntaxResul
t
>
{
const
res
=
await
testAsync
(
opts
);
return
res
;
}
testClassSyncWithCallback
(
opts
:
AsyncOptions
)
:
UTSJSONObjec
t
{
testClassSyncWithCallback
(
opts
:
AsyncOptions
)
:
SyntaxResul
t
{
return
testSyncWithCallback
(
opts
);
}
async
testClassAsync
(
opts
:
AsyncOptions
)
:
Promise
<
UTSJSONObjec
t
>
{
async
testClassAsync
(
opts
:
AsyncOptions
)
:
Promise
<
SyntaxResul
t
>
{
const
res
=
await
testAsync
(
opts
);
return
res
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录