index.vue 5.6 KB
Newer Older
打打卡夫卡's avatar
打打卡夫卡 已提交
1 2 3 4 5
<template>
    <view class="defaultStyles">

    </view>
</template>
杜庆泉's avatar
杜庆泉 已提交
6
<script lang="uts">
打打卡夫卡's avatar
打打卡夫卡 已提交
7 8 9 10 11
    import Animator from 'android.animation.Animator'
    import TextUtils from 'android.text.TextUtils'
    import View from 'android.view.View'
    import LottieAnimationView from 'com.airbnb.lottie.LottieAnimationView'
    import LottieDrawable from 'com.airbnb.lottie.LottieDrawable'
12 13
	import FileInputStream from 'java.io.FileInputStream'
	import { UTSAndroid } from "io.dcloud.uts";
打打卡夫卡's avatar
打打卡夫卡 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

    class CustomAnimListener extends Animator.AnimatorListener {

        comp: UTSComponent < LottieAnimationView >
            constructor(com: UTSComponent < LottieAnimationView > ) {
                super();
                this.comp = com
            }

        override onAnimationStart(animation: Animator | null) {}

        override onAnimationEnd(animation: Animator | null, isReverse: Boolean) {
            this.comp.emit("bindended")
        }

        override onAnimationEnd(animation: Animator | null) {}

        override onAnimationCancel(animation: Animator | null) {}

        override onAnimationRepeat(animation: Animator | null) {}
    }

    //原生提供以下属性或方法的实现  
    export default {
打打卡夫卡's avatar
打打卡夫卡 已提交
38
        name: "uts-animation-view",
打打卡夫卡's avatar
打打卡夫卡 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
        /**
         * 当播放到末尾时触发 ended 事件(自然播放结束会触发回调,循环播放结束及手动停止动画不会触发)
         */
        emits: ['bindended'],
        props: {
            /**
             * 动画资源地址,目前只支持绝对路径
             */
            "path": {
                type: String,
                default: ""
            },
            /**
             * 动画是否循环播放
             */
            "autoplay": {
                type: Boolean,
                default: false
            },
            /**
             * 动画是否自动播放
             */
            "loop": {
                type: Boolean,
                default: false
            },
            /**
             * 是否隐藏动画
             */
            "hidden": {
                type: Boolean,
                default: false
            },
            /**
             * 动画操作,可取值 play、pause、stop
             */
            "action": {
                type: String,
                default: "stop"
            }

        },
        data() {
            return {

            }
        },
        watch: {
            "path": {
                handler(newPath: string) {

打打卡夫卡's avatar
打打卡夫卡 已提交
90
					if(this.$el != null){
91
						let lottieAnimationView = this.$el!
打打卡夫卡's avatar
打打卡夫卡 已提交
92
						if (!TextUtils.isEmpty(newPath)) {
93
							
打打卡夫卡's avatar
打打卡夫卡 已提交
94 95 96
						    if (newPath.startsWith("http://") || newPath.startsWith("https://")) {
						        lottieAnimationView.setAnimationFromUrl(newPath)
						    } else {
97
						        // 默认是static了
98
								var realJsonPath = UTSAndroid.getResourcePath(newPath)
99
						        lottieAnimationView.setAnimation(new FileInputStream(realJsonPath),newPath)
打打卡夫卡's avatar
打打卡夫卡 已提交
100 101 102 103 104 105
						    }
						}
						if (this.autoplay) {
						    lottieAnimationView.playAnimation()
						}
					}
打打卡夫卡's avatar
打打卡夫卡 已提交
106
                },
107
                immediate: false
打打卡夫卡's avatar
打打卡夫卡 已提交
108 109 110
            },
            "loop": {
                handler(newLoop: Boolean) {
打打卡夫卡's avatar
打打卡夫卡 已提交
111 112
					if(this.$el != null){
						if (newLoop) {
113
						    this.$el!.repeatCount = Int.MAX_VALUE
打打卡夫卡's avatar
打打卡夫卡 已提交
114 115
						} else {
						    // 不循环则设置成1次
116
						    this.$el!.repeatCount = 0
打打卡夫卡's avatar
打打卡夫卡 已提交
117 118 119
						}
						
						if (this.autoplay) {
120
						    this.$el!.playAnimation()
打打卡夫卡's avatar
打打卡夫卡 已提交
121 122 123
						}
					}
                    
打打卡夫卡's avatar
打打卡夫卡 已提交
124
                },
125
                immediate: false
打打卡夫卡's avatar
打打卡夫卡 已提交
126 127 128 129
            },

            "autoplay": {
                handler(newValue: boolean) {
打打卡夫卡's avatar
打打卡夫卡 已提交
130 131
					if(this.$el != null){
						if (newValue) {
132
						    this.$el!.playAnimation()
打打卡夫卡's avatar
打打卡夫卡 已提交
133 134 135
						}
					}
                    
打打卡夫卡's avatar
打打卡夫卡 已提交
136
                },
137
                immediate: false
打打卡夫卡's avatar
打打卡夫卡 已提交
138 139 140 141 142 143 144
            },

            "action": {
                handler(newAction: string) {

                    if (newAction == "play" || newAction == "pause" || newAction == "stop") {

打打卡夫卡's avatar
打打卡夫卡 已提交
145 146
						if(this.$el != null){
							if (this.action == "play") {
147
							    this.$el!.playAnimation()
打打卡夫卡's avatar
打打卡夫卡 已提交
148
							} else if (this.action == "pause") {
149
							    this.$el!.pauseAnimation()
打打卡夫卡's avatar
打打卡夫卡 已提交
150
							} else if (this.action == "stop") {
151 152
							    this.$el!.cancelAnimation()
							    this.$el!.clearAnimation()
打打卡夫卡's avatar
打打卡夫卡 已提交
153 154
							}
						}
打打卡夫卡's avatar
打打卡夫卡 已提交
155 156 157 158 159

                    } else {
                        // 非法入参,不管
                    }
                },
160
                immediate: false
打打卡夫卡's avatar
打打卡夫卡 已提交
161 162 163 164
            },

            "hidden": {
                handler(newValue: boolean) {
打打卡夫卡's avatar
打打卡夫卡 已提交
165 166
					if(this.$el != null){
						if (newValue) {
167
						    this.$el!.visibility = View.GONE
打打卡夫卡's avatar
打打卡夫卡 已提交
168
						} else {
169
						    this.$el!.visibility = View.VISIBLE
打打卡夫卡's avatar
打打卡夫卡 已提交
170 171
						}
					}
打打卡夫卡's avatar
打打卡夫卡 已提交
172
                },
173
                immediate: false
打打卡夫卡's avatar
打打卡夫卡 已提交
174 175 176 177 178
            },

        },
        methods: {
            setRepeatMode(repeat: string) {
打打卡夫卡's avatar
打打卡夫卡 已提交
179 180
				if(this.$el != null){
					if ("RESTART" == repeat) {
181
					    this.$el!.repeatMode = LottieDrawable.RESTART
打打卡夫卡's avatar
打打卡夫卡 已提交
182
					} else if ("REVERSE" == repeat) {
183
					    this.$el!.repeatMode = LottieDrawable.RESTART
打打卡夫卡's avatar
打打卡夫卡 已提交
184 185
					}
				}
打打卡夫卡's avatar
打打卡夫卡 已提交
186 187
            },
        },
188 189
        
        NVLoad(): LottieAnimationView { 
打打卡夫卡's avatar
打打卡夫卡 已提交
190
            let lottieAnimationView = new LottieAnimationView($androidContext)
打打卡夫卡's avatar
打打卡夫卡 已提交
191 192
            return lottieAnimationView
        },
193
		
194
        NVLoaded() { 
打打卡夫卡's avatar
打打卡夫卡 已提交
195
			if(this.$el != null){
196 197 198 199
				this.$el!.repeatMode = LottieDrawable.RESTART;
				this.$el!.visibility = View.GONE
				this.$el!.repeatCount = 0
				this.$el!.addAnimatorListener(new CustomAnimListener(this))
打打卡夫卡's avatar
打打卡夫卡 已提交
200
			}
打打卡夫卡's avatar
打打卡夫卡 已提交
201
        }
202
        
打打卡夫卡's avatar
打打卡夫卡 已提交
203 204 205 206 207 208 209 210 211
    }
</script>
<style>
    /* 定义默认样式值, 组件使用者没有配置时使用 */
    .defaultStyles {
        width: 750rpx;
        height: 240rpx;
    }
</style>