mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 22:57:57 +00:00
24 lines
682 B
TypeScript
24 lines
682 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-api authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type React from 'react';
|
|
import type { Subscription } from 'rxjs';
|
|
import type { CallState } from '../types.js';
|
|
|
|
import { interval } from 'rxjs';
|
|
|
|
const interval$ = interval(500);
|
|
|
|
export function intervalObservable<Props, State extends CallState> (that: React.Component<Props, State>): Subscription {
|
|
return interval$.subscribe((): void => {
|
|
const elapsed = Date.now() - (that.state.callUpdatedAt || 0);
|
|
const callUpdated = elapsed <= 1500;
|
|
|
|
if (callUpdated !== that.state.callUpdated) {
|
|
that.setState({
|
|
callUpdated
|
|
});
|
|
}
|
|
});
|
|
}
|