index.uts 1.1 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3
// 引用 iOS 原生平台 api
import { UIDevice } from "UIKit";

lizhongyi_'s avatar
lizhongyi_ 已提交
4
import { GetBatteryInfo, GetBatteryInfoSuccess, GetBatteryInfoResult, GetBatteryInfoSync } from '../interface.uts';
fxy060608's avatar
fxy060608 已提交
5 6 7 8 9 10 11 12 13 14 15
/**
 * 导出 获取电量方法 
 */
export const getBatteryInfo : GetBatteryInfo = function (options) {

    // 开启电量检测
    UIDevice.current.isBatteryMonitoringEnabled = true

    // 返回数据
    const res : GetBatteryInfoSuccess = {
        errMsg: "getBatteryInfo:ok",
16
        level: Number(UIDevice.current.batteryLevel * 100),
fxy060608's avatar
fxy060608 已提交
17 18 19 20
        isCharging: UIDevice.current.batteryState == UIDevice.BatteryState.charging,
    };
    options.success?.(res);
    options.complete?.(res);
21 22
}

lizhongyi_'s avatar
lizhongyi_ 已提交
23 24 25 26 27 28 29 30 31 32 33
export const getBatteryInfoSync : GetBatteryInfoSync = function (): GetBatteryInfoResult {

    // 开启电量检测
    UIDevice.current.isBatteryMonitoringEnabled = true

    // 返回数据
    const res : GetBatteryInfoResult = {
        level: Number(UIDevice.current.batteryLevel * 100),
        isCharging: UIDevice.current.batteryState == UIDevice.BatteryState.charging,
    };
	return res;
34
}