需要添加直播接口

This commit is contained in:
cbb
2026-01-12 17:52:15 +08:00
parent 83fec2617c
commit 13af9eb303
281 changed files with 313157 additions and 104 deletions

View File

@@ -0,0 +1,83 @@
<template>
<view class="defaultStyles"> </view>
</template>
<script lang="uts">
import Log from "android.util.Log"
import SVGAAnimationView from "uts.sdk.modules.atomicx.kotlin.SVGAAnimationView";
import SVGACallback from "com.opensource.svgaplayer.SVGACallback"
const SVGA_TAG = "SvgaPlayer"
export default {
name: "svga-player",
/**
* 组件涉及的事件声明,只有声明过的事件,才能被正常发送
*/
emits: ['onFinished'],
/**
* 规则如果没有配置expose则 methods 中的方法均对外暴露如果配置了expose则以expose的配置为准向外暴露
* ['publicMethod'] 含义为:只有 `publicMethod` 在实例上可用
*/
expose: ['startPlay', 'stopPlay'],
methods: {
startPlay(url : string) {
console.log(`${SVGA_TAG} startAnimation, url: ${url}`);
Log.e(SVGA_TAG, "startAnimation, url: " + url)
this.$el?.startAnimation(url)
},
stopPlay() {
console.log(`${SVGA_TAG} stop`);
Log.e(SVGA_TAG, "stopAnimation ")
this.$el?.stopAnimation()
}
},
created() {
console.log(`${SVGA_TAG} created`);
Log.e(SVGA_TAG, "created ")
},
NVLoad() : SVGAAnimationView {
let svgaView = new SVGAAnimationView($androidContext!)
svgaView.setCallback(new InnerSVGACallback(this))
console.log(`${SVGA_TAG} NVLoad, ${svgaView}`);
Log.e(SVGA_TAG, "NVLoad ")
return svgaView;
},
NVLoaded() {
},
NVLayouted() {
},
NVUnloaded() {
console.log(`${SVGA_TAG} NVUnloaded`);
Log.e(SVGA_TAG, "NVUnloaded ")
},
unmounted() {
console.log(`${SVGA_TAG} unmounted`);
Log.e(SVGA_TAG, "unmounted ")
}
}
class InnerSVGACallback extends SVGACallback {
private comp : UTSComponent<SVGAAnimationView>;
constructor(comp : UTSComponent<SVGAAnimationView>) {
super();
this.comp = comp;
}
override onPause() { }
override onFinished() {
console.log("SvgaPlayer onFinished")
this.comp.$emit("onFinished")
}
override onRepeat() { }
override onStep(frame : Int, percentage : Double) { }
}
</script>
<style>
/* 定义默认样式值, 组件使用者没有配置时使用 */
.defaultStyles {
background-color: white;
}
</style>