美文网首页
无限自动循环的消息滚动组件

无限自动循环的消息滚动组件

作者: sunny635533 | 来源:发表于2023-08-31 15:45 被阅读0次

大概的思路:数组的前后各加一个数据,例如原来的数组是[1,2,3,4,5], 前后加数据变成:[5,1,2,3,4,5,1]。首次加载滚动组件,初始化到索引1的位置,一直:索引+1,到最后一个的时候,滚到索引为1的位置。
具体代码如下:

/**
 * 消息提醒
 */
export class MarqueeView extends React.Component {

  scrollViewRef = React.createRef();
  scrollHeight = 0;

  constructor(props) {
    super(props)

    let list = props.dataList ?? [];
    if (list.length > 1) {//实现无限循环的效果,[5,1,2,3,4,5,1]
      list = [list[list.length - 1], ...list, list[0]];
    }

    this.state = {
      pageIndex: 1,//索引从1开始
      dataList: list,
    }
    this.itemHeight = props.itemHeight ?? 48
    this.scrollHeight = this.state.dataList.length * (this.itemHeight)
  }

  componentDidMount() {
    if (this.state.dataList.length > 1) {//初始化,跳转到"1"的位置
      this.scrollToIndex(this.state.pageIndex, false);
    }

    if (this.props.navigation) {
      this._unFocusSubscribe = this.props.navigation.addListener('focus', () => {
        if (this.state.dataList.length > 1) {
          this.loopStart()
        }
      });
      this._unBlursubscribe = this.props.navigation.addListener('blur', () => {
        this.timeId && clearTimeout(this.timeId);
      });
    } else {
      if (this.state.dataList.length > 1) {
        this.loopStart()
      }
    }
  }

  componentWillUnmount() {
    this.timeId && clearTimeout(this.timeId)
    this._unFocusSubscribe && this._unFocusSubscribe();
    this._unBlursubscribe && this._unBlursubscribe();
  }

  //更新数据
  updateMsgList = (list) => {
    let realList = [];
    if (list.length > 1) {
      realList = [list[list.length - 1], ...list, list[0]];
    } else {
      realList = list;
    }

    this.scrollHeight = realList.length * this.itemHeight;
    this.setState({ dataList: realList });

    this.timeId && clearTimeout(this.timeId)
    if (realList.length > 1) {
      if (this.state.dataList.length > 1) {//初始化,跳转到"1"的位置
        this.scrollToIndex(this.state.pageIndex, false);
      }  
      this.loopStart()
    }
  }

  scrollToIndex = (pageIndex, animated) => {
    const y = pageIndex * this.itemHeight;
    if (this.scrollViewRef?.current) {
      this.scrollViewRef?.current.scrollTo({ y, animated });
    }
  }


  loopStart = () => {
    this.timeId && clearTimeout(this.timeId)

    this.timeId = setTimeout(() => {
      const { pageIndex, dataList } = this.state;
      let newIndex = pageIndex;
      let animated = true;

      if (pageIndex >= dataList.length - 1) {//倒数最后一个的话,就跳到第二个(实际是1的位置)
        newIndex = 1;
        animated = false;
      } else {
        newIndex = pageIndex + 1;
      }

      this.scrollToIndex(newIndex, animated);
      this.setState({ pageIndex: newIndex })

      this.loopStart();

    }, 2000)
  }

  render() {
    const { dataList } = this.state;
    const { style, imageStyle, imageTintColor, textStyle, hideImage = false } = this.props;
    if (dataList.length <= 0) {
      return <View />;
    } else {
      return <View style={[{
        flexDirection: 'row',
        backgroundColor: 'rgba(0, 0, 0, 0.80)',
        alignItems: 'center'
      }, style]}>
        <Image source={require("@assets/my/team/message_notify.png")}
          style={[{ width: 20, height: 20, marginHorizontal: 12 }, imageStyle]}
          tintColor={imageTintColor} />
        <ScrollView
          horizontal={false}
          ref={this.scrollViewRef}
          style={{ flex: 1, maxHeight: this.itemHeight }}
          pagingEnabled={true}
          scrollEnabled={true}
          showsVerticalScrollIndicator={false}>
          {dataList.map((item, index) => {
            return <UIButton key={index}
              style={{
                height: this.itemHeight,
                flexDirection: 'row',
                alignItems: 'center',
                justifyContent: 'center',
              }}
              onPress={() => item.action && item.action()}>

              <View style={{ flex: 1 }}>
                <Text style={[{ color: '#fff', fontSize: 12 }, textStyle]}>{item.title}{"  索引:" + (index)}</Text>
              </View>
              {hideImage ? null : <Image source={require("@assets/my/right_arrow_big.png")}
                style={{ width: 16, height: 16, marginHorizontal: 12, tintColor: imageTintColor }}
                tintColor={imageTintColor} />}
            </UIButton>
          })}
        </ScrollView>
      </View>
    }

  }
}

使用该组件:

<MarqueeView
         dataList={[
           { title: "这是第一个消息", action: () => { } },
           { title: "这是第二个消息", action: () => { } },
           { title: "这是第三个消息", action: () => { } },
           { title: "这是第四个消息", action: () => { } },
           { title: "这是第五个消息", action: () => { } },
         ]} />
image.png

相关文章

  • ios自定义滚动文本框UILabel

    功能: 支持不同长度的字符串; 支持自动无限循环; 滚动速度设置; 效果 水平-紧凑滚动; 水平-逐条滚动; 水平...

  • UIScrollView 无限循环自动滚动

    闲来无事,小结一下这个无限循环自动滚动视图,忘大神多多提取宝贵意见,相互交流,如有错误不吝赐教。 当我们进行软件开...

  • iOS实用篇:无限循环滚动的TableView

    iOS实用篇:无限循环滚动的TableView iOS实用篇:无限循环滚动的TableView

  • 【iOS_GitHub】banner(广告页/循环滚动广告图片/

    JhtBannerScrollView(无限循环自动滚动卡片) 先上图,看一下是否符合你的场景吧! Functio...

  • 基于jQuery的公告无限循环滚动实现代码

    基于jQuery的公告无限循环滚动实现代码,效果如下,多用于pc端电商网站之中不断的循环更新的公告消息。 写一个简...

  • 左右无限循环滚动

    本文控件主要用在产品的浏览的时候,针对现在一些变态的需求,做了一个无限循环滚动的控件。 效果如下,看起来有点卡的原...

  • 300行代码实现循环滚动控件

    序言 在业务中需要显示一个循环滚动的控件,内容可以循环滚动,可以自动滚动,手指触摸的时候会暂停。由于目前的方案都是...

  • UIScrollView自动循环滚动

    设置三个ImageView 刷新 定时器 至此,大功告成 Ps:有事拍砖

  • scrollView的contentOffset

    直接修改contentOffset是没有滚动效果的,直接到达偏移量,在做无限循环的时候用的到。 为达到无限循环的效...

  • 滚动行为

    滚动行为 应用场景 : 在一个路由组件中滚动页面,切换到另一个组件中时,滚动条自动恢复到页面顶端的位置 下面的代...

网友评论

      本文标题:无限自动循环的消息滚动组件

      本文链接:https://www.haomeiwen.com/subject/suszmdtx.html