Skip to content

Commit c38603f

Browse files
authored
Merge pull request #2036 from navikt/contact-option-stories
Stories for kontaktmodul
2 parents 1911fd5 + 283b708 commit c38603f

28 files changed

+190
-46
lines changed

public/gfx/coronavirus.svg

-6
This file was deleted.

public/gfx/external-link-icon.svg

-5
This file was deleted.

public/gfx/globe.svg

-6
This file was deleted.

public/gfx/google-search-nav-logo.png

-24 KB
Binary file not shown.

src/components/_common/alternativeAudience/AlternativeAudience.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,10 @@ export const AlternativeAudience = () => {
7777
}
7878

7979
const productName =
80-
showProductName === false ? getStringPart('this') : displayName.toLowerCase();
80+
showProductName === false
81+
? getStringPart('this')
82+
: displayName.charAt(0).toLowerCase() + displayName.slice(1);
83+
8184
const audienceLinks = buildAudienceLinks(alternativeAudience, language);
8285

8386
return (
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
3+
import { CallOption } from './CallOption';
4+
5+
const meta = {
6+
component: CallOption,
7+
parameters: {
8+
backgrounds: {
9+
values: [{ name: 'ContactBackground', value: '#f2f3f5' }],
10+
default: 'ContactBackground',
11+
},
12+
},
13+
} satisfies Meta<typeof CallOption>;
14+
15+
export default meta;
16+
17+
type Story = StoryObj<typeof meta>;
18+
19+
export const Default: Story = {};
20+
21+
export const WithAlert: Story = { args: { alertText: 'Alert!' } };

src/components/_common/contact-option/CallOption.tsx src/components/_common/contact-option/CallOption/CallOption.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ import { LenkeBase } from 'components/_common/lenke/LenkeBase';
55
import { AnalyticsEvents } from 'utils/amplitude';
66
import { useLayoutConfig } from 'components/layouts/useLayoutConfig';
77
import { ParsedHtml } from 'components/_common/parsed-html/ParsedHtml';
8-
import { OpeningInfo } from 'components/_common/contact-option/opening-info/OpeningInfo';
8+
import { OpeningInfo } from 'components/_common/contact-option/openingInfo/OpeningInfo';
99
import { Audience, getAudience } from 'types/component-props/_mixins';
1010
import { ProcessedHtmlProps } from 'types/processed-html-props';
1111
import { usePageContentProps } from 'store/pageContext';
1212
import { TelephoneData } from 'components/parts/contact-option/ContactOptionPart';
1313
import { Icon } from 'components/_common/contact-option/icon/Icon';
1414

15-
import sharedStyle from './ContactOption.module.scss';
16-
import alertStyle from './Alert.module.scss';
15+
import sharedStyle from 'components/_common/contact-option/ContactOption.module.scss';
16+
import alertStyle from 'components/_common/contact-option/Alert.module.scss';
1717
import style from './CallOption.module.scss';
1818

1919
const contactURLs: Record<Audience, Record<'no' | 'en', string>> = {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
3+
import { ChatOption } from './ChatOption';
4+
5+
const meta = {
6+
component: ChatOption,
7+
parameters: {
8+
backgrounds: {
9+
values: [{ name: 'ContactBackground', value: '#f2f3f5' }],
10+
default: 'ContactBackground',
11+
},
12+
},
13+
} satisfies Meta<typeof ChatOption>;
14+
15+
export default meta;
16+
17+
type Story = StoryObj<typeof meta>;
18+
19+
export const Default: Story = { args: {} };
20+
21+
export const WithAlert: Story = { args: { alertText: 'Alert!' } };

src/components/_common/contact-option/ChatOption.tsx src/components/_common/contact-option/ChatOption/ChatOption.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import { ParsedHtml } from 'components/_common/parsed-html/ParsedHtml';
1010
import TextWithIndicator from 'components/_common/textWithIndicator/TextWithIndicator';
1111
import { ChatData } from 'components/parts/contact-option/ContactOptionPart';
1212
import { Icon } from 'components/_common/contact-option/icon/Icon';
13-
import { OpeningInfo } from './opening-info/OpeningInfo';
13+
import { OpeningInfo } from 'components/_common/contact-option/openingInfo/OpeningInfo';
1414

15-
import sharedStyle from './ContactOption.module.scss';
16-
import alertStyle from './Alert.module.scss';
15+
import sharedStyle from 'components/_common/contact-option/ContactOption.module.scss';
16+
import alertStyle from 'components/_common/contact-option/Alert.module.scss';
1717

1818
export const ChatOption = (props: ChatData) => {
1919
const { ingress, title, alertText, regularOpeningHours, specialOpeningHours } = props;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
3+
import { DefaultOption } from './DefaultOption';
4+
5+
const meta = {
6+
component: DefaultOption,
7+
parameters: {
8+
backgrounds: {
9+
values: [{ name: 'ContactBackground', value: '#f2f3f5' }],
10+
default: 'ContactBackground',
11+
},
12+
},
13+
} satisfies Meta<typeof DefaultOption>;
14+
15+
export default meta;
16+
17+
type Story = StoryObj<typeof meta>;
18+
19+
export const AidCentral: Story = { args: { channel: 'aidcentral' } };
20+
21+
export const NavOffice: Story = { args: { channel: 'navoffice' } };
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
3+
import { WriteOption } from './WriteOption';
4+
5+
const meta = {
6+
component: WriteOption,
7+
parameters: {
8+
backgrounds: {
9+
values: [{ name: 'ContactBackground', value: '#f2f3f5' }],
10+
default: 'ContactBackground',
11+
},
12+
},
13+
} satisfies Meta<typeof WriteOption>;
14+
15+
export default meta;
16+
17+
type Story = StoryObj<typeof meta>;
18+
19+
export const Default: Story = {};
20+
21+
export const WithAlert: Story = { args: { alertText: 'Alert!' } };

src/components/_common/contact-option/WriteOption.tsx src/components/_common/contact-option/WriteOption/WriteOption.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import Config from 'config';
99
import { WriteData } from 'components/parts/contact-option/ContactOptionPart';
1010
import { Icon } from 'components/_common/contact-option/icon/Icon';
1111

12-
import sharedStyle from './ContactOption.module.scss';
13-
import alertStyle from './Alert.module.scss';
12+
import sharedStyle from 'components/_common/contact-option/ContactOption.module.scss';
13+
import alertStyle from 'components/_common/contact-option/Alert.module.scss';
1414

1515
type Props = WriteData;
1616

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
3+
import { OpeningInfo } from './OpeningInfo';
4+
5+
const meta = {
6+
component: OpeningInfo,
7+
} satisfies Meta<typeof OpeningInfo>;
8+
9+
export default meta;
10+
11+
type Story = StoryObj<typeof meta>;
12+
13+
export const Closed: Story = {
14+
args: {
15+
regularOpeningHours: {
16+
hours: [
17+
{ status: 'CLOSED', dayName: 'monday' },
18+
{ status: 'CLOSED', dayName: 'tuesday' },
19+
{ status: 'CLOSED', dayName: 'wednesday' },
20+
{ status: 'CLOSED', dayName: 'thursday' },
21+
{ status: 'CLOSED', dayName: 'friday' },
22+
{ status: 'CLOSED', dayName: 'saturday' },
23+
{ status: 'CLOSED', dayName: 'sunday' },
24+
],
25+
},
26+
specialOpeningHours: {
27+
validFrom: '2023-03-01T00:00:00Z',
28+
validTo: '2050-03-01T00:00:00Z',
29+
},
30+
},
31+
};
32+
33+
export const Open: Story = {
34+
args: {
35+
regularOpeningHours: {
36+
hours: [
37+
{ status: 'OPEN', dayName: 'monday', from: '00:00', to: '23:59' },
38+
{ status: 'OPEN', dayName: 'tuesday', from: '00:00', to: '23:59' },
39+
{ status: 'OPEN', dayName: 'wednesday', from: '00:00', to: '23:59' },
40+
{ status: 'OPEN', dayName: 'thursday', from: '00:00', to: '23:59' },
41+
{ status: 'OPEN', dayName: 'friday', from: '00:00', to: '23:59' },
42+
{ status: 'OPEN', dayName: 'saturday', from: '00:00', to: '23:59' },
43+
{ status: 'OPEN', dayName: 'sunday', from: '00:00', to: '23:59' },
44+
],
45+
},
46+
specialOpeningHours: {
47+
validFrom: '2023-01-01T00:00:00Z',
48+
validTo: '2050-01-01T00:00:00Z',
49+
},
50+
},
51+
};

src/components/_common/contact-option/opening-info/OpeningInfo.tsx src/components/_common/contact-option/openingInfo/OpeningInfo.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import React, { useEffect, useState } from 'react';
22
import { Loader } from '@navikt/ds-react';
3-
import { getCurrentOpeningHours } from 'components/_common/contact-option/opening-info/helpers/openingInfoUtils';
3+
import { getCurrentOpeningHours } from 'components/_common/contact-option/openingInfo/helpers/openingInfoUtils';
44
import { usePageContentProps } from 'store/pageContext';
5-
import { OpeningHours } from 'components/_common/contact-option/opening-info/helpers/openingInfoTypes';
6-
import { getOpeningInfoText } from 'components/_common/contact-option/opening-info/helpers/openingInfoText';
7-
import { processOpeningHours } from 'components/_common/contact-option/opening-info/helpers/processOpeningHours';
5+
import { OpeningHours } from 'components/_common/contact-option/openingInfo/helpers/openingInfoTypes';
6+
import { getOpeningInfoText } from 'components/_common/contact-option/openingInfo/helpers/openingInfoText';
7+
import { processOpeningHours } from 'components/_common/contact-option/openingInfo/helpers/processOpeningHours';
88

99
import TextWithIndicator from 'components/_common/textWithIndicator/TextWithIndicator';
1010
import {

src/components/_common/contact-option/opening-info/helpers/openingInfo.test.ts src/components/_common/contact-option/openingInfo/helpers/openingInfo.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { processOpeningHours } from 'components/_common/contact-option/opening-info/helpers/processOpeningHours';
2-
import { getCurrentOpeningHours } from 'components/_common/contact-option/opening-info/helpers/openingInfoUtils';
3-
import { getOpeningInfoText } from 'components/_common/contact-option/opening-info/helpers/openingInfoText';
1+
import { processOpeningHours } from 'components/_common/contact-option/openingInfo/helpers/processOpeningHours';
2+
import { getCurrentOpeningHours } from 'components/_common/contact-option/openingInfo/helpers/openingInfoUtils';
3+
import { getOpeningInfoText } from 'components/_common/contact-option/openingInfo/helpers/openingInfoText';
44
import { translator } from 'translations';
55
import {
66
OpeningHourRegularRaw,

src/components/_common/contact-option/opening-info/helpers/openingInfoText.ts src/components/_common/contact-option/openingInfo/helpers/openingInfoText.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import timezone from 'dayjs/plugin/timezone';
44
import {
55
OpeningHours,
66
OpeningHoursOpen,
7-
} from 'components/_common/contact-option/opening-info/helpers/openingInfoTypes';
7+
} from 'components/_common/contact-option/openingInfo/helpers/openingInfoTypes';
88
import { Language, translator } from 'translations';
99
import { norwayTz } from 'utils/datetime';
1010
import {
1111
getOpeningHoursForDateTime,
1212
openingHourDateFormat,
1313
openingHourTimeFormat,
14-
} from 'components/_common/contact-option/opening-info/helpers/openingInfoUtils';
14+
} from 'components/_common/contact-option/openingInfo/helpers/openingInfoUtils';
1515

1616
dayjs.extend(utc);
1717
dayjs.extend(timezone);

src/components/_common/contact-option/opening-info/helpers/openingInfoUtils.ts src/components/_common/contact-option/openingInfo/helpers/openingInfoUtils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import utc from 'dayjs/plugin/utc';
33
import timezone from 'dayjs/plugin/timezone';
44
import isSameOrAfter from 'dayjs/plugin/isSameOrAfter';
55
import { daysNameArray, norwayTz } from 'utils/datetime';
6-
import { OpeningHours } from 'components/_common/contact-option/opening-info/helpers/openingInfoTypes';
6+
import { OpeningHours } from 'components/_common/contact-option/openingInfo/helpers/openingInfoTypes';
77

88
dayjs.extend(utc);
99
dayjs.extend(timezone);

src/components/_common/contact-option/opening-info/helpers/processOpeningHours.ts src/components/_common/contact-option/openingInfo/helpers/processOpeningHours.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import customParseFormat from 'dayjs/plugin/customParseFormat';
33
import isSameOrAfter from 'dayjs/plugin/isSameOrAfter';
44
import utc from 'dayjs/plugin/utc';
55
import timezone from 'dayjs/plugin/timezone';
6-
import { openingHourDateFormat } from 'components/_common/contact-option/opening-info/helpers/openingInfoUtils';
6+
import { openingHourDateFormat } from 'components/_common/contact-option/openingInfo/helpers/openingInfoUtils';
77
import { dayNameToIndex, daysNameArray } from 'utils/datetime';
8-
import { OpeningHours } from 'components/_common/contact-option/opening-info/helpers/openingInfoTypes';
8+
import { OpeningHours } from 'components/_common/contact-option/openingInfo/helpers/openingInfoTypes';
99
import {
1010
OpeningHourRaw,
1111
OpeningHourRegularRaw,

src/components/_common/uxsignalsWidget/UxSignalsWidget.module.scss

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
flex-direction: column;
44
margin: 1rem 0;
55

6+
:global(.uxsignals-embed) {
7+
h2 {
8+
font-size: var(--a-font-size-heading-large) !important;
9+
line-height: 1.5 !important;
10+
}
11+
p,
12+
span {
13+
font-size: var(--a-font-size-large) !important;
14+
line-height: 1.5 !important;
15+
}
16+
}
17+
618
&:empty {
719
display: none;
820
}

src/components/pages/contact-information-page/ContactInformationPage.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import React from 'react';
22
import { Alert } from '@navikt/ds-react';
33
import { ContactInformationProps } from 'types/content-props/contact-information-props';
4-
import { CallOption } from 'components/_common/contact-option/CallOption';
5-
import { WriteOption } from 'components/_common/contact-option/WriteOption';
6-
import { ChatOption } from 'components/_common/contact-option/ChatOption';
4+
import { CallOption } from 'components/_common/contact-option/CallOption/CallOption';
5+
import { WriteOption } from 'components/_common/contact-option/WriteOption/WriteOption';
6+
import { ChatOption } from 'components/_common/contact-option/ChatOption/ChatOption';
77

88
import style from './ContactInformationPage.module.scss';
99

src/components/parts/_legacy/main-article/komponenter/SosialeMedier.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { usePageContentProps } from 'store/pageContext';
66
import {
77
hoverFocusIcon,
88
useHoverAndFocus,
9-
} from 'components/_common/contact-option/opening-info/helpers/iconUtils';
9+
} from 'components/_common/contact-option/openingInfo/helpers/iconUtils';
1010

1111
import style from './SosialeMedier.module.scss';
1212

src/components/parts/_legacy/publishing-calendar/PublishingCalendarEntryLegacyPart.tsx

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import * as React from 'react';
22
import { Table, BodyLong } from '@navikt/ds-react';
33
import { PublishingCalendarEntryProps } from 'types/content-props/publishing-calendar-props';
44
import { ContentProps, ContentType } from 'types/content-props/_content-common';
5+
import { LenkeInline } from 'components/_common/lenke/LenkeInline';
56

67
// eslint-disable-next-line css-modules/no-unused-class
78
import style from './PublishingCalendar.module.scss';
@@ -12,6 +13,7 @@ interface PublishingCalendarEntryData {
1213
publDate: Date;
1314
day: string;
1415
month: string;
16+
link?: string;
1517
}
1618

1719
const monthShortName = [
@@ -47,6 +49,7 @@ const processEntry = (item: PublishingCalendarEntryProps): PublishingCalendarEnt
4749
publDate,
4850
day: publDate.getDate().toString() + '.',
4951
month: monthShortName[publDate.getMonth()],
52+
link: item.data.link?._path,
5053
};
5154
};
5255

@@ -56,6 +59,7 @@ export const PublishingCalendarEntryLegacyPart = (props: ContentProps) => {
5659
}
5760

5861
const entry = processEntry(props);
62+
5963
return (
6064
<Table.Row>
6165
<Table.DataCell>
@@ -66,7 +70,11 @@ export const PublishingCalendarEntryLegacyPart = (props: ContentProps) => {
6670
</Table.DataCell>
6771
<Table.DataCell>
6872
<BodyLong className={style.dateInfo}>{entry.period}</BodyLong>
69-
<BodyLong>{entry.displayName}</BodyLong>
73+
{entry.link ? (
74+
<LenkeInline href={entry.link}>{entry.displayName}</LenkeInline>
75+
) : (
76+
<BodyLong>{entry.displayName}</BodyLong>
77+
)}
7078
</Table.DataCell>
7179
</Table.Row>
7280
);

src/components/parts/contact-option/ContactOptionPart.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import React from 'react';
22
import { DefaultOption } from 'components/_common/contact-option/DefaultOption';
3-
import { CallOption } from 'components/_common/contact-option/CallOption';
3+
import { CallOption } from 'components/_common/contact-option/CallOption/CallOption';
44
import { EditorHelp } from 'components/_editor-only/editor-help/EditorHelp';
5-
import { WriteOption } from 'components/_common/contact-option/WriteOption';
5+
import { WriteOption } from 'components/_common/contact-option/WriteOption/WriteOption';
66
import { usePageContentProps } from 'store/pageContext';
7-
import { ChatOption } from 'components/_common/contact-option/ChatOption';
7+
import { ChatOption } from 'components/_common/contact-option/ChatOption/ChatOption';
88
import { PartComponentProps, PartType } from 'types/component-props/parts';
99
import { OptionSetSingle } from 'types/util-types';
1010
import { DayName } from 'utils/datetime';

src/types/content-props/publishing-calendar-props.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ export type PublishingCalendarEntryProps = ContentCommonProps & {
66
data: {
77
date: string;
88
period: string;
9+
link?: {
10+
_path: string;
11+
};
912
};
1013
};
1114

0 commit comments

Comments
 (0)