Skip to content

Commit a7a1b11

Browse files
committed
Fix sonar-issues
1 parent 835b4ab commit a7a1b11

File tree

6 files changed

+13
-16
lines changed

6 files changed

+13
-16
lines changed

common/src/client/AppLayout.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { AppTopSection } from './top-section/AppTopSection';
44
import style from './AppLayout.module.css';
55

66
type Props = {
7-
siteName: string; // TODO: Can this be removed?
87
basePath: string;
98
children: React.ReactNode;
109
showUnderDevAlert?: boolean;

legacy-archive/client/components/App.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ type Props = {
1111
};
1212

1313
export const App = ({ appContext }: Props) => {
14-
const { cmsName, basePath } = appContext;
14+
const { basePath } = appContext;
1515

1616
return (
1717
<AppStateProvider appContext={appContext}>
18-
<AppLayout siteName={cmsName} basePath={basePath}>
18+
<AppLayout basePath={basePath}>
1919
<SearchStateProvider>
2020
<AppLeftSection />
2121
</SearchStateProvider>

xp-archive/client/App.tsx

+1-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ import { AppStateProvider } from './context/appState/AppStateProvider';
77

88
export const App = () => {
99
return (
10-
<AppLayout
11-
siteName={xpArchiveConfig.name}
12-
basePath={xpArchiveConfig.basePath}
13-
showUnderDevAlert
14-
>
10+
<AppLayout basePath={xpArchiveConfig.basePath} showUnderDevAlert>
1511
<AppStateProvider>
1612
<NavigationBar />
1713
<Content />

xp-archive/client/contentView/pdfExport/PdfExport.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState } from 'react';
22
import { DownloadIcon } from '@navikt/aksel-icons';
3-
import { Button, Checkbox, CheckboxGroup, Link } from '@navikt/ds-react';
3+
import { Button, Checkbox, CheckboxGroup } from '@navikt/ds-react';
44
import { VersionReference } from 'shared/types';
55
import { formatTimestamp } from '@common/shared/timestamp';
66
import style from './PdfExport.module.css';

xp-archive/client/versionSelector/VersionSelector.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import React, { ChangeEvent, version } from 'react';
2-
import { Select, UNSAFE_Combobox } from '@navikt/ds-react';
1+
import React, { ChangeEvent } from 'react';
2+
import { Select } from '@navikt/ds-react';
33
import { VersionReference } from 'shared/types';
44
import { pruneString } from '@common/shared/pruneString';
55
import { formatTimestamp } from '@common/shared/timestamp';

xp-archive/client/viewSelector/ViewSelector.tsx

+7-5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ const getDisplayname = (viewVariant: ViewVariant) => {
1414
return translations[viewVariant];
1515
};
1616

17+
function getRelevantViewVariants(isWebpage: boolean, hasAttachment: boolean): ViewVariant[] {
18+
if (isWebpage) return ['html', 'pdf', 'json'];
19+
if (hasAttachment) return ['filepreview', 'json'];
20+
return ['json'];
21+
}
22+
1723
type Props = {
1824
selectedView: ViewVariant;
1925
setSelectedView(selectedView: ViewVariant): void;
@@ -32,11 +38,7 @@ export const ViewSelector = ({
3238
setSelectedView(viewVariant);
3339
};
3440

35-
const relevantViewVariants: ViewVariant[] = isWebpage
36-
? ['html', 'pdf', 'json']
37-
: hasAttachment
38-
? ['filepreview', 'json']
39-
: ['json'];
41+
const relevantViewVariants = getRelevantViewVariants(isWebpage, hasAttachment);
4042

4143
return (
4244
<ToggleGroup

0 commit comments

Comments
 (0)