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

Resizing av meldingpanel #2619

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
"react-hook-form": "^7.54.1",
"react-modal": "^3.16.3",
"react-redux": "^7.2.0",
"react-resizable-panels": "^2.1.7",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"styled-components": "^6.1.15",
Expand Down
28 changes: 23 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

79 changes: 55 additions & 24 deletions src/components/melding/LukkbarNyMelding.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
import { ChatIcon, MinusIcon } from '@navikt/aksel-icons';
import { Box, Button, HStack } from '@navikt/ds-react';
import { ChatIcon, ExpandIcon, MinusIcon, ShrinkIcon } from '@navikt/aksel-icons';
import { Box, Button, HStack, VStack } from '@navikt/ds-react';
import { useAtomValue } from 'jotai';
import { useEffect, useState } from 'react';
import { useCallback, useEffect, useRef, useState } from 'react';
import { type ImperativePanelHandle, Panel } from 'react-resizable-panels';
import { dialogUnderArbeidAtom } from 'src/lib/state/dialog';
import { SendMelding } from './SendMelding';

const PANEL_SIZE = 30;
const LARGE_SIZE = 50;

export function LukkbarNyMelding() {
const panelRef = useRef<ImperativePanelHandle>(null);
const [isLarge, setIsLarge] = useState((panelRef.current?.getSize() ?? PANEL_SIZE) > PANEL_SIZE);
const [isOpen, setIsOpen] = useState(localStorage.getItem('ny-melding-is-open') !== 'false');

useEffect(() => {
Expand All @@ -19,31 +25,56 @@ export function LukkbarNyMelding() {
}
}, [oppgave]);

const onExpand = useCallback(() => {
if (!panelRef.current) return;

setIsLarge(panelRef.current.getSize() > PANEL_SIZE);
}, []);

if (!isOpen) {
return (
<Box>
<Button
type="button"
icon={<ChatIcon title="Skriv ny melding" />}
size="small"
onClick={() => setIsOpen(true)}
/>
</Box>
);
}

return (
<HStack flexGrow="1">
{!isOpen && (
<Box>
<Button
type="button"
icon={<ChatIcon title="Skriv ny melding" />}
size="small"
onClick={() => setIsOpen(true)}
/>
</Box>
)}
{isOpen && (
<Panel onResize={onExpand} ref={panelRef} defaultSize={PANEL_SIZE} minSize={20} maxSize={60} order={2}>
<VStack height="100%">
<SendMelding
lukkeKnapp={
<Button
type="button"
icon={<MinusIcon title="Lukk" />}
variant="tertiary"
size="small"
onClick={() => setIsOpen(false)}
/>
<HStack gap="2">
<Button
aria-hidden
type="button"
icon={isLarge ? <ShrinkIcon title="Minimer" /> : <ExpandIcon title="Ekspander" />}
variant="tertiary"
size="small"
onClick={() => {
if (!panelRef.current) return;

const newSize = isLarge ? PANEL_SIZE : LARGE_SIZE;
panelRef.current.resize(newSize);
}}
/>
<Button
aria-hidden
type="button"
icon={<MinusIcon title="Lukk" />}
variant="tertiary"
size="small"
onClick={() => setIsOpen(false)}
/>
</HStack>
}
/>
)}
</HStack>
</VStack>
</Panel>
);
}
2 changes: 1 addition & 1 deletion src/components/melding/SendMelding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const SendMeldingContent = ({ lukkeKnapp }: Props) => {
);

return (
<Card padding="2" maxWidth="30vw" minWidth="24em">
<Card padding="2">
<HStack justify="space-between">
<Heading level="1" size="medium">
{oppgave ? continueText : 'Send ny dialog'}
Expand Down
28 changes: 15 additions & 13 deletions src/routes/new/person.lazy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Box, HStack, VStack } from '@navikt/ds-react';
import { Navigate, Outlet, createLazyFileRoute } from '@tanstack/react-router';
import { useAtomValue } from 'jotai';
import { Suspense } from 'react';
import { Panel, PanelGroup, PanelResizeHandle } from 'react-resizable-panels';
import { PersonLinje } from 'src/components/PersonLinje';
import { PersonSidebarMenu } from 'src/components/PersonSidebar';
import { LukkbarNyMelding } from 'src/components/melding/LukkbarNyMelding';
Expand All @@ -27,19 +28,20 @@ function PersonLayout() {
<VStack>
<PersonSidebarMenu />
</VStack>
<HStack gap="2" flexGrow="1" className="flex-nowrap">
<VStack gap="2" flexGrow="1">
<Box flexGrow="0">
<PersonLinje />
</Box>
<Suspense>
<Outlet />
</Suspense>
</VStack>
<VStack flexGrow="0">
<LukkbarNyMelding />
</VStack>
</HStack>
<PanelGroup direction="horizontal" autoSaveId="person-content">
<Panel order={1} className="mr-2">
<VStack gap="2" height="100%">
<Box flexGrow="0">
<PersonLinje />
</Box>
<Suspense>
<Outlet />
</Suspense>
</VStack>
</Panel>
<PanelResizeHandle className="hover:bg-surface-neutral-subtle-hover w-1 focus:bg-blue-50" />
<LukkbarNyMelding />
</PanelGroup>
</HStack>
);
}
Loading