微信小程序之自定義倒計(jì)時(shí)組件

開(kāi)頭

  • 最近寫(xiě)小程序?qū)懮习a了,業(yè)務(wù)上需要實(shí)現(xiàn)一個(gè)倒計(jì)時(shí)的功能,考慮到可拓展以及使用方便,便將其封裝成組件(寫(xiě)習(xí)慣了JSX不得不吐槽小程序自定義組件的繁瑣)

需求

  • 可配置倒計(jì)時(shí)的時(shí)間
  • 倒計(jì)時(shí)結(jié)束后執(zhí)行事件
  • 可配置倒計(jì)時(shí)時(shí)間的格式

步驟

  • 先定義自定義組件的properties,這里有兩個(gè)父組件傳給該倒計(jì)時(shí)組件的參數(shù)target倒計(jì)時(shí)的時(shí)間,format倒計(jì)時(shí)時(shí)間的格式
properties: {
    target: {
      type: String,
    },
    format: {
      type: Function,
      default: null
    }
},
  • 定義組件生命周期函數(shù)
lifetimes: {
    attached() {
      //組件創(chuàng)建時(shí)
      this.setData({
        lastTime: this.initTime(this.properties).lastTime,  //根據(jù) target 初始化組件的lastTime屬性
      }, () => {
        //開(kāi)啟定時(shí)器
        this.tick();
        //判斷是否有format屬性 如果設(shè)置按照自定義format處理頁(yè)面上顯示的時(shí)間 沒(méi)有設(shè)置按照默認(rèn)的格式處理
        if (typeof this.properties.format === 'object') {
          this.defaultFormat(this.data.lastTime)
        }
      })
    },

    detached() {
      //組件銷(xiāo)毀時(shí)清除定時(shí)器 防止爆棧
      clearTimeout(timer);
    },
},

微信小程序自定義組件的生命周期指的是指的是組件自身的一些函數(shù)兵多,這些函數(shù)在特殊的時(shí)間點(diǎn)或遇到一些特殊的框架事件時(shí)被自動(dòng)觸發(fā)旦万。其中田晚,最重要的生命周期是 created attached detached 稀余,包含一個(gè)組件實(shí)例生命流程的最主要時(shí)間點(diǎn)邦邦。具體微信自定義組件學(xué)習(xí)參考官方文檔

  • 定義組件自身的狀態(tài)
/**
 * 組件的初始數(shù)據(jù)
*/
data: {
    d: 0, //天
    h: 0, //時(shí)
    m: 0, //分
    s: 0, //秒
    result: '',  //自定義格式返回頁(yè)面顯示結(jié)果
    lastTime:''  //倒計(jì)時(shí)的時(shí)間錯(cuò)
},
  • 組件自身的方法
methods: {
    //默認(rèn)處理時(shí)間格式
    defaultFormat: function(time) {
      const day = 24 * 60 * 60 * 1000
      const hours = 60 * 60 * 1000;
      const minutes = 60 * 1000;

      const d = Math.floor(time / day);
      const h = Math.floor((time - d * day) / hours);
      const m = Math.floor((time - d * day - h * hours) / minutes);
      const s = Math.floor((time - d * day - h * hours - m * minutes) / 1000);
      this.setData({
        d,
        h,
        m,
        s
      })
    },

    //定時(shí)事件
    tick: function() {
      let {
        lastTime
      } = this.data;

      timer = setTimeout(() => {
        if (lastTime < interval) {
          clearTimeout(timer);
          this.setData({
              lastTime: 0,
              result: ''
            },
            () => {
              this.defaultFormat(lastTime)
              if (this.onEnd) {
                this.onEnd();
              }
            }
          );
        } else {
          lastTime -= interval;
          this.setData({
              lastTime,
              result: this.properties.format ? this.properties.format(lastTime) : ''
            },
            () => {
              this.defaultFormat(lastTime)
              this.tick();
            }
          );
        }
      }, interval);
    },

    //初始化時(shí)間
    initTime: function(properties) {
      let lastTime = 0;
      let targetTime = 0;
      try {
        if (Object.prototype.toString.call(properties.target) === '[object Date]') {
          targetTime = Number(properties.target).getTime();
        } else {
          targetTime = new Date(Number(properties.target)).getTime();
        }
      } catch (e) {
        throw new Error('invalid target properties', e);
      }

      lastTime = targetTime - new Date().getTime();
      return {
        lastTime: lastTime < 0 ? 0 : lastTime,
      };
    },
    //時(shí)間結(jié)束回調(diào)事件
    onEnd: function() {
      this.triggerEvent('onEnd');
    }
  }

defaultFormat :默認(rèn)時(shí)間處理函數(shù) tick:定時(shí)事件 initTime 初始化時(shí)間
onEnd:時(shí)間結(jié)束的回調(diào)

  • 倒計(jì)時(shí)組件countDown.js完整代碼
var timer = 0;
var interval = 1000;
Component({
  /**
   * 組件的屬性列表
   */
  properties: {
    target: {
      type: String,
    },
    format: {
      type: Function,
      default: null
    }
  },

  lifetimes: {
    attached() {
      //組件創(chuàng)建時(shí)
      this.setData({
        lastTime: this.initTime(this.properties).lastTime,  //根據(jù) target 初始化組件的lastTime屬性
      }, () => {
        //開(kāi)啟定時(shí)器
        this.tick();
        //判斷是否有format屬性 如果設(shè)置按照自定義format處理頁(yè)面上顯示的時(shí)間 沒(méi)有設(shè)置按照默認(rèn)的格式處理
        if (typeof this.properties.format === 'object') {
          this.defaultFormat(this.data.lastTime)
        }
      })
    },

    detached() {
      //組件銷(xiāo)毀時(shí)清除定時(shí)器 防止爆棧
      clearTimeout(timer);
    },
  },

  /**
   * 組件的初始數(shù)據(jù)
   */
  data: {
    d: 0, //天
    h: 0, //時(shí)
    m: 0, //分
    s: 0, //秒
    result: '',  //自定義格式返回頁(yè)面顯示結(jié)果
    lastTime:''  //倒計(jì)時(shí)的時(shí)間錯(cuò)
  },

  /**
   * 組件的方法列表
   */
  methods: {
    //默認(rèn)處理時(shí)間格式
    defaultFormat: function(time) {
      const day = 24 * 60 * 60 * 1000
      const hours = 60 * 60 * 1000;
      const minutes = 60 * 1000;

      const d = Math.floor(time / day);
      const h = Math.floor((time - d * day) / hours);
      const m = Math.floor((time - d * day - h * hours) / minutes);
      const s = Math.floor((time - d * day - h * hours - m * minutes) / 1000);
      this.setData({
        d,
        h,
        m,
        s
      })
    },

    //定時(shí)事件
    tick: function() {
      let {
        lastTime
      } = this.data;

      timer = setTimeout(() => {
        if (lastTime < interval) {
          clearTimeout(timer);
          this.setData({
              lastTime: 0,
              result: ''
            },
            () => {
              this.defaultFormat(lastTime)
              if (this.onEnd) {
                this.onEnd();
              }
            }
          );
        } else {
          lastTime -= interval;
          this.setData({
              lastTime,
              result: this.properties.format ? this.properties.format(lastTime) : ''
            },
            () => {
              this.defaultFormat(lastTime)
              this.tick();
            }
          );
        }
      }, interval);
    },

    //初始化時(shí)間
    initTime: function(properties) {
      let lastTime = 0;
      let targetTime = 0;
      try {
        if (Object.prototype.toString.call(properties.target) === '[object Date]') {
          targetTime = Number(properties.target).getTime();
        } else {
          targetTime = new Date(Number(properties.target)).getTime();
        }
      } catch (e) {
        throw new Error('invalid target properties', e);
      }

      lastTime = targetTime - new Date().getTime();
      return {
        lastTime: lastTime < 0 ? 0 : lastTime,
      };
    },
    //時(shí)間結(jié)束回調(diào)事件
    onEnd: function() {
      this.triggerEvent('onEnd');
    }
  }
})
  • 倒計(jì)時(shí)組件countDown.wxml完整代碼
<wxs src="../wxs/utils.wxs" module="utils" />
<wxs src="../../comm.wxs" module="comm" />
<view class="count-down">
  <text wx:if="{{result!==''}}">{{result}}</text>
  <block wx:else>
    <text wx:if="{{comm.numberToFixed(d)>0}}">{fjur7fs}天</text>
    <text>{{utils.fixedZero(h)}}</text>
    <text style="font-weight: 500">:</text>
    <text>{{utils.fixedZero(m)}}</text>
    <text style="font-weight: 500">:</text>
    <text>{{utils.fixedZero(s)}}</text>
  </block>
</view>

其中引入了兩個(gè)wxs文件中的函數(shù)
WXS(WeiXin Script)是小程序的一套腳本語(yǔ)言,結(jié)合 WXML醉蚁,可以構(gòu)建出頁(yè)面的結(jié)構(gòu)燃辖。官方文檔

function fixedZero(val) {
  return val * 1 < 10 ? '0' + val : val;
}
//保留 pos位小數(shù)
function numberToFixed(number, pos) {
  if (number === null || number === '' || number < 0) return ''
  return parseFloat(number).toFixed(pos)
}

組件使用

  • 引入方式
"usingComponents": {
    "countDown": "../../../components/countDown/countDown"
  },
  • 代碼演示
 <countDown bind:onEnd="getPageList" format="{{formatTime}}" target="{{creatTargetTime}}" />
const formatChinaDate = mss => {
  let days = parseInt(mss / (1000 * 60 * 60 * 24));
  let hours = parseInt((mss % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  let minutes = parseInt((mss % (1000 * 60 * 60)) / (1000 * 60));
  let seconds = parseInt((mss % (1000 * 60)) / 1000);
  return days + ' 天 ' + hours + ' 小時(shí) ' + minutes + ' 分鐘 ' + seconds + ' 秒 ';
};
data:{
    formatTime:formatChinaDate,
    creatTargetTime:1556428889000, //時(shí)間戳
}

getPageList:function(){
    //倒計(jì)時(shí)結(jié)束啦
    console.log('倒計(jì)時(shí)結(jié)束啦')
}

API

參數(shù) 說(shuō)明 類(lèi)別 默認(rèn)值
format 時(shí)間格式化顯示 Function(time) x天00:00:00
target 目標(biāo)時(shí)間 Date
onEnd 倒計(jì)時(shí)結(jié)束回調(diào) funtion

補(bǔ)充

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市馍管,隨后出現(xiàn)的幾起案子郭赐,更是在濱河造成了極大的恐慌,老刑警劉巖确沸,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異俘陷,居然都是意外死亡罗捎,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)拉盾,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)桨菜,“玉大人,你說(shuō)我怎么就攤上這事捉偏〉沟茫” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵夭禽,是天一觀的道長(zhǎng)霞掺。 經(jīng)常有香客問(wèn)我,道長(zhǎng)讹躯,這世上最難降的妖魔是什么菩彬? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮潮梯,結(jié)果婚禮上骗灶,老公的妹妹穿的比我還像新娘。我一直安慰自己秉馏,他們只是感情好耙旦,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著萝究,像睡著了一般免都。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上糊肤,一...
    開(kāi)封第一講書(shū)人閱讀 49,031評(píng)論 1 285
  • 那天琴昆,我揣著相機(jī)與錄音,去河邊找鬼馆揉。 笑死业舍,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播舷暮,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼态罪,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了下面?” 一聲冷哼從身側(cè)響起复颈,我...
    開(kāi)封第一講書(shū)人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎沥割,沒(méi)想到半個(gè)月后耗啦,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡机杜,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年帜讲,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片椒拗。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡似将,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出蚀苛,到底是詐尸還是另有隱情在验,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布堵未,位于F島的核電站腋舌,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏兴溜。R本人自食惡果不足惜侦厚,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望拙徽。 院中可真熱鬧刨沦,春花似錦、人聲如沸膘怕。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)岛心。三九已至来破,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間忘古,已是汗流浹背徘禁。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留髓堪,地道東北人送朱。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓娘荡,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親驶沼。 傳聞我的和親對(duì)象是個(gè)殘疾皇子炮沐,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345