@@ -2,6 +2,7 @@ import { h, Fragment } from 'preact';
2
2
import cn from 'classnames' ;
3
3
import styles from './MobileApp.module.css' ;
4
4
import { Player , PlayerError } from './Player.jsx' ;
5
+ import { YouTubeError } from './YouTubeError' ;
5
6
import { usePlatformName , useSettings } from '../providers/SettingsProvider.jsx' ;
6
7
import { SwitchBarMobile } from './SwitchBarMobile.jsx' ;
7
8
import { MobileWordmark } from './Wordmark.jsx' ;
@@ -11,6 +12,7 @@ import { MobileButtons } from './MobileButtons.jsx';
11
12
import { OrientationProvider } from '../providers/OrientationProvider.jsx' ;
12
13
import { FocusMode } from './FocusMode.jsx' ;
13
14
import { useTelemetry } from '../types.js' ;
15
+ import { useYouTubeError } from '../providers/YouTubeErrorProvider' ;
14
16
15
17
const DISABLED_HEIGHT = 450 ;
16
18
@@ -21,12 +23,16 @@ const DISABLED_HEIGHT = 450;
21
23
export function MobileApp ( { embed } ) {
22
24
const settings = useSettings ( ) ;
23
25
const telemetry = useTelemetry ( ) ;
26
+ const youtubeError = useYouTubeError ( ) ;
27
+
24
28
const features = createAppFeaturesFrom ( settings ) ;
25
29
return (
26
30
< >
27
- { features . focusMode ( ) }
31
+ { ! youtubeError && features . focusMode ( ) }
28
32
< OrientationProvider
29
33
onChange = { ( orientation ) => {
34
+ if ( youtubeError ) return ;
35
+
30
36
if ( orientation === 'portrait' ) {
31
37
return FocusMode . enable ( ) ;
32
38
}
@@ -51,12 +57,17 @@ export function MobileApp({ embed }) {
51
57
*/
52
58
function MobileLayout ( { embed } ) {
53
59
const platformName = usePlatformName ( ) ;
60
+ const youtubeError = useYouTubeError ( ) ;
61
+ const settings = useSettings ( ) ;
62
+ const showCustomError = youtubeError && settings . customError ?. state === 'enabled' ;
63
+
54
64
return (
55
- < main class = { styles . main } >
65
+ < main class = { styles . main } data-youtube-error = { ! ! youtubeError } >
56
66
< div class = { cn ( styles . filler , styles . hideInFocus ) } />
57
67
< div class = { styles . embed } >
58
68
{ embed === null && < PlayerError layout = { 'mobile' } kind = { 'invalid-id' } /> }
59
- { embed !== null && < Player src = { embed . toEmbedUrl ( ) } layout = { 'mobile' } /> }
69
+ { embed !== null && showCustomError && < YouTubeError layout = { 'mobile' } kind = { youtubeError } /> }
70
+ { embed !== null && ! showCustomError && < Player src = { embed . toEmbedUrl ( ) } layout = { 'mobile' } /> }
60
71
</ div >
61
72
< div class = { cn ( styles . logo , styles . hideInFocus ) } >
62
73
< MobileWordmark />
0 commit comments