Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Åpning av accordion og readmore-komponenter ved redaktørvarsel #2184

Merged
merged 7 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 8 additions & 17 deletions src/components/_common/accordion/Accordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ import { classNames } from 'utils/classnames';
import { handleStickyScrollOffset } from 'utils/scroll-to';

import defaultHtml from 'components/_common/parsedHtml/DefaultHtmlStyling.module.scss';
import { useCheckAndOpenAccordionPanel } from 'store/hooks/useCheckAndOpenAccordionPanel';
import styles from './Accordion.module.scss';

type AccordionProps = PartConfigAccordion;
type PanelItem = AccordionProps['accordion'][number];

export const Accordion = ({ accordion }: AccordionProps) => {
const itemRefs = useRef<(HTMLDivElement | null)[]>([]);
const divRefs = useRef<Array<React.RefObject<HTMLDivElement>>>([]);
const contentProps = usePageContentProps();
const { context } = getDecoratorParams(contentProps);
const { editorView, type } = contentProps;
Expand Down Expand Up @@ -47,20 +49,11 @@ export const Accordion = ({ accordion }: AccordionProps) => {
});
};

useEffect(() => {
if (window.location.toString().includes('expandall=true')) {
expandAll();
return;
}
const anchorHash = window.location.hash || '';
const matchingAccordion = accordion.findIndex(
(item) => validatePanel(item) && item.anchorId === anchorHash.slice(1)
);
if (matchingAccordion !== -1) {
setOpenAccordions([matchingAccordion]);
}
/* eslint-disable-next-line react-hooks/exhaustive-deps */
}, []);
if (divRefs.current.length !== accordion.length) {
divRefs.current = accordion.map(() => React.createRef<HTMLDivElement>());
}

useCheckAndOpenAccordionPanel(openAccordions, setOpenAccordions, divRefs.current, expandAll);

// Show all panels in edit mode, but only valid panels in view mode
const validAccordion = accordion.filter(validatePanel);
Expand All @@ -76,9 +69,7 @@ export const Accordion = ({ accordion }: AccordionProps) => {
className={styles.item}
open={openAccordions.includes(index)}
onOpenChange={(open) => openChangeHandler(open, item.title, index)}
ref={(el) => {
itemRefs.current[index] = el;
}}
ref={divRefs.current[index]}
tabIndex={-1}
>
<DSAccordion.Header className={styles.header} id={item.anchorId}>
Expand Down
53 changes: 5 additions & 48 deletions src/components/_common/expandable/Expandable.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import React, { useEffect, useRef, useState } from 'react';
import React, { useRef, useState } from 'react';
import { ExpansionCard } from '@navikt/ds-react';
import { BarChartIcon, BriefcaseClockIcon, CalendarIcon, TasklistIcon } from '@navikt/aksel-icons';
import { AnalyticsEvents, logAnalyticsEvent } from 'utils/analytics';
import { usePageContentProps } from 'store/pageContext';
import { getDecoratorParams } from 'utils/decorator-utils';
import { innholdsTypeMap } from 'types/content-props/_content-common';
import { classNames } from 'utils/classnames';
import { smoothScrollToTarget, handleStickyScrollOffset } from 'utils/scroll-to';
import { handleStickyScrollOffset } from 'utils/scroll-to';
import { Shortcuts, useShortcuts } from 'utils/useShortcuts';
import { ProductDetailType } from 'types/content-props/product-details';

import { useCheckAndOpenPanel } from 'store/hooks/useCheckAndOpenPanel';
import style from './Expandable.module.scss';

type Props = {
Expand Down Expand Up @@ -45,6 +46,8 @@ export const Expandable = ({
},
});

useCheckAndOpenPanel(isOpen, setIsOpen, accordionRef, anchorId);

const toggleExpandCollapse = (isOpening: boolean, tittel: string) => {
setIsOpen(isOpening);
handleStickyScrollOffset(isOpening, accordionRef.current);
Expand All @@ -58,37 +61,6 @@ export const Expandable = ({
});
};

const checkAndOpenPanel = () => {
if (isOpen) {
return;
}

if (window.location.toString().includes('expandall=true')) {
setIsOpen(true);
return;
}

const targetId = window.location.hash.replace('#', '');
if (!targetId) {
return;
}

if (targetId === anchorId) {
setIsOpen(true);
return;
}

const elementWithId = document.getElementById(targetId);
if (accordionRef.current?.contains(elementWithId)) {
setIsOpen(true);
setTimeout(() => smoothScrollToTarget(targetId), 500);
}
};

const hashChangeHandler = () => {
checkAndOpenPanel();
};

const getHeaderIcon = () => {
if (expandableType === ProductDetailType.PROCESSING_TIMES) {
return <BriefcaseClockIcon aria-hidden className={style.headerIcon} />;
Expand All @@ -105,21 +77,6 @@ export const Expandable = ({
return null;
};

useEffect(() => {
window.addEventListener('hashchange', hashChangeHandler);

return () => {
window.removeEventListener('hashchange', hashChangeHandler);
};

// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);

useEffect(() => {
checkAndOpenPanel();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [anchorId]);

// Adjust appearande in styling if not type was set for this content
// This is the wrong use of this component, but some legacy pages have still to
// be upradet editorial wise.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
margin-bottom: var(--a-spacing-9);

:global(.navds-read-more__button) {
z-index: 1;
margin-bottom: var(--a-spacing-3);
background-color: var(--a-blue-50);
padding: var(--a-spacing-2) var(--a-spacing-6) var(--a-spacing-2) 13px;
Expand Down
9 changes: 3 additions & 6 deletions src/components/parts/readMorePart/ReadMorePart.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useEffect, useRef, useState } from 'react';
import React, { useRef, useState } from 'react';
import { ReadMore } from '@navikt/ds-react';
import { EditorHelp } from 'components/_editor-only/editor-help/EditorHelp';
import { ParsedHtml } from 'components/_common/parsedHtml/ParsedHtml';
Expand All @@ -13,6 +13,7 @@ import { PartComponentProps, PartType } from 'types/component-props/parts';
import { ProcessedHtmlProps } from 'types/processed-html-props';

import defaultHtml from 'components/_common/parsedHtml/DefaultHtmlStyling.module.scss';
import { useCheckAndOpenPanel } from 'store/hooks/useCheckAndOpenPanel';
import styles from './ReadMorePart.module.scss';

export type PartConfigReadMore = {
Expand All @@ -32,11 +33,7 @@ export const ReadMorePart = ({ config }: PartComponentProps<PartType.ReadMore>)
callback: () => setIsOpen(true),
});

useEffect(() => {
if (window.location.toString().includes('expandall=true')) {
setIsOpen(true);
}
}, []);
useCheckAndOpenPanel(isOpen, setIsOpen, divRef);

if (!config?.html || !config.title) {
return <EditorHelp text={'Legg inn tittel og beskrivelse for "les mer".'} type={'error'} />;
Expand Down
40 changes: 40 additions & 0 deletions src/store/hooks/useCheckAndOpenAccordionPanel.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import { useEffect } from 'react';
import { smoothScrollToTarget } from 'utils/scroll-to';

export const useCheckAndOpenAccordionPanel = (
openPanels: number[],
setOpenPanels: (indexes: number[]) => void,
refs: React.RefObject<HTMLDivElement>[],
expandAll: () => void
) => {
const checkAndOpenPanels = () => {
const targetId = window.location.hash.replace('#', '');
const elementWithId = document.getElementById(targetId);

if (window.location.toString().includes('expandall=true')) {
expandAll();
return;
}

if (!targetId) return;

for (let i = 0; i < refs.length; i++) {
if (refs[i].current?.contains(elementWithId)) {
setOpenPanels([...openPanels, i]);
setTimeout(() => smoothScrollToTarget(targetId), 500);
return;
}
}
};

useEffect(() => {
window.addEventListener('hashchange', checkAndOpenPanels);
return () => {
window.removeEventListener('hashchange', checkAndOpenPanels);
};
}, []);

Check warning on line 35 in src/store/hooks/useCheckAndOpenAccordionPanel.ts

View workflow job for this annotation

GitHub Actions / build

React Hook useEffect has a missing dependency: 'checkAndOpenPanels'. Either include it or remove the dependency array

useEffect(() => {
checkAndOpenPanels();
}, []);

Check warning on line 39 in src/store/hooks/useCheckAndOpenAccordionPanel.ts

View workflow job for this annotation

GitHub Actions / build

React Hook useEffect has a missing dependency: 'checkAndOpenPanels'. Either include it or remove the dependency array
};
49 changes: 49 additions & 0 deletions src/store/hooks/useCheckAndOpenPanel.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import { useEffect } from 'react';
import { smoothScrollToTarget } from 'utils/scroll-to';

export const useCheckAndOpenPanel = (
isOpen: boolean,
setIsOpen: (isOpen: boolean) => void,
ref: React.RefObject<HTMLDivElement>,
anchorId?: string
) => {
const checkAndOpenPanel = () => {
const targetId = window.location.hash.replace('#', '');
const elementWithId = document.getElementById(targetId);

if (isOpen) {
return;
}

if (window.location.toString().includes('expandall=true')) {
setIsOpen(true);
return;
}

if (!targetId) {
return;
}

if (targetId === anchorId) {
setIsOpen(true);
return;
}

if (ref.current?.contains(elementWithId)) {
setIsOpen(true);
setTimeout(() => smoothScrollToTarget(targetId), 500);
}
};

useEffect(() => {
window.addEventListener('hashchange', checkAndOpenPanel);

return () => {
window.removeEventListener('hashchange', checkAndOpenPanel);
};
}, []);

Check warning on line 44 in src/store/hooks/useCheckAndOpenPanel.ts

View workflow job for this annotation

GitHub Actions / build

React Hook useEffect has a missing dependency: 'checkAndOpenPanel'. Either include it or remove the dependency array

useEffect(() => {
checkAndOpenPanel();
}, [anchorId]);

Check warning on line 48 in src/store/hooks/useCheckAndOpenPanel.ts

View workflow job for this annotation

GitHub Actions / build

React Hook useEffect has a missing dependency: 'checkAndOpenPanel'. Either include it or remove the dependency array
};
Loading