index.vue 5.5 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
	import FileInputStream from 'java.io.FileInputStream'
打打卡夫卡's avatar
打打卡夫卡 已提交
13 14 15 16 17 18 19 20 21

    class CustomAnimListener extends Animator.AnimatorListener {

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

22
        override onAnimationStart(animation: Animator) {}
打打卡夫卡's avatar
打打卡夫卡 已提交
23

24
        override onAnimationEnd(animation: Animator, isReverse: Boolean) {
杜庆泉's avatar
杜庆泉 已提交
25
            this.comp.$emit("bindended")
打打卡夫卡's avatar
打打卡夫卡 已提交
26 27
        }

28
        override onAnimationEnd(animation: Animator) {}
打打卡夫卡's avatar
打打卡夫卡 已提交
29

30
        override onAnimationCancel(animation: Animator) {}
打打卡夫卡's avatar
打打卡夫卡 已提交
31

32
        override onAnimationRepeat(animation: Animator) {}
打打卡夫卡's avatar
打打卡夫卡 已提交
33 34 35 36
    }

    //原生提供以下属性或方法的实现  
    export default {
打打卡夫卡's avatar
打打卡夫卡 已提交
37
        name: "uts-animation-view",
打打卡夫卡's avatar
打打卡夫卡 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50
        /**
         * 当播放到末尾时触发 ended 事件(自然播放结束会触发回调,循环播放结束及手动停止动画不会触发)
         */
        emits: ['bindended'],
        props: {
            /**
             * 动画资源地址,目前只支持绝对路径
             */
            "path": {
                type: String,
                default: ""
            },
            /**
51
             * 动画是否自动播放
打打卡夫卡's avatar
打打卡夫卡 已提交
52 53 54 55 56 57
             */
            "autoplay": {
                type: Boolean,
                default: false
            },
            /**
58
			 * 动画是否循环播放
打打卡夫卡's avatar
打打卡夫卡 已提交
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
             */
            "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
打打卡夫卡 已提交
89
					if(this.$el != null){
90
						let lottieAnimationView = this.$el!
打打卡夫卡's avatar
打打卡夫卡 已提交
91
						if (!TextUtils.isEmpty(newPath)) {
92
							
打打卡夫卡's avatar
打打卡夫卡 已提交
93 94 95
						    if (newPath.startsWith("http://") || newPath.startsWith("https://")) {
						        lottieAnimationView.setAnimationFromUrl(newPath)
						    } else {
96
						        // 默认是static了
97
								var realJsonPath = UTSAndroid.getResourcePath(newPath)
98
						        lottieAnimationView.setAnimation(new FileInputStream(realJsonPath),newPath)
打打卡夫卡's avatar
打打卡夫卡 已提交
99 100 101 102 103 104
						    }
						}
						if (this.autoplay) {
						    lottieAnimationView.playAnimation()
						}
					}
打打卡夫卡's avatar
打打卡夫卡 已提交
105
                },
106
                immediate: false
打打卡夫卡's avatar
打打卡夫卡 已提交
107 108 109
            },
            "loop": {
                handler(newLoop: Boolean) {
打打卡夫卡's avatar
打打卡夫卡 已提交
110 111
					if(this.$el != null){
						if (newLoop) {
112
						    this.$el!.repeatCount = Int.MAX_VALUE
打打卡夫卡's avatar
打打卡夫卡 已提交
113 114
						} else {
						    // 不循环则设置成1次
115
						    this.$el!.repeatCount = 0
打打卡夫卡's avatar
打打卡夫卡 已提交
116 117 118
						}
						
						if (this.autoplay) {
119
						    this.$el!.playAnimation()
打打卡夫卡's avatar
打打卡夫卡 已提交
120 121 122
						}
					}
                    
打打卡夫卡's avatar
打打卡夫卡 已提交
123
                },
124
                immediate: false
打打卡夫卡's avatar
打打卡夫卡 已提交
125 126 127 128
            },

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

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

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

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

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

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

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