mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-06 01:37:42 +02:00
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
141 lines
3.6 KiB
TypeScript
141 lines
3.6 KiB
TypeScript
//
|
|
// Copyright © 2025 Hardcore Engineering Inc.
|
|
//
|
|
// Licensed under the Eclipse Public 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 https://www.eclipse.org/legal/epl-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.
|
|
//
|
|
|
|
import { type PopupResult, showPopup } from '@hcengineering/ui'
|
|
import { derived, get, writable } from 'svelte/store'
|
|
|
|
import { composer } from './stores/composer'
|
|
import { manager } from './stores/manager'
|
|
import { type RecorderConfig, recorder } from './stores/recorder'
|
|
|
|
import type { CameraPosition, CameraSize } from './types'
|
|
import RecordingPopup from './components/RecordingPopup.svelte'
|
|
|
|
export {
|
|
camEnabled,
|
|
micEnabled,
|
|
camDeviceId,
|
|
micDeviceId,
|
|
loading,
|
|
camStream,
|
|
micStream,
|
|
screenStream,
|
|
canShareScreen,
|
|
recordingCameraPosition,
|
|
recordingCameraSize,
|
|
useScreenShareSound
|
|
} from './stores/manager'
|
|
|
|
export { recorder } from './stores/recorder'
|
|
|
|
export async function record (config: RecorderConfig): Promise<void> {
|
|
await recorder.initialize(config)
|
|
showRecordingPopup()
|
|
}
|
|
|
|
export function toggleCam (): void {
|
|
recorder.toggleCam()
|
|
}
|
|
|
|
export function toggleMic (): void {
|
|
recorder.toggleMic()
|
|
}
|
|
|
|
export function setCam (deviceId: string | undefined): void {
|
|
recorder.setCamDeviceId(deviceId)
|
|
}
|
|
|
|
export function setMic (deviceId: string | undefined): void {
|
|
recorder.setMicDeviceId(deviceId)
|
|
}
|
|
|
|
export async function startScreenShare (): Promise<void> {
|
|
await recorder.startScreenShare()
|
|
}
|
|
|
|
export async function stopScreenShare (): Promise<void> {
|
|
await recorder.stopScreenShare()
|
|
}
|
|
|
|
export function setCameraPosition (cameraPos: CameraPosition): void {
|
|
manager.setRecordingCameraPosition(cameraPos)
|
|
composer.updateConfig({ cameraPos })
|
|
}
|
|
|
|
export function setCameraSize (cameraSize: CameraSize): void {
|
|
manager.setRecordingCameraSize(cameraSize)
|
|
composer.updateConfig({ cameraSize })
|
|
}
|
|
|
|
export function setUseScreenShareSound (useScreenShareSound: boolean): void {
|
|
manager.setUseScreenShareSound(useScreenShareSound)
|
|
}
|
|
|
|
const recordingPopup = writable<PopupResult | null>(null)
|
|
|
|
function showRecordingPopup (): void {
|
|
const current = get(recordingPopup)
|
|
if (current === null) {
|
|
const result = showPopup(RecordingPopup, {}, 'centered', () => {
|
|
recordingPopup.set(null)
|
|
})
|
|
recordingPopup.set(result)
|
|
}
|
|
}
|
|
|
|
export function closeRecordingPopup (): void {
|
|
recordingPopup.update((popup) => {
|
|
popup?.close()
|
|
return null
|
|
})
|
|
}
|
|
|
|
export async function startRecording (): Promise<void> {
|
|
const state = get(manager)
|
|
if (state.screenStream !== null) {
|
|
closeRecordingPopup()
|
|
|
|
// Wait for the popup to close before recording
|
|
await new Promise<void>((resolve) => {
|
|
setTimeout(resolve, 250)
|
|
})
|
|
}
|
|
|
|
await recorder.start()
|
|
}
|
|
|
|
export async function stopRecording (): Promise<void> {
|
|
await recorder.stop()
|
|
showRecordingPopup()
|
|
}
|
|
|
|
export async function pauseRecording (): Promise<void> {
|
|
await recorder.pause()
|
|
}
|
|
|
|
export async function resumeRecording (): Promise<void> {
|
|
await recorder.resume()
|
|
}
|
|
|
|
export async function cancelRecording (): Promise<void> {
|
|
await recorder.cancel()
|
|
}
|
|
|
|
export async function cleanupRecording (): Promise<void> {
|
|
await recorder.cleanup()
|
|
}
|
|
|
|
export const recorderState = derived(recorder, ($recorder) => $recorder)
|