1
1
'use client' ;
2
2
3
- import React , { ReactNode , useCallback , useEffect , useRef , useState } from 'react' ;
4
- import * as Sentry from '@sentry/nextjs' ;
3
+ import React , { ReactNode , useCallback } from 'react' ;
5
4
import { Logo } from '@gitroom/frontend/components/new-layout/logo' ;
6
5
import { Plus_Jakarta_Sans } from 'next/font/google' ;
7
6
const ModeComponent = dynamic (
@@ -25,7 +24,6 @@ import { MediaSettingsLayout } from '@gitroom/frontend/components/launches/helpe
25
24
import { Toaster } from '@gitroom/react/toaster/toaster' ;
26
25
import { ShowPostSelector } from '@gitroom/frontend/components/post-url-selector/post.url.selector' ;
27
26
import { NewSubscription } from '@gitroom/frontend/components/layout/new.subscription' ;
28
- import { Onboarding } from '@gitroom/frontend/components/onboarding/onboarding' ;
29
27
import { Support } from '@gitroom/frontend/components/layout/support' ;
30
28
import { ContinueProvider } from '@gitroom/frontend/components/layout/continue.provider' ;
31
29
import { ContextWrapper } from '@gitroom/frontend/components/layout/user.context' ;
@@ -40,6 +38,7 @@ import NotificationComponent from '@gitroom/frontend/components/notifications/no
40
38
import { BillingAfter } from '@gitroom/frontend/components/new-layout/billing.after' ;
41
39
import { OrganizationSelector } from '@gitroom/frontend/components/layout/organization.selector' ;
42
40
import { PreConditionComponent } from '@gitroom/frontend/components/layout/pre-condition.component' ;
41
+ import { AttachToFeedbackIcon } from '@gitroom/frontend/components/new-layout/sentry.feedback.component' ;
43
42
44
43
const jakartaSans = Plus_Jakarta_Sans ( {
45
44
weight : [ '600' , '500' ] ,
@@ -53,43 +52,6 @@ export const LayoutComponent = ({ children }: { children: ReactNode }) => {
53
52
const { backendUrl, billingEnabled, isGeneral } = useVariables ( ) ;
54
53
55
54
// Feedback icon component attaches Sentry feedback to a top-bar icon when DSN is present
56
- function AttachToFeedbackIcon ( { sentryDsn } : { sentryDsn ?: string } ) {
57
- const [ feedback , setFeedback ] = useState < any > ( ) ;
58
- const buttonRef = useRef < HTMLButtonElement | null > ( null ) ;
59
-
60
- useEffect ( ( ) => {
61
- if ( ! sentryDsn ) return ;
62
- try {
63
- const fb = ( Sentry as any ) . getFeedback ?.( ) ;
64
- setFeedback ( fb ) ;
65
- } catch ( e ) {
66
- setFeedback ( undefined ) ;
67
- }
68
- } , [ sentryDsn ] ) ;
69
-
70
- useEffect ( ( ) => {
71
- if ( feedback && buttonRef . current ) {
72
- const unsubscribe = feedback . attachTo ( buttonRef . current ) ;
73
- return unsubscribe ;
74
- }
75
- return ( ) => { } ;
76
- } , [ feedback ] ) ;
77
-
78
- if ( ! sentryDsn ) return null ;
79
-
80
- return (
81
- < button
82
- ref = { buttonRef }
83
- type = "button"
84
- aria-label = "Feedback"
85
- className = "hover:text-newTextColor"
86
- >
87
- < svg width = "32" height = "32" viewBox = "0 0 32 32" fill = "none" xmlns = "http://www.w3.org/2000/svg" >
88
- < path d = "M27 10H23V6C23 5.46957 22.7893 4.96086 22.4142 4.58579C22.0391 4.21071 21.5304 4 21 4H5C4.46957 4 3.96086 4.21071 3.58579 4.58579C3.21071 4.96086 3 5.46957 3 6V22C3.00059 22.1881 3.05423 22.3723 3.15478 22.5313C3.25532 22.6903 3.39868 22.8177 3.56839 22.8989C3.7381 22.9801 3.92728 23.0118 4.11418 22.9903C4.30108 22.9689 4.47814 22.8951 4.625 22.7775L9 19.25V23C9 23.5304 9.21071 24.0391 9.58579 24.4142C9.96086 24.7893 10.4696 25 11 25H22.6987L27.375 28.7775C27.5519 28.9206 27.7724 28.9991 28 29C28.2652 29 28.5196 28.8946 28.7071 28.7071C28.8946 28.5196 29 28.2652 29 28V12C29 11.4696 28.7893 10.9609 28.4142 10.5858C28.0391 10.2107 27.5304 10 27 10ZM8.31875 17.2225L5 19.9062V6H21V17H8.9475C8.71863 17 8.4967 17.0786 8.31875 17.2225ZM27 25.9062L23.6812 23.2225C23.5043 23.0794 23.2838 23.0009 23.0562 23H11V19H21C21.5304 19 22.0391 18.7893 22.4142 18.4142C22.7893 18.0391 23 17.5304 23 17V12H27V25.9062Z" fill = "#343330" />
89
- </ svg >
90
- </ button >
91
- ) ;
92
- }
93
55
const searchParams = useSearchParams ( ) ;
94
56
const load = useCallback ( async ( path : string ) => {
95
57
return await ( await fetch ( path ) ) . json ( ) ;
@@ -158,8 +120,7 @@ export const LayoutComponent = ({ children }: { children: ReactNode }) => {
158
120
< LanguageComponent />
159
121
< ChromeExtensionComponent />
160
122
< div className = "w-[1px] h-[20px] bg-blockSeparator" />
161
- { /* Feedback icon (icon-only) - only show when Sentry DSN is present */ }
162
- < AttachToFeedbackIcon sentryDsn = { ( useVariables ( ) as any ) . sentryDsn } />
123
+ < AttachToFeedbackIcon />
163
124
< NotificationComponent />
164
125
</ div >
165
126
</ div >
0 commit comments