-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDanmakuView.js
84 lines (74 loc) · 2.4 KB
/
DanmakuView.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
/**
* Created by lmy on 2017/12/13.
*/
import React, {Component} from 'react';
import {StyleSheet, View, Text, requireNativeComponent, findNodeHandle,UIManager,ReactNative} from 'react-native';
import PropTypes from 'prop-types';
const RCTDanmakuView = requireNativeComponent("RCTDanmakuView", DanmakuView);
export default class DanmakuView extends Component {
constructor(props) {
super(props);
this.findNode = this.findNode.bind(this);
this.dispatchCommand = this.dispatchCommand.bind(this);
this.defualtParams = {text: '', padding: 5, isLive: true, time: 2000, fontSize: -1, color: ''}
this.resume = this.resume.bind(this);
this.pause = this.pause.bind(this);
this.hide = this.hide.bind(this);
this.show = this.show.bind(this);
this.addDanmaku = this.addDanmaku.bind(this)
}
/**
* 重启
*/
resume() {
this.dispatchCommand('resume')
}
/**
* 暂停
*/
pause() {
this.dispatchCommand('pause')
}
/**
* 隐藏
*/
hide() {
this.dispatchCommand('hide')
}
/**
* 显示
*/
show() {
this.dispatchCommand('show')
}
/**
* 发送数据
* @param text 弹幕内容
* @param padding 弹幕的padding
* @param isLive 是否是直播
* @param time 弹幕出现时间
* @param fontSize 弹幕尺寸
* @param color 弹幕颜色
*/
addDanmaku({text = '', padding = 5, isLive = true, time = 2000, fontSize = -1, color = ''} = this.defualtParams) {
let params = [text, padding, 0, isLive, time, fontSize, color];
this.dispatchCommand('addDanmaku', params);
}
dispatchCommand(commandName, params) {
UIManager.dispatchViewManagerCommand(this.findNode(), UIManager.RCTDanmakuView.Commands[commandName], params);
}
findNode() {
return findNodeHandle(this.refs.danmakuView);
}
render() {
const nativeProps = {...this.props}
return (<RCTDanmakuView ref={'danmakuView'} {...nativeProps}/>)//测试这儿用ref=>this.danmaView=ref不能实现
}
}
DanmakuView.propTypes = {
speed:PropTypes.number,//设置弹幕速度,默认为1.2,值越小速度越快
maxLines:PropTypes.number,//设置弹幕的最大行数,默认为5
isOverlap:PropTypes.bool,//设置弹幕是否重叠
...View.propTypes
}
module.exports = DanmakuView