Skip to content

Commit 18ced89

Browse files
authored
Merge pull request #987 from gitroomhq/fix/sentry-feedback-svg
Update feedback button SVG icon size and color
2 parents 8b90327 + cc3a8f7 commit 18ced89

File tree

2 files changed

+56
-42
lines changed

2 files changed

+56
-42
lines changed

apps/frontend/src/components/new-layout/layout.component.tsx

Lines changed: 3 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use client';
22

3-
import React, { ReactNode, useCallback, useEffect, useRef, useState } from 'react';
4-
import * as Sentry from '@sentry/nextjs';
3+
import React, { ReactNode, useCallback } from 'react';
54
import { Logo } from '@gitroom/frontend/components/new-layout/logo';
65
import { Plus_Jakarta_Sans } from 'next/font/google';
76
const ModeComponent = dynamic(
@@ -25,7 +24,6 @@ import { MediaSettingsLayout } from '@gitroom/frontend/components/launches/helpe
2524
import { Toaster } from '@gitroom/react/toaster/toaster';
2625
import { ShowPostSelector } from '@gitroom/frontend/components/post-url-selector/post.url.selector';
2726
import { NewSubscription } from '@gitroom/frontend/components/layout/new.subscription';
28-
import { Onboarding } from '@gitroom/frontend/components/onboarding/onboarding';
2927
import { Support } from '@gitroom/frontend/components/layout/support';
3028
import { ContinueProvider } from '@gitroom/frontend/components/layout/continue.provider';
3129
import { ContextWrapper } from '@gitroom/frontend/components/layout/user.context';
@@ -40,6 +38,7 @@ import NotificationComponent from '@gitroom/frontend/components/notifications/no
4038
import { BillingAfter } from '@gitroom/frontend/components/new-layout/billing.after';
4139
import { OrganizationSelector } from '@gitroom/frontend/components/layout/organization.selector';
4240
import { PreConditionComponent } from '@gitroom/frontend/components/layout/pre-condition.component';
41+
import { AttachToFeedbackIcon } from '@gitroom/frontend/components/new-layout/sentry.feedback.component';
4342

4443
const jakartaSans = Plus_Jakarta_Sans({
4544
weight: ['600', '500'],
@@ -53,43 +52,6 @@ export const LayoutComponent = ({ children }: { children: ReactNode }) => {
5352
const { backendUrl, billingEnabled, isGeneral } = useVariables();
5453

5554
// 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-
}
9355
const searchParams = useSearchParams();
9456
const load = useCallback(async (path: string) => {
9557
return await (await fetch(path)).json();
@@ -158,8 +120,7 @@ export const LayoutComponent = ({ children }: { children: ReactNode }) => {
158120
<LanguageComponent />
159121
<ChromeExtensionComponent />
160122
<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 />
163124
<NotificationComponent />
164125
</div>
165126
</div>
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
'use client';
2+
3+
import { FC, useEffect, useRef, useState } from 'react';
4+
import * as Sentry from '@sentry/nextjs';
5+
import { useVariables } from '@gitroom/react/helpers/variable.context';
6+
7+
export const AttachToFeedbackIcon: FC = () => {
8+
const { sentryDsn } = useVariables();
9+
const [feedback, setFeedback] = useState<any>();
10+
const buttonRef = useRef<HTMLButtonElement | null>(null);
11+
12+
useEffect(() => {
13+
if (!sentryDsn) return;
14+
try {
15+
const fb = (Sentry as any).getFeedback?.();
16+
setFeedback(fb);
17+
} catch (e) {
18+
setFeedback(undefined);
19+
}
20+
}, [sentryDsn]);
21+
22+
useEffect(() => {
23+
if (feedback && buttonRef.current) {
24+
const unsubscribe = feedback.attachTo(buttonRef.current);
25+
return unsubscribe;
26+
}
27+
return () => {};
28+
}, [feedback]);
29+
30+
if (!sentryDsn) return null;
31+
32+
return (
33+
<button
34+
ref={buttonRef}
35+
type="button"
36+
aria-label="Feedback"
37+
className="hover:text-newTextColor"
38+
>
39+
<svg
40+
width="24"
41+
height="24"
42+
viewBox="0 0 32 32"
43+
fill="none"
44+
xmlns="http://www.w3.org/2000/svg"
45+
>
46+
<path
47+
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"
48+
fill="currentColor"
49+
/>
50+
</svg>
51+
</button>
52+
);
53+
};

0 commit comments

Comments
 (0)