typescript 带有dayjs和rxjs的简单角度计数器/倒计时组件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 带有dayjs和rxjs的简单角度计数器/倒计时组件相关的知识,希望对你有一定的参考价值。
/**
*
* Example Usage:
*
* # Counter
* const now = dayjs()
* <app-counter [autostart]="true" [mode]="forwards" [startTime]="now"></app-counter>
*
* # Countdown
* const later = dayjs().add(1, 'minute')
* <app-counter [autostart]="true" [mode]="backwards" [stopTime]="later"></app-counter>
*
*/
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
import * as dayjs from 'dayjs';
import { interval, Subject, Subscription } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
@Component({
selector: 'app-counter',
template: `{{ timeFormatted }}`,
})
export class CounterComponent implements OnInit, OnDestroy {
// Forwards-Mode (Counter)
@Input() forwards: boolean
@Input() startTime: Date
public elapsedSeconds: number
public counterHasStarted: boolean
// Backwards-Mode (Countdown)
@Input() backwards: boolean
@Input() stopTime: Date
public countdownHasFinished: boolean
public remainingSeconds: number
public timeFormatted: string
@Input() autostart: boolean
@Input() updateInterval: number = 1000 / 2
public timeInterval$: Subscription
private unsubscribe$ = new Subject()
constructor() { }
ngOnInit() {
if (this.autostart) {
this.start()
}
}
ngOnDestroy() {
this.stop()
}
/**
* Initializes the Counter / Countdown
*/
public start() {
if (this.forwards == this.backwards) {
console.error("Couldn't start counter as no mode or both modes are set.")
return
}
if (this.forwards && (!this.startTime || !dayjs(this.startTime).isValid())) {
console.error("Couldn't start counter as mode is 'forwards' but no start-time is provided.")
return
}
if (this.backwards && (!this.stopTime || !dayjs(this.stopTime).isValid())) {
console.error("Couldn't start counter as mode is 'forwards' but no start-time is provided.")
return
}
// Start Interval
this.timeInterval$ = interval(this.updateInterval).startWith(0).pipe(
takeUntil(this.unsubscribe$)
).subscribe(_ => {
this.updateTime()
})
}
/**
* Stops the Counter / Countdown
*/
public stop() {
this.unsubscribe$.next(true)
this.unsubscribe$.complete()
}
/**
* Updates `timeFormatted` of the Counter / Countdown
*/
private updateTime() {
const now = dayjs()
if (this.forwards) {
// Start-Time from which the counter gets increased
const startTime = dayjs(this.startTime)
this.counterHasStarted = now.isAfter(startTime)
if (!this.counterHasStarted) {
this.timeFormatted = '0:00'
this.elapsedSeconds = 0
return
}
let elapsedTime = dayjs(now.valueOf() - startTime.valueOf())
elapsedTime = elapsedTime.subtract(dayjs().utcOffset(), 'minute')
this.elapsedSeconds = now.diff(startTime, 'second')
const format = elapsedTime.hour() ? 'H:mm:ss' : 'm:ss'
this.timeFormatted = elapsedTime.format(format)
} else if (this.backwards) {
// Stop-Time until which the countdown gets decreased
const stopTime = dayjs(this.stopTime)
this.countdownHasFinished = now.isAfter(stopTime)
if (this.countdownHasFinished) {
this.timeFormatted = '0:00'
this.remainingSeconds = 0
return
}
let remainingTime = dayjs(stopTime.valueOf() - now.valueOf())
remainingTime = remainingTime.subtract(dayjs().utcOffset(), 'minute')
this.remainingSeconds = stopTime.diff(now, 'second')
const format = remainingTime.hour() ? 'H:mm:ss' : 'm:ss'
this.timeFormatted = remainingTime.format(format)
}
}
}
以上是关于typescript 带有dayjs和rxjs的简单角度计数器/倒计时组件的主要内容,如果未能解决你的问题,请参考以下文章
使用 RxJS 在 TypeScript 中创建 BaseObserver
typescript 使用rxjs的大理石测试和jsverify
如何解决 TypeScript 2.4 和 RxJS 5.x 中的“主题不正确地扩展 Observable”错误?
Angular,转换 JSON,Rxjs 运算符,Typescript
使用 switchmap 和 forkjoin 链接 observables 不能按预期工作 angular typescript rxjs