diff --git a/app/components-react/root/StudioFooter.tsx b/app/components-react/root/StudioFooter.tsx index 784e11f96597..3f57fe081afc 100644 --- a/app/components-react/root/StudioFooter.tsx +++ b/app/components-react/root/StudioFooter.tsx @@ -12,8 +12,6 @@ import StartStreamingButton from './StartStreamingButton'; import NotificationsArea from './NotificationsArea'; import { Tooltip } from 'antd'; import { confirmAsync } from 'components-react/modals'; -import { useModule } from 'slap'; -import { useRealmObject } from 'components-react/hooks/realm'; export default function StudioFooterComponent() { const { @@ -23,6 +21,8 @@ export default function StudioFooterComponent() { NavigationService, RecordingModeService, PerformanceService, + SettingsService, + UserService, } = Services; const { @@ -35,7 +35,19 @@ export default function StudioFooterComponent() { replayBufferSaving, recordingModeEnabled, replayBufferEnabled, - } = useModule(FooterModule); + } = useVuex(() => ({ + streamingStatus: StreamingService.views.streamingStatus, + isLoggedIn: UserService.views.isLoggedIn, + canSchedule: + StreamingService.views.supports('stream-schedule') && + !RecordingModeService.views.isRecordingModeEnabled, + streamQuality: PerformanceService.views.streamQuality, + replayBufferOffline: StreamingService.state.replayBufferStatus === EReplayBufferState.Offline, + replayBufferStopping: StreamingService.state.replayBufferStatus === EReplayBufferState.Stopping, + replayBufferSaving: StreamingService.state.replayBufferStatus === EReplayBufferState.Saving, + recordingModeEnabled: RecordingModeService.views.isRecordingModeEnabled, + replayBufferEnabled: SettingsService.views.values.Output.RecRB, + })); function performanceIconClassName() { if (!streamingStatus || streamingStatus === EStreamingState.Offline) { @@ -241,46 +253,3 @@ function RecordingTimer() { if (!isRecording) return <>>; return