2023-11-30 22:59:19 -05:00
|
|
|
/*
|
2024-04-05 09:02:09 -04:00
|
|
|
Copyright 2023-2024 New Vector Ltd
|
2023-11-30 22:59:19 -05:00
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2024-04-05 09:02:09 -04:00
|
|
|
import { useRef } from "react";
|
2023-11-30 22:59:19 -05:00
|
|
|
import { BehaviorSubject, Observable } from "rxjs";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* React hook that creates an Observable from a changing value. The Observable
|
2024-04-05 09:02:09 -04:00
|
|
|
* replays its current value upon subscription and emits whenever the value
|
|
|
|
|
* changes.
|
2023-11-30 22:59:19 -05:00
|
|
|
*/
|
|
|
|
|
export function useObservable<T>(value: T): Observable<T> {
|
|
|
|
|
const subject = useRef<BehaviorSubject<T>>();
|
|
|
|
|
subject.current ??= new BehaviorSubject(value);
|
|
|
|
|
if (value !== subject.current.value) subject.current.next(value);
|
|
|
|
|
return subject.current;
|
|
|
|
|
}
|