91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ReactNative短信驗證碼倒計時控件的實現代碼

發布時間:2020-09-11 06:39:07 來源:腳本之家 閱讀:133 作者:關瑋琳linSir 欄目:web開發

由于最近剛開始認真的搞RN,可能有一些封裝的不是最佳實踐,還是希望大家多提意見,和大家一起進步吧。本文介紹了ReactNative短信驗證碼倒計時控件,分享給大家

功能

根據項目的需要,需要寫一個自定義的控件,實現如下功能:

  1. 默認文字為點擊獲取驗證碼
  2. 點擊后出現60秒的倒計時
  3. 顏色,字號可調
  4. 倒計時過程中,再次點擊需要忽略掉
  5. 倒計時完成后文本恢復成點擊獲取驗證碼
  6. 再幾次點擊同之前

其實說了這么多,就是個最普通的驗證碼的功能。。。

效果

效果圖如下:(錄的圖片比較一般,對付著看吧)

ReactNative短信驗證碼倒計時控件的實現代碼

實現原理

自己封裝了個控件,它內部含有一個Text控件,然后我們又寫了一個timer,然后負責倒計時,然后每次都需要判斷一下是否繼續,然后加了一個flag字段,判斷是否接受下次點擊事件,當倒計時結束之后還需要將初始狀態重置回去即可。

代碼

控件代碼

import React, {Component } from 'react';
import {
  StyleSheet,
  Text,
  View,
  Image,
  TextInput,
  TouchableHighlight,
  StatusBar,
  Alert,
  AppRegistry
} from 'react-native';
import LinkRow from '../components/LinkRow';
import cStyles from '../styles/CommonStyle';

import axios from 'axios';

class MyCountTime extends Component {
  constructor(props) {
    super(props);
    let timeLeft = this.props.timeLeft > 0 ? this.props.timeLeft : 5;
    let width = this.props.width || 100;
    let height = this.props.height || 50;
    let color = this.props.color || '#42A5F5';
    let fontSize = this.props.fontSize || 30;
    let fontWeight = this.props.fontWeight || '600';
    let borderColor = this.props.borderColor || '#42A5F5';
    let borderWidth = this.props.borderWidth || 1;
    let borderRadius = this.props.borderRadius || 4;
    let backgroundColor = this.props.backgroundColor || '#42A5F5';
    let begin = 0;
    let press = this.props.press;

    this.afterEnd = this.props.afterEnd || this._afterEnd;
    this.style = this.props.style;

    this.state = {
      timeLeft: timeLeft,
      begin: begin
    };
    this.countTextStyle = {
      textAlign: 'center',
      color: '#42A5F5',
      fontSize: fontSize,
      fontWeight: fontWeight

    };
    this.countViewStyle = {
      backgroundColor: backgroundColor,
      alignItems: 'center',
      borderColor: borderColor,
      borderWidth: borderWidth,
      borderRadius: borderRadius,
      width: width,
      height: height
    }
  }

  countdownfn(timeLeft, callback, begin) {
    if (timeLeft > 0) {
      this.state.begin = 1;
      console.log("===lin===>");

      let that = this;
      let interval = setInterval(function () {
        if (that.state.timeLeft < 1) {
          clearInterval(interval);
          callback(that)
        } else {
          let totalTime = that.state.timeLeft;
          that.setState({
            timeLeft: totalTime - 1
          })
        }
      }, 1000)
    }
  }

  _beginCountDown() {
    if (this.state.begin === 1){
      return;
    }
    let time = this.state.timeLeft;
    console.log("===lin===> time " + time);
    let afterEnd = this.afterEnd;
    let begin = this.state.begin;
    console.log("===lin===> start " + begin);
    this.countdownfn(time, afterEnd, begin)
  }

  _afterEnd(that) {
    console.log('------------time over');
    that.setState({
      begin : 0,
      timeLeft : 5,
    })
  }

  componentDidMount() {

  }

  render() {
    return (
      <View style={{position:'absolute',top:13,right:43,height:30}}>
        <Text
          onPress={this._beginCountDown.bind(this)}
          style={{color: '#42A5F5', fontSize: 17,height:40 , zIndex:999}}> { this.state.begin === 0 ? '點擊獲取驗證碼' : this.state.timeLeft} </Text>

      </View>
    )
  }
}

應用代碼

<MyCountTime timeLeft={5}>

</MyCountTime>

當然這只是,最簡單的應用的代碼,我們還提供了很多的自定義的屬性,大家可以根據自己項目的需要,去調節這些參數。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

清河县| 临猗县| 富宁县| 周至县| 栖霞市| 和田县| 安义县| 上高县| 婺源县| 钟山县| 汶上县| 安远县| 新郑市| 河南省| 连云港市| 融水| 桐梓县| 松原市| 天柱县| 五台县| 安达市| 潮安县| 晋宁县| 新疆| 西林县| 开阳县| 怀柔区| 余干县| 长垣县| 泰安市| 岳阳市| 石城县| 厦门市| 青田县| 辽阳市| 汾西县| 温宿县| 汤阴县| 庆安县| 威信县| 利辛县|