mirror of
https://github.com/vector-im/element-call.git
synced 2026-03-25 06:40:26 +00:00
88 lines
2.2 KiB
TypeScript
88 lines
2.2 KiB
TypeScript
/*
|
|
Copyright 2024-2025 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import {
|
|
ProcessorWrapper,
|
|
supportsBackgroundProcessors,
|
|
type BackgroundOptions,
|
|
} from "@livekit/track-processors";
|
|
import {
|
|
createContext,
|
|
type FC,
|
|
type JSX,
|
|
use,
|
|
useEffect,
|
|
useMemo,
|
|
} from "react";
|
|
import { type LocalVideoTrack } from "livekit-client";
|
|
|
|
import {
|
|
backgroundBlur as backgroundBlurSettings,
|
|
useSetting,
|
|
} from "../settings/settings";
|
|
import { BlurBackgroundTransformer } from "./BlurBackgroundTransformer";
|
|
|
|
type ProcessorState = {
|
|
supported: boolean | undefined;
|
|
processor: undefined | ProcessorWrapper<BackgroundOptions>;
|
|
};
|
|
|
|
const ProcessorContext = createContext<ProcessorState | undefined>(undefined);
|
|
|
|
export function useTrackProcessor(): ProcessorState {
|
|
const state = use(ProcessorContext);
|
|
if (state === undefined)
|
|
throw new Error(
|
|
"useTrackProcessor must be used within a ProcessorProvider",
|
|
);
|
|
return state;
|
|
}
|
|
|
|
export const useTrackProcessorSync = (
|
|
videoTrack: LocalVideoTrack | null,
|
|
): void => {
|
|
const { processor } = useTrackProcessor();
|
|
useEffect(() => {
|
|
if (!videoTrack) return;
|
|
if (processor && !videoTrack.getProcessor()) {
|
|
void videoTrack.setProcessor(processor);
|
|
}
|
|
if (!processor && videoTrack.getProcessor()) {
|
|
void videoTrack.stopProcessor();
|
|
}
|
|
}, [processor, videoTrack]);
|
|
};
|
|
|
|
interface Props {
|
|
children: JSX.Element;
|
|
}
|
|
|
|
export const ProcessorProvider: FC<Props> = ({ children }) => {
|
|
// The setting the user wants to have
|
|
const [blurActivated] = useSetting(backgroundBlurSettings);
|
|
const supported = useMemo(() => supportsBackgroundProcessors(), []);
|
|
const blur = useMemo(
|
|
() =>
|
|
new ProcessorWrapper(
|
|
new BlurBackgroundTransformer({ blurRadius: 15 }),
|
|
"background-blur",
|
|
),
|
|
[],
|
|
);
|
|
|
|
// This is the actual state exposed through the context
|
|
const processorState = useMemo(
|
|
() => ({
|
|
supported,
|
|
processor: supported && blurActivated ? blur : undefined,
|
|
}),
|
|
[supported, blurActivated, blur],
|
|
);
|
|
|
|
return <ProcessorContext value={processorState}>{children}</ProcessorContext>;
|
|
};
|